@ultracart/bq-skill 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +191 -0
- package/README.md +952 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +42 -0
- package/dist/cli.js.map +1 -0
- package/dist/commands/alarm.d.ts +3 -0
- package/dist/commands/alarm.d.ts.map +1 -0
- package/dist/commands/alarm.js +146 -0
- package/dist/commands/alarm.js.map +1 -0
- package/dist/commands/config.d.ts +3 -0
- package/dist/commands/config.d.ts.map +1 -0
- package/dist/commands/config.js +749 -0
- package/dist/commands/config.js.map +1 -0
- package/dist/commands/deck.d.ts +3 -0
- package/dist/commands/deck.d.ts.map +1 -0
- package/dist/commands/deck.js +567 -0
- package/dist/commands/deck.js.map +1 -0
- package/dist/commands/dry-run.d.ts +3 -0
- package/dist/commands/dry-run.d.ts.map +1 -0
- package/dist/commands/dry-run.js +105 -0
- package/dist/commands/dry-run.js.map +1 -0
- package/dist/commands/history.d.ts +3 -0
- package/dist/commands/history.d.ts.map +1 -0
- package/dist/commands/history.js +127 -0
- package/dist/commands/history.js.map +1 -0
- package/dist/commands/init.d.ts +3 -0
- package/dist/commands/init.d.ts.map +1 -0
- package/dist/commands/init.js +302 -0
- package/dist/commands/init.js.map +1 -0
- package/dist/commands/install-skill.d.ts +3 -0
- package/dist/commands/install-skill.d.ts.map +1 -0
- package/dist/commands/install-skill.js +132 -0
- package/dist/commands/install-skill.js.map +1 -0
- package/dist/commands/list.d.ts +3 -0
- package/dist/commands/list.d.ts.map +1 -0
- package/dist/commands/list.js +89 -0
- package/dist/commands/list.js.map +1 -0
- package/dist/commands/query.d.ts +3 -0
- package/dist/commands/query.d.ts.map +1 -0
- package/dist/commands/query.js +152 -0
- package/dist/commands/query.js.map +1 -0
- package/dist/commands/render.d.ts +3 -0
- package/dist/commands/render.d.ts.map +1 -0
- package/dist/commands/render.js +107 -0
- package/dist/commands/render.js.map +1 -0
- package/dist/commands/run-all.d.ts +3 -0
- package/dist/commands/run-all.d.ts.map +1 -0
- package/dist/commands/run-all.js +285 -0
- package/dist/commands/run-all.js.map +1 -0
- package/dist/commands/run.d.ts +3 -0
- package/dist/commands/run.d.ts.map +1 -0
- package/dist/commands/run.js +321 -0
- package/dist/commands/run.js.map +1 -0
- package/dist/commands/schema.d.ts +3 -0
- package/dist/commands/schema.d.ts.map +1 -0
- package/dist/commands/schema.js +271 -0
- package/dist/commands/schema.js.map +1 -0
- package/dist/commands/validate.d.ts +3 -0
- package/dist/commands/validate.d.ts.map +1 -0
- package/dist/commands/validate.js +109 -0
- package/dist/commands/validate.js.map +1 -0
- package/dist/lib/alarm-notify.d.ts +16 -0
- package/dist/lib/alarm-notify.d.ts.map +1 -0
- package/dist/lib/alarm-notify.js +312 -0
- package/dist/lib/alarm-notify.js.map +1 -0
- package/dist/lib/alarm-state.d.ts +26 -0
- package/dist/lib/alarm-state.d.ts.map +1 -0
- package/dist/lib/alarm-state.js +118 -0
- package/dist/lib/alarm-state.js.map +1 -0
- package/dist/lib/alarm.d.ts +28 -0
- package/dist/lib/alarm.d.ts.map +1 -0
- package/dist/lib/alarm.js +215 -0
- package/dist/lib/alarm.js.map +1 -0
- package/dist/lib/analysis.d.ts +16 -0
- package/dist/lib/analysis.d.ts.map +1 -0
- package/dist/lib/analysis.js +134 -0
- package/dist/lib/analysis.js.map +1 -0
- package/dist/lib/bigquery.d.ts +55 -0
- package/dist/lib/bigquery.d.ts.map +1 -0
- package/dist/lib/bigquery.js +321 -0
- package/dist/lib/bigquery.js.map +1 -0
- package/dist/lib/config-writer.d.ts +3 -0
- package/dist/lib/config-writer.d.ts.map +1 -0
- package/dist/lib/config-writer.js +60 -0
- package/dist/lib/config-writer.js.map +1 -0
- package/dist/lib/config.d.ts +63 -0
- package/dist/lib/config.d.ts.map +1 -0
- package/dist/lib/config.js +151 -0
- package/dist/lib/config.js.map +1 -0
- package/dist/lib/dashboard.d.ts +3 -0
- package/dist/lib/dashboard.d.ts.map +1 -0
- package/dist/lib/dashboard.js +468 -0
- package/dist/lib/dashboard.js.map +1 -0
- package/dist/lib/deck.d.ts +58 -0
- package/dist/lib/deck.d.ts.map +1 -0
- package/dist/lib/deck.js +232 -0
- package/dist/lib/deck.js.map +1 -0
- package/dist/lib/deliver-email.d.ts +14 -0
- package/dist/lib/deliver-email.d.ts.map +1 -0
- package/dist/lib/deliver-email.js +360 -0
- package/dist/lib/deliver-email.js.map +1 -0
- package/dist/lib/deliver-slack.d.ts +6 -0
- package/dist/lib/deliver-slack.d.ts.map +1 -0
- package/dist/lib/deliver-slack.js +73 -0
- package/dist/lib/deliver-slack.js.map +1 -0
- package/dist/lib/deliver.d.ts +10 -0
- package/dist/lib/deliver.d.ts.map +1 -0
- package/dist/lib/deliver.js +95 -0
- package/dist/lib/deliver.js.map +1 -0
- package/dist/lib/llm/anthropic.d.ts +7 -0
- package/dist/lib/llm/anthropic.d.ts.map +1 -0
- package/dist/lib/llm/anthropic.js +69 -0
- package/dist/lib/llm/anthropic.js.map +1 -0
- package/dist/lib/llm/bedrock.d.ts +7 -0
- package/dist/lib/llm/bedrock.d.ts.map +1 -0
- package/dist/lib/llm/bedrock.js +67 -0
- package/dist/lib/llm/bedrock.js.map +1 -0
- package/dist/lib/llm/gemini.d.ts +7 -0
- package/dist/lib/llm/gemini.d.ts.map +1 -0
- package/dist/lib/llm/gemini.js +67 -0
- package/dist/lib/llm/gemini.js.map +1 -0
- package/dist/lib/llm/index.d.ts +5 -0
- package/dist/lib/llm/index.d.ts.map +1 -0
- package/dist/lib/llm/index.js +61 -0
- package/dist/lib/llm/index.js.map +1 -0
- package/dist/lib/llm/models.d.ts +5 -0
- package/dist/lib/llm/models.d.ts.map +1 -0
- package/dist/lib/llm/models.js +33 -0
- package/dist/lib/llm/models.js.map +1 -0
- package/dist/lib/llm/openai.d.ts +8 -0
- package/dist/lib/llm/openai.d.ts.map +1 -0
- package/dist/lib/llm/openai.js +48 -0
- package/dist/lib/llm/openai.js.map +1 -0
- package/dist/lib/llm/provider.d.ts +28 -0
- package/dist/lib/llm/provider.d.ts.map +1 -0
- package/dist/lib/llm/provider.js +3 -0
- package/dist/lib/llm/provider.js.map +1 -0
- package/dist/lib/manifest.d.ts +95 -0
- package/dist/lib/manifest.d.ts.map +1 -0
- package/dist/lib/manifest.js +105 -0
- package/dist/lib/manifest.js.map +1 -0
- package/dist/lib/params.d.ts +27 -0
- package/dist/lib/params.d.ts.map +1 -0
- package/dist/lib/params.js +192 -0
- package/dist/lib/params.js.map +1 -0
- package/dist/lib/pdf.d.ts +8 -0
- package/dist/lib/pdf.d.ts.map +1 -0
- package/dist/lib/pdf.js +86 -0
- package/dist/lib/pdf.js.map +1 -0
- package/dist/lib/renderer.d.ts +17 -0
- package/dist/lib/renderer.d.ts.map +1 -0
- package/dist/lib/renderer.js +166 -0
- package/dist/lib/renderer.js.map +1 -0
- package/dist/lib/schema-filter.d.ts +3 -0
- package/dist/lib/schema-filter.d.ts.map +1 -0
- package/dist/lib/schema-filter.js +49 -0
- package/dist/lib/schema-filter.js.map +1 -0
- package/dist/lib/template.d.ts +4 -0
- package/dist/lib/template.d.ts.map +1 -0
- package/dist/lib/template.js +37 -0
- package/dist/lib/template.js.map +1 -0
- package/dist/lib/validator.d.ts +8 -0
- package/dist/lib/validator.d.ts.map +1 -0
- package/dist/lib/validator.js +88 -0
- package/dist/lib/validator.js.map +1 -0
- package/package.json +59 -0
- package/schemas/deck.schema.json +122 -0
- package/schemas/report-manifest.schema.json +309 -0
- package/schemas/tables/README.md +45 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_clicks.json +186 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_commission_groups.json +317 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_ledgers.json +404 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_network_pixel_postback_logs.json +166 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_network_pixels.json +106 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_payments.json +204 -0
- package/schemas/tables/ultracart_dw/uc_affiliate_postback_logs.json +90 -0
- package/schemas/tables/ultracart_dw/uc_affiliates.json +425 -0
- package/schemas/tables/ultracart_dw/uc_auto_orders.json +13848 -0
- package/schemas/tables/ultracart_dw/uc_cart_abandons.json +3971 -0
- package/schemas/tables/ultracart_dw/uc_conversation_pbx_calls.json +374 -0
- package/schemas/tables/ultracart_dw/uc_conversations.json +374 -0
- package/schemas/tables/ultracart_dw/uc_coupons.json +1893 -0
- package/schemas/tables/ultracart_dw/uc_customers.json +11886 -0
- package/schemas/tables/ultracart_dw/uc_fraud_rules.json +239 -0
- package/schemas/tables/ultracart_dw/uc_gift_certificates.json +135 -0
- package/schemas/tables/ultracart_dw/uc_item_inventory_history.json +79 -0
- package/schemas/tables/ultracart_dw/uc_items.json +4437 -0
- package/schemas/tables/ultracart_dw/uc_orders.json +6629 -0
- package/schemas/tables/ultracart_dw/uc_rotating_transaction_gateway_history.json +271 -0
- package/schemas/tables/ultracart_dw/uc_rotating_transaction_gateways.json +416 -0
- package/schemas/tables/ultracart_dw/uc_shipping_methods.json +1372 -0
- package/schemas/tables/ultracart_dw/uc_storefront_customers.json +261 -0
- package/schemas/tables/ultracart_dw/uc_storefront_experiments.json +386 -0
- package/schemas/tables/ultracart_dw/uc_storefront_pages.json +513 -0
- package/schemas/tables/ultracart_dw/uc_storefront_upsell_offer_events.json +338 -0
- package/schemas/tables/ultracart_dw/uc_storefront_upsell_offers.json +431 -0
- package/schemas/tables/ultracart_dw/uc_storefront_upsell_paths.json +163 -0
- package/schemas/tables/ultracart_dw/uc_storefronts.json +62 -0
- package/schemas/tables/ultracart_dw/uc_surveys.json +238 -0
- package/schemas/tables/ultracart_dw/uc_workflow_tasks.json +377 -0
- package/schemas/tables/ultracart_dw/uc_zoho_desk_tickets.json +1184 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_clicks.json +186 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_commission_groups.json +317 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_ledgers.json +404 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_network_pixel_postback_logs.json +166 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_network_pixels.json +106 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_payments.json +204 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliate_postback_logs.json +90 -0
- package/schemas/tables/ultracart_dw_high/uc_affiliates.json +425 -0
- package/schemas/tables/ultracart_dw_high/uc_auto_orders.json +14332 -0
- package/schemas/tables/ultracart_dw_high/uc_cart_abandons.json +4245 -0
- package/schemas/tables/ultracart_dw_high/uc_conversation_pbx_calls.json +415 -0
- package/schemas/tables/ultracart_dw_high/uc_conversations.json +415 -0
- package/schemas/tables/ultracart_dw_high/uc_coupons.json +1893 -0
- package/schemas/tables/ultracart_dw_high/uc_customers.json +12250 -0
- package/schemas/tables/ultracart_dw_high/uc_fraud_rules.json +239 -0
- package/schemas/tables/ultracart_dw_high/uc_gift_certificates.json +135 -0
- package/schemas/tables/ultracart_dw_high/uc_item_inventory_history.json +79 -0
- package/schemas/tables/ultracart_dw_high/uc_items.json +4437 -0
- package/schemas/tables/ultracart_dw_high/uc_orders.json +6871 -0
- package/schemas/tables/ultracart_dw_high/uc_rotating_transaction_gateway_history.json +271 -0
- package/schemas/tables/ultracart_dw_high/uc_rotating_transaction_gateways.json +416 -0
- package/schemas/tables/ultracart_dw_high/uc_shipping_methods.json +1372 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_customers.json +261 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_experiments.json +386 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_pages.json +513 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_upsell_offer_events.json +338 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_upsell_offers.json +431 -0
- package/schemas/tables/ultracart_dw_high/uc_storefront_upsell_paths.json +163 -0
- package/schemas/tables/ultracart_dw_high/uc_storefronts.json +62 -0
- package/schemas/tables/ultracart_dw_high/uc_surveys.json +269 -0
- package/schemas/tables/ultracart_dw_high/uc_workflow_tasks.json +377 -0
- package/schemas/tables/ultracart_dw_high/uc_zoho_desk_tickets.json +1330 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_clicks.json +186 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_commission_groups.json +317 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_ledgers.json +404 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_network_pixel_postback_logs.json +166 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_network_pixels.json +106 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_payments.json +204 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliate_postback_logs.json +90 -0
- package/schemas/tables/ultracart_dw_low/uc_affiliates.json +425 -0
- package/schemas/tables/ultracart_dw_low/uc_auto_orders.json +13868 -0
- package/schemas/tables/ultracart_dw_low/uc_cart_abandons.json +3971 -0
- package/schemas/tables/ultracart_dw_low/uc_conversation_pbx_calls.json +374 -0
- package/schemas/tables/ultracart_dw_low/uc_conversations.json +374 -0
- package/schemas/tables/ultracart_dw_low/uc_coupons.json +1893 -0
- package/schemas/tables/ultracart_dw_low/uc_customers.json +11900 -0
- package/schemas/tables/ultracart_dw_low/uc_fraud_rules.json +239 -0
- package/schemas/tables/ultracart_dw_low/uc_gift_certificates.json +135 -0
- package/schemas/tables/ultracart_dw_low/uc_item_inventory_history.json +79 -0
- package/schemas/tables/ultracart_dw_low/uc_items.json +4437 -0
- package/schemas/tables/ultracart_dw_low/uc_orders.json +6639 -0
- package/schemas/tables/ultracart_dw_low/uc_rotating_transaction_gateway_history.json +271 -0
- package/schemas/tables/ultracart_dw_low/uc_rotating_transaction_gateways.json +416 -0
- package/schemas/tables/ultracart_dw_low/uc_shipping_methods.json +1372 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_customers.json +261 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_experiments.json +386 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_pages.json +513 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_upsell_offer_events.json +338 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_upsell_offers.json +431 -0
- package/schemas/tables/ultracart_dw_low/uc_storefront_upsell_paths.json +163 -0
- package/schemas/tables/ultracart_dw_low/uc_storefronts.json +62 -0
- package/schemas/tables/ultracart_dw_low/uc_surveys.json +238 -0
- package/schemas/tables/ultracart_dw_low/uc_workflow_tasks.json +377 -0
- package/schemas/tables/ultracart_dw_low/uc_zoho_desk_tickets.json +1184 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_clicks.json +186 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_commission_groups.json +317 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_ledgers.json +404 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_network_pixel_postback_logs.json +166 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_network_pixels.json +106 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_payments.json +204 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliate_postback_logs.json +90 -0
- package/schemas/tables/ultracart_dw_medium/uc_affiliates.json +425 -0
- package/schemas/tables/ultracart_dw_medium/uc_auto_orders.json +14320 -0
- package/schemas/tables/ultracart_dw_medium/uc_cart_abandons.json +4245 -0
- package/schemas/tables/ultracart_dw_medium/uc_conversation_pbx_calls.json +415 -0
- package/schemas/tables/ultracart_dw_medium/uc_conversations.json +415 -0
- package/schemas/tables/ultracart_dw_medium/uc_coupons.json +1893 -0
- package/schemas/tables/ultracart_dw_medium/uc_customers.json +12250 -0
- package/schemas/tables/ultracart_dw_medium/uc_fraud_rules.json +239 -0
- package/schemas/tables/ultracart_dw_medium/uc_gift_certificates.json +135 -0
- package/schemas/tables/ultracart_dw_medium/uc_item_inventory_history.json +79 -0
- package/schemas/tables/ultracart_dw_medium/uc_items.json +4437 -0
- package/schemas/tables/ultracart_dw_medium/uc_orders.json +6865 -0
- package/schemas/tables/ultracart_dw_medium/uc_rotating_transaction_gateway_history.json +271 -0
- package/schemas/tables/ultracart_dw_medium/uc_rotating_transaction_gateways.json +416 -0
- package/schemas/tables/ultracart_dw_medium/uc_shipping_methods.json +1372 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_customers.json +261 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_experiments.json +386 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_pages.json +513 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_upsell_offer_events.json +338 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_upsell_offers.json +431 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefront_upsell_paths.json +163 -0
- package/schemas/tables/ultracart_dw_medium/uc_storefronts.json +62 -0
- package/schemas/tables/ultracart_dw_medium/uc_surveys.json +269 -0
- package/schemas/tables/ultracart_dw_medium/uc_workflow_tasks.json +377 -0
- package/schemas/tables/ultracart_dw_medium/uc_zoho_desk_tickets.json +1330 -0
- package/schemas/tables/ultracart_dw_streaming/uc_analytics_session_streaming.json +2444 -0
- package/schemas/tables/ultracart_dw_streaming/uc_screen_recording_streaming.json +509 -0
- package/schemas/ultracart-bq-config.schema.json +140 -0
- package/skill/skill.md +1228 -0
- package/templates/render.html +73 -0
|
@@ -0,0 +1,1372 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"mode": "NULLABLE",
|
|
4
|
+
"name": "partition_oid",
|
|
5
|
+
"type": "INTEGER"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"mode": "NULLABLE",
|
|
9
|
+
"name": "shipping_method_oid",
|
|
10
|
+
"description": "Shipping method id",
|
|
11
|
+
"type": "INTEGER"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"mode": "NULLABLE",
|
|
15
|
+
"name": "merchant_id",
|
|
16
|
+
"description": "Merchant ID that owns this shipping method",
|
|
17
|
+
"type": "STRING"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"mode": "NULLABLE",
|
|
21
|
+
"name": "shipping_method",
|
|
22
|
+
"description": "Shipping method name",
|
|
23
|
+
"type": "STRING"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"mode": "NULLABLE",
|
|
27
|
+
"name": "flat_fee_markup",
|
|
28
|
+
"description": "Flat fee markup",
|
|
29
|
+
"type": "NUMERIC"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"mode": "NULLABLE",
|
|
33
|
+
"name": "percentage_markup",
|
|
34
|
+
"description": "The percentage markup",
|
|
35
|
+
"type": "NUMERIC"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"mode": "NULLABLE",
|
|
39
|
+
"name": "first_item_markup",
|
|
40
|
+
"description": "The markup on the first item",
|
|
41
|
+
"type": "NUMERIC"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"mode": "NULLABLE",
|
|
45
|
+
"name": "each_additional_item_markup",
|
|
46
|
+
"description": "Each additional item markup",
|
|
47
|
+
"type": "NUMERIC"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"mode": "NULLABLE",
|
|
51
|
+
"name": "residential_markup",
|
|
52
|
+
"description": "The residential markup",
|
|
53
|
+
"type": "NUMERIC"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"mode": "NULLABLE",
|
|
57
|
+
"name": "residential_percentage_discount",
|
|
58
|
+
"description": "Percentage discount when the delivery address is residential",
|
|
59
|
+
"type": "NUMERIC"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"mode": "NULLABLE",
|
|
63
|
+
"name": "commercial_percentage_discount",
|
|
64
|
+
"description": "Commercial discount when the delivery address is commercial",
|
|
65
|
+
"type": "NUMERIC"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"mode": "NULLABLE",
|
|
69
|
+
"name": "comment",
|
|
70
|
+
"description": "Comment",
|
|
71
|
+
"type": "STRING"
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"allowed_values": [
|
|
75
|
+
"OZ",
|
|
76
|
+
"LB",
|
|
77
|
+
"KG",
|
|
78
|
+
"G"
|
|
79
|
+
],
|
|
80
|
+
"mode": "NULLABLE",
|
|
81
|
+
"name": "uom_weight",
|
|
82
|
+
"description": "Unit of measure for weight",
|
|
83
|
+
"type": "STRING"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "max_weight",
|
|
87
|
+
"description": "Maximum weight of the package that can be shipped by this method",
|
|
88
|
+
"type": "RECORD",
|
|
89
|
+
"fields": [
|
|
90
|
+
{
|
|
91
|
+
"mode": "NULLABLE",
|
|
92
|
+
"name": "value",
|
|
93
|
+
"description": "Weight",
|
|
94
|
+
"type": "NUMERIC"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"allowed_values": [
|
|
98
|
+
"KG",
|
|
99
|
+
"G",
|
|
100
|
+
"LB",
|
|
101
|
+
"OZ"
|
|
102
|
+
],
|
|
103
|
+
"mode": "NULLABLE",
|
|
104
|
+
"name": "uom",
|
|
105
|
+
"description": "Unit of measure",
|
|
106
|
+
"type": "STRING"
|
|
107
|
+
}
|
|
108
|
+
]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"allowed_values": [
|
|
112
|
+
"POBOX",
|
|
113
|
+
"APOFPO",
|
|
114
|
+
"AKHI",
|
|
115
|
+
"PR",
|
|
116
|
+
"US48",
|
|
117
|
+
"DOMONLY",
|
|
118
|
+
"INTONLY",
|
|
119
|
+
"CA",
|
|
120
|
+
"ID",
|
|
121
|
+
"TH",
|
|
122
|
+
"RESI",
|
|
123
|
+
"BUSI",
|
|
124
|
+
"EUR",
|
|
125
|
+
"OCEANIA",
|
|
126
|
+
"GB",
|
|
127
|
+
"USTERR"
|
|
128
|
+
],
|
|
129
|
+
"mode": "REPEATED",
|
|
130
|
+
"name": "invalid_for_restrictions",
|
|
131
|
+
"description": "Invalid for restrictions",
|
|
132
|
+
"type": "RECORD",
|
|
133
|
+
"fields": [{
|
|
134
|
+
"mode": "NULLABLE",
|
|
135
|
+
"name": "value",
|
|
136
|
+
"type": "STRING"
|
|
137
|
+
}]
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"allowed_values": [
|
|
141
|
+
"POBOX",
|
|
142
|
+
"APOFPO",
|
|
143
|
+
"AKHI",
|
|
144
|
+
"PR",
|
|
145
|
+
"US48",
|
|
146
|
+
"DOMONLY",
|
|
147
|
+
"INTONLY",
|
|
148
|
+
"CA",
|
|
149
|
+
"ID",
|
|
150
|
+
"TH",
|
|
151
|
+
"RESI",
|
|
152
|
+
"BUSI",
|
|
153
|
+
"EUR",
|
|
154
|
+
"OCEANIA",
|
|
155
|
+
"GB",
|
|
156
|
+
"USTERR"
|
|
157
|
+
],
|
|
158
|
+
"mode": "REPEATED",
|
|
159
|
+
"name": "valid_only_for_restrictions",
|
|
160
|
+
"description": "Valid only for restrictions",
|
|
161
|
+
"type": "RECORD",
|
|
162
|
+
"fields": [{
|
|
163
|
+
"mode": "NULLABLE",
|
|
164
|
+
"name": "value",
|
|
165
|
+
"type": "STRING"
|
|
166
|
+
}]
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"mode": "NULLABLE",
|
|
170
|
+
"name": "require_delivery_date",
|
|
171
|
+
"description": "True if delivery date is required to be selected during the checkout",
|
|
172
|
+
"type": "BOOLEAN"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"mode": "NULLABLE",
|
|
176
|
+
"name": "delivery_on_monday",
|
|
177
|
+
"description": "True if delivery can occur on Monday",
|
|
178
|
+
"type": "BOOLEAN"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"mode": "NULLABLE",
|
|
182
|
+
"name": "delivery_on_tuesday",
|
|
183
|
+
"description": "True if delivery can occur on Tuesday",
|
|
184
|
+
"type": "BOOLEAN"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"mode": "NULLABLE",
|
|
188
|
+
"name": "delivery_on_wednesday",
|
|
189
|
+
"description": "True if delivery can occur on Wednesday",
|
|
190
|
+
"type": "BOOLEAN"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"mode": "NULLABLE",
|
|
194
|
+
"name": "delivery_on_thursday",
|
|
195
|
+
"description": "True if delivery can occur on Thursday",
|
|
196
|
+
"type": "BOOLEAN"
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
"mode": "NULLABLE",
|
|
200
|
+
"name": "delivery_on_friday",
|
|
201
|
+
"description": "True if delivery can occur on Friday",
|
|
202
|
+
"type": "BOOLEAN"
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"mode": "NULLABLE",
|
|
206
|
+
"name": "delivery_on_saturday",
|
|
207
|
+
"description": "True if delivery can occur on Saturday",
|
|
208
|
+
"type": "BOOLEAN"
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
"mode": "NULLABLE",
|
|
212
|
+
"name": "delivery_on_sunday",
|
|
213
|
+
"description": "True if delivery can occur on Sunday",
|
|
214
|
+
"type": "BOOLEAN"
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"mode": "NULLABLE",
|
|
218
|
+
"name": "order_days_before",
|
|
219
|
+
"description": "The minimum number of days the customer must order before the ship date (0 = no requirement)",
|
|
220
|
+
"type": "INTEGER"
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"mode": "NULLABLE",
|
|
224
|
+
"name": "order_day_cutoff_time",
|
|
225
|
+
"description": "Order day cut off time. This is a date/time object, but UltraCart only causes about the time component.",
|
|
226
|
+
"type": "DATETIME"
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"mode": "REPEATED",
|
|
230
|
+
"name": "percent_ranges",
|
|
231
|
+
"type": "RECORD",
|
|
232
|
+
"fields": [
|
|
233
|
+
{
|
|
234
|
+
"mode": "NULLABLE",
|
|
235
|
+
"name": "minimum_cost",
|
|
236
|
+
"description": "Minimum cost",
|
|
237
|
+
"type": "NUMERIC"
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"mode": "NULLABLE",
|
|
241
|
+
"name": "percentage",
|
|
242
|
+
"description": "percentage",
|
|
243
|
+
"type": "NUMERIC"
|
|
244
|
+
}
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"mode": "REPEATED",
|
|
249
|
+
"name": "cost_ranges",
|
|
250
|
+
"description": "An optional range of shipping costs based on the shopping cart subtotal",
|
|
251
|
+
"type": "RECORD",
|
|
252
|
+
"fields": [
|
|
253
|
+
{
|
|
254
|
+
"mode": "NULLABLE",
|
|
255
|
+
"name": "minimum_cost",
|
|
256
|
+
"description": "The minimum cost for this shipping method range to be valid",
|
|
257
|
+
"type": "NUMERIC"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"mode": "NULLABLE",
|
|
261
|
+
"name": "shipping_cost",
|
|
262
|
+
"description": "The shipping cost for this shopping cart subtotal range",
|
|
263
|
+
"type": "NUMERIC"
|
|
264
|
+
}
|
|
265
|
+
]
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"mode": "REPEATED",
|
|
269
|
+
"name": "weight_ranges",
|
|
270
|
+
"description": "An optional range of shipping costs based on the shopping cart weight",
|
|
271
|
+
"type": "RECORD",
|
|
272
|
+
"fields": [
|
|
273
|
+
{
|
|
274
|
+
"mode": "NULLABLE",
|
|
275
|
+
"name": "uom_weight",
|
|
276
|
+
"description": "Uom for weight",
|
|
277
|
+
"type": "STRING"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"name": "minimum_weight",
|
|
281
|
+
"description": "Minimum weight for this shipping method to be considered valid",
|
|
282
|
+
"type": "RECORD",
|
|
283
|
+
"fields": [
|
|
284
|
+
{
|
|
285
|
+
"mode": "NULLABLE",
|
|
286
|
+
"name": "value",
|
|
287
|
+
"description": "Weight",
|
|
288
|
+
"type": "NUMERIC"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"allowed_values": [
|
|
292
|
+
"KG",
|
|
293
|
+
"G",
|
|
294
|
+
"LB",
|
|
295
|
+
"OZ"
|
|
296
|
+
],
|
|
297
|
+
"mode": "NULLABLE",
|
|
298
|
+
"name": "uom",
|
|
299
|
+
"description": "Unit of measure",
|
|
300
|
+
"type": "STRING"
|
|
301
|
+
}
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"mode": "NULLABLE",
|
|
306
|
+
"name": "shipping_cost",
|
|
307
|
+
"description": "Shipping cost for this weight range",
|
|
308
|
+
"type": "NUMERIC"
|
|
309
|
+
}
|
|
310
|
+
]
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"mode": "REPEATED",
|
|
314
|
+
"name": "blackouts",
|
|
315
|
+
"description": "An array of blackout dates when this shipping method cannot be used",
|
|
316
|
+
"type": "RECORD",
|
|
317
|
+
"fields": [{
|
|
318
|
+
"mode": "NULLABLE",
|
|
319
|
+
"name": "blacked_out_date",
|
|
320
|
+
"description": "Blacked out date",
|
|
321
|
+
"type": "DATETIME"
|
|
322
|
+
}]
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"mode": "REPEATED",
|
|
326
|
+
"name": "item_costs",
|
|
327
|
+
"description": "Item specific markups or discounts related to this shipping method",
|
|
328
|
+
"type": "RECORD",
|
|
329
|
+
"fields": [
|
|
330
|
+
{
|
|
331
|
+
"mode": "NULLABLE",
|
|
332
|
+
"name": "merchant_item_oid",
|
|
333
|
+
"description": "Merchant item oid",
|
|
334
|
+
"type": "INTEGER"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"mode": "NULLABLE",
|
|
338
|
+
"name": "cost",
|
|
339
|
+
"description": "cost",
|
|
340
|
+
"type": "NUMERIC"
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"mode": "NULLABLE",
|
|
344
|
+
"name": "shipping_method_validity",
|
|
345
|
+
"description": "Shipping method validity",
|
|
346
|
+
"type": "STRING"
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
"mode": "NULLABLE",
|
|
350
|
+
"name": "free_shipping",
|
|
351
|
+
"description": "True if this method is free shipping",
|
|
352
|
+
"type": "BOOLEAN"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"mode": "NULLABLE",
|
|
356
|
+
"name": "flat_fee_markup",
|
|
357
|
+
"description": "Flat fee markup",
|
|
358
|
+
"type": "NUMERIC"
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"mode": "NULLABLE",
|
|
362
|
+
"name": "per_item_fee_markup",
|
|
363
|
+
"description": "Per item fee markup",
|
|
364
|
+
"type": "NUMERIC"
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"mode": "NULLABLE",
|
|
368
|
+
"name": "percentage_markup",
|
|
369
|
+
"description": "Percentage markup",
|
|
370
|
+
"type": "NUMERIC"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"mode": "NULLABLE",
|
|
374
|
+
"name": "first_item_markup",
|
|
375
|
+
"description": "First item markup",
|
|
376
|
+
"type": "NUMERIC"
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"mode": "NULLABLE",
|
|
380
|
+
"name": "each_additional_item_markup",
|
|
381
|
+
"description": "Each additional item markup",
|
|
382
|
+
"type": "NUMERIC"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"mode": "NULLABLE",
|
|
386
|
+
"name": "relax_restrictions_on_upsell",
|
|
387
|
+
"description": "Relax restrictions on upsell",
|
|
388
|
+
"type": "BOOLEAN"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"mode": "NULLABLE",
|
|
392
|
+
"name": "filter_to_if_available",
|
|
393
|
+
"description": "Filter to if available",
|
|
394
|
+
"type": "BOOLEAN"
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
"mode": "NULLABLE",
|
|
398
|
+
"name": "percentage_of_item_markup",
|
|
399
|
+
"description": "Optional value that sets the cost of ship to a percentage of the item cost",
|
|
400
|
+
"type": "NUMERIC"
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
"mode": "NULLABLE",
|
|
404
|
+
"name": "fixed_shipping_cost",
|
|
405
|
+
"description": "Fixed shipping cost",
|
|
406
|
+
"type": "NUMERIC"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"mode": "NULLABLE",
|
|
410
|
+
"name": "signature_required",
|
|
411
|
+
"description": "True if this shipping method requires a signature",
|
|
412
|
+
"type": "BOOLEAN"
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
"mode": "NULLABLE",
|
|
416
|
+
"name": "merchant_item_id",
|
|
417
|
+
"description": "Merchant item id",
|
|
418
|
+
"type": "STRING"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"mode": "NULLABLE",
|
|
422
|
+
"name": "item_currency_code",
|
|
423
|
+
"description": "Item currency code",
|
|
424
|
+
"type": "STRING"
|
|
425
|
+
}
|
|
426
|
+
]
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"mode": "NULLABLE",
|
|
430
|
+
"name": "account_code",
|
|
431
|
+
"description": "The accounting_code that will be sent to external programs such as Quickbooks",
|
|
432
|
+
"type": "STRING"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"allowed_values": [
|
|
436
|
+
"none",
|
|
437
|
+
"math",
|
|
438
|
+
"realtime"
|
|
439
|
+
],
|
|
440
|
+
"mode": "NULLABLE",
|
|
441
|
+
"name": "insurance_calculation_type",
|
|
442
|
+
"description": "The type of insurance calculation",
|
|
443
|
+
"type": "STRING"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"mode": "NULLABLE",
|
|
447
|
+
"name": "insurance_unit_cost",
|
|
448
|
+
"description": "If the insurance type of math, this is the insurance cost per unit",
|
|
449
|
+
"type": "NUMERIC"
|
|
450
|
+
},
|
|
451
|
+
{
|
|
452
|
+
"mode": "NULLABLE",
|
|
453
|
+
"name": "insurance_unit",
|
|
454
|
+
"description": "If the insurance type of math, this is the unit",
|
|
455
|
+
"type": "NUMERIC"
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"mode": "NULLABLE",
|
|
459
|
+
"name": "insurance_threshold",
|
|
460
|
+
"description": "If the insurance type of math, this is when the insurance starts",
|
|
461
|
+
"type": "NUMERIC"
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"mode": "NULLABLE",
|
|
465
|
+
"name": "allowed_for_free_shipping",
|
|
466
|
+
"description": "Allow method as free shipping",
|
|
467
|
+
"type": "BOOLEAN"
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"allowed_values": [
|
|
471
|
+
"<",
|
|
472
|
+
"<=",
|
|
473
|
+
"=",
|
|
474
|
+
">",
|
|
475
|
+
">="
|
|
476
|
+
],
|
|
477
|
+
"mode": "NULLABLE",
|
|
478
|
+
"name": "allowed_for_free_shipping_comparison",
|
|
479
|
+
"description": "Comparison when allowed for shipping configuration",
|
|
480
|
+
"type": "STRING"
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"allowed_values": [
|
|
484
|
+
"OZ",
|
|
485
|
+
"LB",
|
|
486
|
+
"KG",
|
|
487
|
+
"G"
|
|
488
|
+
],
|
|
489
|
+
"mode": "NULLABLE",
|
|
490
|
+
"name": "allowed_for_free_shipping_uom_weight",
|
|
491
|
+
"description": "Unit of measure for the allowed for free shipping weight",
|
|
492
|
+
"type": "STRING"
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"name": "allowed_for_free_shipping_weight",
|
|
496
|
+
"description": "Weight for the allowed for free shipping comparison",
|
|
497
|
+
"type": "RECORD",
|
|
498
|
+
"fields": [
|
|
499
|
+
{
|
|
500
|
+
"mode": "NULLABLE",
|
|
501
|
+
"name": "value",
|
|
502
|
+
"description": "Weight",
|
|
503
|
+
"type": "NUMERIC"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"allowed_values": [
|
|
507
|
+
"KG",
|
|
508
|
+
"G",
|
|
509
|
+
"LB",
|
|
510
|
+
"OZ"
|
|
511
|
+
],
|
|
512
|
+
"mode": "NULLABLE",
|
|
513
|
+
"name": "uom",
|
|
514
|
+
"description": "Unit of measure",
|
|
515
|
+
"type": "STRING"
|
|
516
|
+
}
|
|
517
|
+
]
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"allowed_values": [
|
|
521
|
+
"none",
|
|
522
|
+
"realtime",
|
|
523
|
+
"weight",
|
|
524
|
+
"cost",
|
|
525
|
+
"percent",
|
|
526
|
+
"item"
|
|
527
|
+
],
|
|
528
|
+
"mode": "NULLABLE",
|
|
529
|
+
"name": "calculation_type",
|
|
530
|
+
"description": "The type of shipping calculation",
|
|
531
|
+
"type": "STRING"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"mode": "NULLABLE",
|
|
535
|
+
"name": "discount_if_order_subtotal",
|
|
536
|
+
"description": "Discount if the order subtotal is at least this",
|
|
537
|
+
"type": "NUMERIC"
|
|
538
|
+
},
|
|
539
|
+
{
|
|
540
|
+
"mode": "NULLABLE",
|
|
541
|
+
"name": "discount_if_item_count",
|
|
542
|
+
"description": "Discount if the item count is at least this",
|
|
543
|
+
"type": "INTEGER"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"mode": "NULLABLE",
|
|
547
|
+
"name": "export_as_shipping_method",
|
|
548
|
+
"description": "Export the order as a different shipping method",
|
|
549
|
+
"type": "STRING"
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"allowed_values": [
|
|
553
|
+
"UPS",
|
|
554
|
+
"FedEx",
|
|
555
|
+
"USPS",
|
|
556
|
+
"DHL",
|
|
557
|
+
"CA Post",
|
|
558
|
+
"AU Post",
|
|
559
|
+
"PeriShip",
|
|
560
|
+
"OnTrac",
|
|
561
|
+
"EasyPost",
|
|
562
|
+
"ShipStation"
|
|
563
|
+
],
|
|
564
|
+
"mode": "NULLABLE",
|
|
565
|
+
"name": "tracking_number_type",
|
|
566
|
+
"description": "The type of tracking number",
|
|
567
|
+
"type": "STRING"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"mode": "NULLABLE",
|
|
571
|
+
"name": "display_name",
|
|
572
|
+
"description": "The name to display to the customer during checkout",
|
|
573
|
+
"type": "STRING"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"mode": "NULLABLE",
|
|
577
|
+
"name": "hazmat_fee_per_package",
|
|
578
|
+
"description": "The hazmat fee per package",
|
|
579
|
+
"type": "NUMERIC"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"mode": "NULLABLE",
|
|
583
|
+
"name": "hazmat_fee_per_entire_shipment",
|
|
584
|
+
"description": "The hazmat fee per the entire shipment",
|
|
585
|
+
"type": "NUMERIC"
|
|
586
|
+
},
|
|
587
|
+
{
|
|
588
|
+
"mode": "NULLABLE",
|
|
589
|
+
"name": "maximum_package_count",
|
|
590
|
+
"description": "Maximum package count",
|
|
591
|
+
"type": "INTEGER"
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
"allowed_values": [
|
|
595
|
+
"none",
|
|
596
|
+
"real-time",
|
|
597
|
+
"x business days",
|
|
598
|
+
"x to y business days",
|
|
599
|
+
"x weeks",
|
|
600
|
+
"x to y weeks"
|
|
601
|
+
],
|
|
602
|
+
"mode": "NULLABLE",
|
|
603
|
+
"name": "estimated_delivery_type",
|
|
604
|
+
"description": "The estimated delivery type",
|
|
605
|
+
"type": "STRING"
|
|
606
|
+
},
|
|
607
|
+
{
|
|
608
|
+
"mode": "NULLABLE",
|
|
609
|
+
"name": "estimated_delivery_num1",
|
|
610
|
+
"description": "Estimated delivery minimum range",
|
|
611
|
+
"type": "INTEGER"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"mode": "NULLABLE",
|
|
615
|
+
"name": "estimated_delivery_num2",
|
|
616
|
+
"description": "Estimated delivery maximum range",
|
|
617
|
+
"type": "INTEGER"
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
"mode": "NULLABLE",
|
|
621
|
+
"name": "allow_third_party_billing",
|
|
622
|
+
"description": "True to allow third party billing",
|
|
623
|
+
"type": "BOOLEAN"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"mode": "NULLABLE",
|
|
627
|
+
"name": "allow_third_party_billing_approved_customers_only",
|
|
628
|
+
"description": "Only allow third party billing for approved customer profiles",
|
|
629
|
+
"type": "BOOLEAN"
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"mode": "NULLABLE",
|
|
633
|
+
"name": "maximum_order_fee",
|
|
634
|
+
"description": "The minimum fee to add",
|
|
635
|
+
"type": "NUMERIC"
|
|
636
|
+
},
|
|
637
|
+
{
|
|
638
|
+
"mode": "NULLABLE",
|
|
639
|
+
"name": "minimum_order_fee_limit",
|
|
640
|
+
"description": "The limit under when the order will be charged the minimum order fee",
|
|
641
|
+
"type": "NUMERIC"
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"allowed_values": [
|
|
645
|
+
"<",
|
|
646
|
+
"<=",
|
|
647
|
+
"=",
|
|
648
|
+
">",
|
|
649
|
+
">="
|
|
650
|
+
],
|
|
651
|
+
"mode": "NULLABLE",
|
|
652
|
+
"name": "total_shipment_comparison",
|
|
653
|
+
"description": "Total shipment comparison",
|
|
654
|
+
"type": "STRING"
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
"mode": "NULLABLE",
|
|
658
|
+
"name": "total_shipment_uom_weight",
|
|
659
|
+
"description": "Total shipment unit of measure for the weight",
|
|
660
|
+
"type": "STRING"
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"name": "total_shipment_weight",
|
|
664
|
+
"description": "The total shipment weight that will be compared",
|
|
665
|
+
"type": "RECORD",
|
|
666
|
+
"fields": [
|
|
667
|
+
{
|
|
668
|
+
"mode": "NULLABLE",
|
|
669
|
+
"name": "value",
|
|
670
|
+
"description": "Weight",
|
|
671
|
+
"type": "NUMERIC"
|
|
672
|
+
},
|
|
673
|
+
{
|
|
674
|
+
"allowed_values": [
|
|
675
|
+
"KG",
|
|
676
|
+
"G",
|
|
677
|
+
"LB",
|
|
678
|
+
"OZ"
|
|
679
|
+
],
|
|
680
|
+
"mode": "NULLABLE",
|
|
681
|
+
"name": "uom",
|
|
682
|
+
"description": "Unit of measure",
|
|
683
|
+
"type": "STRING"
|
|
684
|
+
}
|
|
685
|
+
]
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"allowed_values": [
|
|
689
|
+
"<",
|
|
690
|
+
"<=",
|
|
691
|
+
"=",
|
|
692
|
+
">",
|
|
693
|
+
">="
|
|
694
|
+
],
|
|
695
|
+
"mode": "NULLABLE",
|
|
696
|
+
"name": "individual_package_comparison",
|
|
697
|
+
"description": "The individual package comparison operator",
|
|
698
|
+
"type": "STRING"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"mode": "NULLABLE",
|
|
702
|
+
"name": "individual_package_uom_Weight",
|
|
703
|
+
"description": "The individual package unit of measure for weight",
|
|
704
|
+
"type": "STRING"
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
"name": "individual_package_weight",
|
|
708
|
+
"description": "The individual package weight that will be compared",
|
|
709
|
+
"type": "RECORD",
|
|
710
|
+
"fields": [
|
|
711
|
+
{
|
|
712
|
+
"mode": "NULLABLE",
|
|
713
|
+
"name": "value",
|
|
714
|
+
"description": "Weight",
|
|
715
|
+
"type": "NUMERIC"
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"allowed_values": [
|
|
719
|
+
"KG",
|
|
720
|
+
"G",
|
|
721
|
+
"LB",
|
|
722
|
+
"OZ"
|
|
723
|
+
],
|
|
724
|
+
"mode": "NULLABLE",
|
|
725
|
+
"name": "uom",
|
|
726
|
+
"description": "Unit of measure",
|
|
727
|
+
"type": "STRING"
|
|
728
|
+
}
|
|
729
|
+
]
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"mode": "NULLABLE",
|
|
733
|
+
"name": "restrict_shipment_on_sunday",
|
|
734
|
+
"description": "True if shipping on Sunday should be restricted",
|
|
735
|
+
"type": "BOOLEAN"
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"mode": "NULLABLE",
|
|
739
|
+
"name": "restrict_shipment_on_monday",
|
|
740
|
+
"description": "True if shipping on Monday should be restricted",
|
|
741
|
+
"type": "BOOLEAN"
|
|
742
|
+
},
|
|
743
|
+
{
|
|
744
|
+
"mode": "NULLABLE",
|
|
745
|
+
"name": "restrict_shipment_on_tuesday",
|
|
746
|
+
"description": "True if shipping on Tuesday should be restricted",
|
|
747
|
+
"type": "BOOLEAN"
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"mode": "NULLABLE",
|
|
751
|
+
"name": "restrict_shipment_on_wednesday",
|
|
752
|
+
"description": "True if shipping on Wednesday should be restricted",
|
|
753
|
+
"type": "BOOLEAN"
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
"mode": "NULLABLE",
|
|
757
|
+
"name": "restrict_shipment_on_thursday",
|
|
758
|
+
"description": "True if shipping on Thursday should be restricted",
|
|
759
|
+
"type": "BOOLEAN"
|
|
760
|
+
},
|
|
761
|
+
{
|
|
762
|
+
"mode": "NULLABLE",
|
|
763
|
+
"name": "restrict_shipment_on_friday",
|
|
764
|
+
"description": "True if shipping on Friday should be restricted",
|
|
765
|
+
"type": "BOOLEAN"
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"mode": "NULLABLE",
|
|
769
|
+
"name": "restrict_shipment_on_saturday",
|
|
770
|
+
"description": "True if shipping on Saturday should be restricted",
|
|
771
|
+
"type": "BOOLEAN"
|
|
772
|
+
},
|
|
773
|
+
{
|
|
774
|
+
"mode": "NULLABLE",
|
|
775
|
+
"name": "signature_required",
|
|
776
|
+
"description": "Optimal cart subtotal which a signature should be required by the end customer",
|
|
777
|
+
"type": "NUMERIC"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"mode": "REPEATED",
|
|
781
|
+
"name": "countries",
|
|
782
|
+
"description": "Countries",
|
|
783
|
+
"type": "RECORD",
|
|
784
|
+
"fields": [
|
|
785
|
+
{
|
|
786
|
+
"mode": "NULLABLE",
|
|
787
|
+
"name": "country",
|
|
788
|
+
"description": "Country",
|
|
789
|
+
"type": "STRING"
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"mode": "NULLABLE",
|
|
793
|
+
"name": "handling_charge",
|
|
794
|
+
"description": "Handling charge",
|
|
795
|
+
"type": "NUMERIC"
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
"name": "maximumPackageLength",
|
|
799
|
+
"description": "Maximum package length",
|
|
800
|
+
"type": "RECORD",
|
|
801
|
+
"fields": [
|
|
802
|
+
{
|
|
803
|
+
"mode": "NULLABLE",
|
|
804
|
+
"name": "value",
|
|
805
|
+
"description": "The distance measured in UOM",
|
|
806
|
+
"type": "NUMERIC"
|
|
807
|
+
},
|
|
808
|
+
{
|
|
809
|
+
"allowed_values": [
|
|
810
|
+
"IN",
|
|
811
|
+
"CM"
|
|
812
|
+
],
|
|
813
|
+
"mode": "NULLABLE",
|
|
814
|
+
"name": "uom",
|
|
815
|
+
"description": "Unit of measure",
|
|
816
|
+
"type": "STRING"
|
|
817
|
+
}
|
|
818
|
+
]
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
"mode": "NULLABLE",
|
|
822
|
+
"name": "maximum_customs_value",
|
|
823
|
+
"description": "Maximum customs value",
|
|
824
|
+
"type": "NUMERIC"
|
|
825
|
+
}
|
|
826
|
+
]
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
"mode": "REPEATED",
|
|
830
|
+
"name": "states",
|
|
831
|
+
"description": "States",
|
|
832
|
+
"type": "RECORD",
|
|
833
|
+
"fields": [
|
|
834
|
+
{
|
|
835
|
+
"mode": "NULLABLE",
|
|
836
|
+
"name": "country",
|
|
837
|
+
"description": "Country",
|
|
838
|
+
"type": "STRING"
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
"mode": "NULLABLE",
|
|
842
|
+
"name": "province_state",
|
|
843
|
+
"description": "Province state",
|
|
844
|
+
"type": "STRING"
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"mode": "NULLABLE",
|
|
848
|
+
"name": "handling_charge",
|
|
849
|
+
"description": "Handling charge",
|
|
850
|
+
"type": "NUMERIC"
|
|
851
|
+
}
|
|
852
|
+
]
|
|
853
|
+
},
|
|
854
|
+
{
|
|
855
|
+
"mode": "REPEATED",
|
|
856
|
+
"name": "packages",
|
|
857
|
+
"description": "Packages",
|
|
858
|
+
"type": "RECORD",
|
|
859
|
+
"fields": [{
|
|
860
|
+
"mode": "NULLABLE",
|
|
861
|
+
"name": "package_oid",
|
|
862
|
+
"description": "Package oid",
|
|
863
|
+
"type": "INTEGER"
|
|
864
|
+
}]
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"mode": "REPEATED",
|
|
868
|
+
"name": "pricing_tier_restrictions",
|
|
869
|
+
"description": "Pricing tier restrictions",
|
|
870
|
+
"type": "RECORD",
|
|
871
|
+
"fields": [
|
|
872
|
+
{
|
|
873
|
+
"mode": "NULLABLE",
|
|
874
|
+
"name": "pricing_tier_oid",
|
|
875
|
+
"description": "Pricing tier oid",
|
|
876
|
+
"type": "INTEGER"
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"mode": "NULLABLE",
|
|
880
|
+
"name": "validity",
|
|
881
|
+
"description": "Validity",
|
|
882
|
+
"type": "STRING"
|
|
883
|
+
}
|
|
884
|
+
]
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"mode": "REPEATED",
|
|
888
|
+
"name": "shipping_method_discounts",
|
|
889
|
+
"description": "Discounts",
|
|
890
|
+
"type": "RECORD",
|
|
891
|
+
"fields": [
|
|
892
|
+
{
|
|
893
|
+
"name": "minimum_weight",
|
|
894
|
+
"description": "Minimum weight",
|
|
895
|
+
"type": "RECORD",
|
|
896
|
+
"fields": [
|
|
897
|
+
{
|
|
898
|
+
"mode": "NULLABLE",
|
|
899
|
+
"name": "value",
|
|
900
|
+
"description": "Weight",
|
|
901
|
+
"type": "NUMERIC"
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
"allowed_values": [
|
|
905
|
+
"KG",
|
|
906
|
+
"G",
|
|
907
|
+
"LB",
|
|
908
|
+
"OZ"
|
|
909
|
+
],
|
|
910
|
+
"mode": "NULLABLE",
|
|
911
|
+
"name": "uom",
|
|
912
|
+
"description": "Unit of measure",
|
|
913
|
+
"type": "STRING"
|
|
914
|
+
}
|
|
915
|
+
]
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
"mode": "NULLABLE",
|
|
919
|
+
"name": "residential_percentage_discount",
|
|
920
|
+
"description": "Residential percentage discount",
|
|
921
|
+
"type": "NUMERIC"
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
"mode": "NULLABLE",
|
|
925
|
+
"name": "commercial_percentage_discount",
|
|
926
|
+
"description": "Commercial percentage discount",
|
|
927
|
+
"type": "NUMERIC"
|
|
928
|
+
}
|
|
929
|
+
]
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"mode": "NULLABLE",
|
|
933
|
+
"name": "filter_other_methods_when_available",
|
|
934
|
+
"description": "Filter out other methods when this one is available",
|
|
935
|
+
"type": "BOOLEAN"
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
"mode": "NULLABLE",
|
|
939
|
+
"name": "no_realtime_charge",
|
|
940
|
+
"description": "No realtime charge for payment if this method is selected (typically for freight that needs further quoting)",
|
|
941
|
+
"type": "BOOLEAN"
|
|
942
|
+
},
|
|
943
|
+
{
|
|
944
|
+
"mode": "NULLABLE",
|
|
945
|
+
"name": "force_to_distribution_center_oid",
|
|
946
|
+
"description": "For the order to this distribution center id",
|
|
947
|
+
"type": "INTEGER"
|
|
948
|
+
},
|
|
949
|
+
{
|
|
950
|
+
"mode": "NULLABLE",
|
|
951
|
+
"name": "maximum_insured_value",
|
|
952
|
+
"description": "Maximum insured value",
|
|
953
|
+
"type": "NUMERIC"
|
|
954
|
+
},
|
|
955
|
+
{
|
|
956
|
+
"mode": "NULLABLE",
|
|
957
|
+
"name": "maximum_value",
|
|
958
|
+
"description": "Maximum value",
|
|
959
|
+
"type": "NUMERIC"
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"mode": "NULLABLE",
|
|
963
|
+
"name": "shipment_cut_off_time_monday",
|
|
964
|
+
"description": "Shipment cut off time when the ship on date is Monday",
|
|
965
|
+
"type": "DATETIME"
|
|
966
|
+
},
|
|
967
|
+
{
|
|
968
|
+
"mode": "NULLABLE",
|
|
969
|
+
"name": "shipment_cut_off_time_tuesday",
|
|
970
|
+
"description": "Shipment cut off time when the ship on date is Tuesday",
|
|
971
|
+
"type": "DATETIME"
|
|
972
|
+
},
|
|
973
|
+
{
|
|
974
|
+
"mode": "NULLABLE",
|
|
975
|
+
"name": "shipment_cut_off_time_wednesday",
|
|
976
|
+
"description": "Shipment cut off time when the ship on date is Wednesday",
|
|
977
|
+
"type": "DATETIME"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"mode": "NULLABLE",
|
|
981
|
+
"name": "shipment_cut_off_time_thursday",
|
|
982
|
+
"description": "Shipment cut off time when the ship on date is Thursday",
|
|
983
|
+
"type": "DATETIME"
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
"mode": "NULLABLE",
|
|
987
|
+
"name": "shipment_cut_off_time_friday",
|
|
988
|
+
"description": "Shipment cut off time when the ship on date is Friday",
|
|
989
|
+
"type": "DATETIME"
|
|
990
|
+
},
|
|
991
|
+
{
|
|
992
|
+
"mode": "NULLABLE",
|
|
993
|
+
"name": "shipment_cut_off_time_saturday",
|
|
994
|
+
"description": "Shipment cut off time when the ship on date is Saturday",
|
|
995
|
+
"type": "DATETIME"
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"mode": "NULLABLE",
|
|
999
|
+
"name": "shipment_cut_off_time_sunday",
|
|
1000
|
+
"description": "Shipment cut off time when the ship on date is Sunday",
|
|
1001
|
+
"type": "DATETIME"
|
|
1002
|
+
},
|
|
1003
|
+
{
|
|
1004
|
+
"mode": "NULLABLE",
|
|
1005
|
+
"name": "valid_only_zip_codes",
|
|
1006
|
+
"description": "Valid only zip codes",
|
|
1007
|
+
"type": "STRING"
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"mode": "NULLABLE",
|
|
1011
|
+
"name": "disabled",
|
|
1012
|
+
"description": "True if the method is disabled",
|
|
1013
|
+
"type": "BOOLEAN"
|
|
1014
|
+
},
|
|
1015
|
+
{
|
|
1016
|
+
"mode": "NULLABLE",
|
|
1017
|
+
"name": "radius_miles",
|
|
1018
|
+
"description": "Radius in miles that this method is valid for",
|
|
1019
|
+
"type": "INTEGER"
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
"mode": "NULLABLE",
|
|
1023
|
+
"name": "radius_zip_codes",
|
|
1024
|
+
"description": "Radius in miles for these zip codes",
|
|
1025
|
+
"type": "STRING"
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"mode": "REPEATED",
|
|
1029
|
+
"name": "invalid_for_screen_branding_theme_restrictions",
|
|
1030
|
+
"description": "Invalid for screen branding theme restrictions",
|
|
1031
|
+
"type": "RECORD",
|
|
1032
|
+
"fields": [{
|
|
1033
|
+
"mode": "NULLABLE",
|
|
1034
|
+
"name": "value",
|
|
1035
|
+
"type": "STRING"
|
|
1036
|
+
}]
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
"mode": "REPEATED",
|
|
1040
|
+
"name": "valid_only_for_screen_branding_theme_restrictions",
|
|
1041
|
+
"description": "Valid only for screen branding theme restrictions",
|
|
1042
|
+
"type": "RECORD",
|
|
1043
|
+
"fields": [{
|
|
1044
|
+
"mode": "NULLABLE",
|
|
1045
|
+
"name": "value",
|
|
1046
|
+
"type": "STRING"
|
|
1047
|
+
}]
|
|
1048
|
+
},
|
|
1049
|
+
{
|
|
1050
|
+
"mode": "REPEATED",
|
|
1051
|
+
"name": "zip_percentage_markup",
|
|
1052
|
+
"description": "Zip percentage markup",
|
|
1053
|
+
"type": "RECORD",
|
|
1054
|
+
"fields": [
|
|
1055
|
+
{
|
|
1056
|
+
"mode": "NULLABLE",
|
|
1057
|
+
"name": "shipping_method_zip_percentage_range_oid",
|
|
1058
|
+
"description": "Shipping method zip percentage range oid",
|
|
1059
|
+
"type": "INTEGER"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"mode": "NULLABLE",
|
|
1063
|
+
"name": "zip_range",
|
|
1064
|
+
"description": "Zip range",
|
|
1065
|
+
"type": "STRING"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"mode": "NULLABLE",
|
|
1069
|
+
"name": "markup_percentage",
|
|
1070
|
+
"description": "Markup percentage",
|
|
1071
|
+
"type": "NUMERIC"
|
|
1072
|
+
}
|
|
1073
|
+
]
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"mode": "NULLABLE",
|
|
1077
|
+
"name": "apo_fpo_markup",
|
|
1078
|
+
"description": "APO/FPO markup",
|
|
1079
|
+
"type": "NUMERIC"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"mode": "NULLABLE",
|
|
1083
|
+
"name": "po_box_markup",
|
|
1084
|
+
"description": "P.O. Box Markup",
|
|
1085
|
+
"type": "NUMERIC"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"mode": "REPEATED",
|
|
1089
|
+
"name": "pricing_tier_markup",
|
|
1090
|
+
"description": "Pricing tier specific markups",
|
|
1091
|
+
"type": "RECORD",
|
|
1092
|
+
"fields": [
|
|
1093
|
+
{
|
|
1094
|
+
"mode": "NULLABLE",
|
|
1095
|
+
"name": "shipping_method_pricing_tier_markup_oid",
|
|
1096
|
+
"description": "Shipping method pricing tier markup oid",
|
|
1097
|
+
"type": "INTEGER"
|
|
1098
|
+
},
|
|
1099
|
+
{
|
|
1100
|
+
"mode": "NULLABLE",
|
|
1101
|
+
"name": "pricing_tier_oid",
|
|
1102
|
+
"description": "Pricing tier oid",
|
|
1103
|
+
"type": "INTEGER"
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
"mode": "NULLABLE",
|
|
1107
|
+
"name": "percentage_markup",
|
|
1108
|
+
"description": "Percentage markup",
|
|
1109
|
+
"type": "NUMERIC"
|
|
1110
|
+
},
|
|
1111
|
+
{
|
|
1112
|
+
"mode": "NULLABLE",
|
|
1113
|
+
"name": "flat_fee_markup",
|
|
1114
|
+
"description": "Flat fee markup",
|
|
1115
|
+
"type": "NUMERIC"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"mode": "NULLABLE",
|
|
1119
|
+
"name": "first_item_markup",
|
|
1120
|
+
"description": "First item markup",
|
|
1121
|
+
"type": "NUMERIC"
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
"mode": "NULLABLE",
|
|
1125
|
+
"name": "each_additional_item_markup",
|
|
1126
|
+
"description": "Each additional item markup",
|
|
1127
|
+
"type": "NUMERIC"
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"mode": "NULLABLE",
|
|
1131
|
+
"name": "residential_markup",
|
|
1132
|
+
"description": "Residential markup",
|
|
1133
|
+
"type": "NUMERIC"
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"mode": "NULLABLE",
|
|
1137
|
+
"name": "hazmat_fee_per_package",
|
|
1138
|
+
"description": "Hazmat fee per package",
|
|
1139
|
+
"type": "NUMERIC"
|
|
1140
|
+
},
|
|
1141
|
+
{
|
|
1142
|
+
"mode": "NULLABLE",
|
|
1143
|
+
"name": "hazmat_fee_per_entire_shipment",
|
|
1144
|
+
"description": "Hazmat fee per entire shipment",
|
|
1145
|
+
"type": "NUMERIC"
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"mode": "NULLABLE",
|
|
1149
|
+
"name": "minimum_order_fee",
|
|
1150
|
+
"description": "Minimum order fee",
|
|
1151
|
+
"type": "NUMERIC"
|
|
1152
|
+
},
|
|
1153
|
+
{
|
|
1154
|
+
"mode": "NULLABLE",
|
|
1155
|
+
"name": "minimum_order_fee_limit",
|
|
1156
|
+
"description": "Minimum order fee limit",
|
|
1157
|
+
"type": "NUMERIC"
|
|
1158
|
+
},
|
|
1159
|
+
{
|
|
1160
|
+
"mode": "NULLABLE",
|
|
1161
|
+
"name": "apo_fpo_markup",
|
|
1162
|
+
"description": "APO FPO markup",
|
|
1163
|
+
"type": "NUMERIC"
|
|
1164
|
+
},
|
|
1165
|
+
{
|
|
1166
|
+
"mode": "NULLABLE",
|
|
1167
|
+
"name": "po_box_markup",
|
|
1168
|
+
"description": "PO Box markup",
|
|
1169
|
+
"type": "NUMERIC"
|
|
1170
|
+
},
|
|
1171
|
+
{
|
|
1172
|
+
"mode": "NULLABLE",
|
|
1173
|
+
"name": "lift_gate_fee",
|
|
1174
|
+
"description": "Lift gate fee",
|
|
1175
|
+
"type": "NUMERIC"
|
|
1176
|
+
},
|
|
1177
|
+
{
|
|
1178
|
+
"mode": "NULLABLE",
|
|
1179
|
+
"name": "saturday_fee",
|
|
1180
|
+
"description": "Saturday fee",
|
|
1181
|
+
"type": "NUMERIC"
|
|
1182
|
+
}
|
|
1183
|
+
]
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
"mode": "NULLABLE",
|
|
1187
|
+
"name": "discount_if_order_subtotal_and_us48",
|
|
1188
|
+
"description": "Discount if the order subtotal is at least this and in US 48",
|
|
1189
|
+
"type": "NUMERIC"
|
|
1190
|
+
},
|
|
1191
|
+
{
|
|
1192
|
+
"mode": "NULLABLE",
|
|
1193
|
+
"name": "custom_tracking_url",
|
|
1194
|
+
"description": "Custom tracking URL",
|
|
1195
|
+
"type": "STRING"
|
|
1196
|
+
},
|
|
1197
|
+
{
|
|
1198
|
+
"mode": "NULLABLE",
|
|
1199
|
+
"name": "beoe_only",
|
|
1200
|
+
"description": "Method can only be used in the backend order entry application",
|
|
1201
|
+
"type": "BOOLEAN"
|
|
1202
|
+
},
|
|
1203
|
+
{
|
|
1204
|
+
"mode": "NULLABLE",
|
|
1205
|
+
"name": "disocunt_if_cheapest",
|
|
1206
|
+
"description": "Discount this method only if it's the cheapest one available",
|
|
1207
|
+
"type": "BOOLEAN"
|
|
1208
|
+
},
|
|
1209
|
+
{
|
|
1210
|
+
"name": "limit_package_weight",
|
|
1211
|
+
"description": "Restrict the package weight to this",
|
|
1212
|
+
"type": "RECORD",
|
|
1213
|
+
"fields": [
|
|
1214
|
+
{
|
|
1215
|
+
"mode": "NULLABLE",
|
|
1216
|
+
"name": "value",
|
|
1217
|
+
"description": "Weight",
|
|
1218
|
+
"type": "NUMERIC"
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
"allowed_values": [
|
|
1222
|
+
"KG",
|
|
1223
|
+
"G",
|
|
1224
|
+
"LB",
|
|
1225
|
+
"OZ"
|
|
1226
|
+
],
|
|
1227
|
+
"mode": "NULLABLE",
|
|
1228
|
+
"name": "uom",
|
|
1229
|
+
"description": "Unit of measure",
|
|
1230
|
+
"type": "STRING"
|
|
1231
|
+
}
|
|
1232
|
+
]
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"mode": "NULLABLE",
|
|
1236
|
+
"name": "life_gate_option",
|
|
1237
|
+
"description": "True if lift gate service is available (LTL freight)",
|
|
1238
|
+
"type": "BOOLEAN"
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"mode": "NULLABLE",
|
|
1242
|
+
"name": "life_gate_fee",
|
|
1243
|
+
"description": "The fee to charge if the customer requests life gate service",
|
|
1244
|
+
"type": "NUMERIC"
|
|
1245
|
+
},
|
|
1246
|
+
{
|
|
1247
|
+
"mode": "NULLABLE",
|
|
1248
|
+
"name": "pickup",
|
|
1249
|
+
"description": "True if this is a pickup method",
|
|
1250
|
+
"type": "BOOLEAN"
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"mode": "REPEATED",
|
|
1254
|
+
"name": "least_cost_routes",
|
|
1255
|
+
"description": "Least cost routing information",
|
|
1256
|
+
"type": "RECORD",
|
|
1257
|
+
"fields": [
|
|
1258
|
+
{
|
|
1259
|
+
"mode": "NULLABLE",
|
|
1260
|
+
"name": "shipping_method_last_cost_route_oid",
|
|
1261
|
+
"description": "Shipping method least cost route oid",
|
|
1262
|
+
"type": "INTEGER"
|
|
1263
|
+
},
|
|
1264
|
+
{
|
|
1265
|
+
"mode": "NULLABLE",
|
|
1266
|
+
"name": "route_to_shipping_method_oid",
|
|
1267
|
+
"description": "Route to shipping method oid",
|
|
1268
|
+
"type": "INTEGER"
|
|
1269
|
+
},
|
|
1270
|
+
{
|
|
1271
|
+
"name": "maximum_longest_dimension",
|
|
1272
|
+
"type": "RECORD",
|
|
1273
|
+
"fields": [
|
|
1274
|
+
{
|
|
1275
|
+
"mode": "NULLABLE",
|
|
1276
|
+
"name": "value",
|
|
1277
|
+
"description": "The distance measured in UOM",
|
|
1278
|
+
"type": "NUMERIC"
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"allowed_values": [
|
|
1282
|
+
"IN",
|
|
1283
|
+
"CM"
|
|
1284
|
+
],
|
|
1285
|
+
"mode": "NULLABLE",
|
|
1286
|
+
"name": "uom",
|
|
1287
|
+
"description": "Unit of measure",
|
|
1288
|
+
"type": "STRING"
|
|
1289
|
+
}
|
|
1290
|
+
]
|
|
1291
|
+
},
|
|
1292
|
+
{
|
|
1293
|
+
"name": "maximum_second_longest_dimension",
|
|
1294
|
+
"description": "Maximum second longest dimension",
|
|
1295
|
+
"type": "RECORD",
|
|
1296
|
+
"fields": [
|
|
1297
|
+
{
|
|
1298
|
+
"mode": "NULLABLE",
|
|
1299
|
+
"name": "value",
|
|
1300
|
+
"description": "The distance measured in UOM",
|
|
1301
|
+
"type": "NUMERIC"
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
"allowed_values": [
|
|
1305
|
+
"IN",
|
|
1306
|
+
"CM"
|
|
1307
|
+
],
|
|
1308
|
+
"mode": "NULLABLE",
|
|
1309
|
+
"name": "uom",
|
|
1310
|
+
"description": "Unit of measure",
|
|
1311
|
+
"type": "STRING"
|
|
1312
|
+
}
|
|
1313
|
+
]
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"mode": "NULLABLE",
|
|
1317
|
+
"name": "maximum_subtotal",
|
|
1318
|
+
"description": "Maximum subtotal",
|
|
1319
|
+
"type": "NUMERIC"
|
|
1320
|
+
},
|
|
1321
|
+
{
|
|
1322
|
+
"name": "maximum_weight",
|
|
1323
|
+
"description": "Maximum weight",
|
|
1324
|
+
"type": "RECORD",
|
|
1325
|
+
"fields": [
|
|
1326
|
+
{
|
|
1327
|
+
"mode": "NULLABLE",
|
|
1328
|
+
"name": "value",
|
|
1329
|
+
"description": "Weight",
|
|
1330
|
+
"type": "NUMERIC"
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"allowed_values": [
|
|
1334
|
+
"KG",
|
|
1335
|
+
"G",
|
|
1336
|
+
"LB",
|
|
1337
|
+
"OZ"
|
|
1338
|
+
],
|
|
1339
|
+
"mode": "NULLABLE",
|
|
1340
|
+
"name": "uom",
|
|
1341
|
+
"description": "Unit of measure",
|
|
1342
|
+
"type": "STRING"
|
|
1343
|
+
}
|
|
1344
|
+
]
|
|
1345
|
+
}
|
|
1346
|
+
]
|
|
1347
|
+
},
|
|
1348
|
+
{
|
|
1349
|
+
"mode": "NULLABLE",
|
|
1350
|
+
"name": "minimum_cost",
|
|
1351
|
+
"description": "The minimum cost that this method can be",
|
|
1352
|
+
"type": "NUMERIC"
|
|
1353
|
+
},
|
|
1354
|
+
{
|
|
1355
|
+
"mode": "NULLABLE",
|
|
1356
|
+
"name": "life_gate_required_for_residential",
|
|
1357
|
+
"description": "Require life gate service for residential delivery",
|
|
1358
|
+
"type": "BOOLEAN"
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
"mode": "NULLABLE",
|
|
1362
|
+
"name": "allowed_for_free_shipping_us48",
|
|
1363
|
+
"description": "Allowed for free shipping if the customer is in the US 48",
|
|
1364
|
+
"type": "BOOLEAN"
|
|
1365
|
+
},
|
|
1366
|
+
{
|
|
1367
|
+
"mode": "NULLABLE",
|
|
1368
|
+
"name": "saturday_fee",
|
|
1369
|
+
"description": "Saturday delivery",
|
|
1370
|
+
"type": "NUMERIC"
|
|
1371
|
+
}
|
|
1372
|
+
]
|