@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,269 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"mode": "NULLABLE",
|
|
4
|
+
"name": "partition_date",
|
|
5
|
+
"type": "DATE"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"mode": "NULLABLE",
|
|
9
|
+
"name": "survey_uuid",
|
|
10
|
+
"description": "Survey UUID",
|
|
11
|
+
"type": "STRING"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"mode": "NULLABLE",
|
|
15
|
+
"name": "merchant_id",
|
|
16
|
+
"description": "Merchant ID",
|
|
17
|
+
"type": "STRING"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"mode": "NULLABLE",
|
|
21
|
+
"name": "survey_name",
|
|
22
|
+
"description": "Survey Name",
|
|
23
|
+
"type": "STRING"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"allowed_values": [
|
|
27
|
+
"Marketing",
|
|
28
|
+
"PII"
|
|
29
|
+
],
|
|
30
|
+
"mode": "NULLABLE",
|
|
31
|
+
"name": "survey_type",
|
|
32
|
+
"description": "Survey Type",
|
|
33
|
+
"type": "STRING"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"mode": "NULLABLE",
|
|
37
|
+
"name": "survey_dts",
|
|
38
|
+
"description": "Date/time that the survey was submitted",
|
|
39
|
+
"type": "DATETIME"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"mode": "NULLABLE",
|
|
43
|
+
"name": "expiration_dts",
|
|
44
|
+
"description": "Date/time that the survey expires and is deleted",
|
|
45
|
+
"type": "DATETIME"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"mode": "NULLABLE",
|
|
49
|
+
"name": "add_coupon_code",
|
|
50
|
+
"description": "Coupon code added to the cart",
|
|
51
|
+
"type": "STRING"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"mode": "NULLABLE",
|
|
55
|
+
"name": "add_item_id",
|
|
56
|
+
"description": "Item ID added to the cart",
|
|
57
|
+
"type": "STRING"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"mode": "NULLABLE",
|
|
61
|
+
"name": "uri",
|
|
62
|
+
"description": "URI that hosted the survey",
|
|
63
|
+
"type": "STRING"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"mode": "NULLABLE",
|
|
67
|
+
"name": "widget_id",
|
|
68
|
+
"description": "SFVB element id for the survey",
|
|
69
|
+
"type": "STRING"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"mode": "NULLABLE",
|
|
73
|
+
"name": "email",
|
|
74
|
+
"description": "Email collected during the survey",
|
|
75
|
+
"type": "STRING"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"mode": "NULLABLE",
|
|
79
|
+
"name": "ucacid",
|
|
80
|
+
"description": "UC Analytics Identifier",
|
|
81
|
+
"type": "STRING"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"mode": "NULLABLE",
|
|
85
|
+
"name": "email_hash",
|
|
86
|
+
"description": "Email Hash SHA-256 Base64",
|
|
87
|
+
"type": "STRING"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"mode": "REPEATED",
|
|
91
|
+
"name": "questions",
|
|
92
|
+
"description": "Questions",
|
|
93
|
+
"type": "RECORD",
|
|
94
|
+
"fields": [
|
|
95
|
+
{
|
|
96
|
+
"mode": "NULLABLE",
|
|
97
|
+
"name": "question_name",
|
|
98
|
+
"description": "Question Name",
|
|
99
|
+
"type": "STRING"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"mode": "NULLABLE",
|
|
103
|
+
"name": "question_type",
|
|
104
|
+
"description": "Question Type",
|
|
105
|
+
"type": "STRING"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"mode": "REPEATED",
|
|
109
|
+
"name": "visible_choices",
|
|
110
|
+
"description": "The choices the customer could select from",
|
|
111
|
+
"type": "RECORD",
|
|
112
|
+
"fields": [
|
|
113
|
+
{
|
|
114
|
+
"mode": "NULLABLE",
|
|
115
|
+
"name": "value",
|
|
116
|
+
"type": "STRING"
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"mode": "NULLABLE",
|
|
120
|
+
"name": "text",
|
|
121
|
+
"type": "STRING"
|
|
122
|
+
}
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"name": "single_answer",
|
|
127
|
+
"description": "Single Answer",
|
|
128
|
+
"type": "RECORD",
|
|
129
|
+
"fields": [
|
|
130
|
+
{
|
|
131
|
+
"mode": "NULLABLE",
|
|
132
|
+
"name": "answer",
|
|
133
|
+
"description": "Answer",
|
|
134
|
+
"type": "STRING"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"mode": "NULLABLE",
|
|
138
|
+
"name": "answer_hash",
|
|
139
|
+
"description": "Answer Hash SHA-256 Base64",
|
|
140
|
+
"type": "STRING"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"mode": "NULLABLE",
|
|
144
|
+
"name": "important",
|
|
145
|
+
"description": "True if this answer should be considered important (MDIntegrations)",
|
|
146
|
+
"type": "BOOLEAN"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"mode": "NULLABLE",
|
|
150
|
+
"name": "critical",
|
|
151
|
+
"description": "True if this answer should be considered critical (MDIntegrations)",
|
|
152
|
+
"type": "BOOLEAN"
|
|
153
|
+
}
|
|
154
|
+
]
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"mode": "REPEATED",
|
|
158
|
+
"name": "multiple_choice_answers",
|
|
159
|
+
"description": "Multiple Choice Answers",
|
|
160
|
+
"type": "RECORD",
|
|
161
|
+
"fields": [
|
|
162
|
+
{
|
|
163
|
+
"mode": "NULLABLE",
|
|
164
|
+
"name": "answer",
|
|
165
|
+
"description": "Answer",
|
|
166
|
+
"type": "STRING"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"mode": "NULLABLE",
|
|
170
|
+
"name": "answer_hash",
|
|
171
|
+
"description": "Answer Hash SHA-256 Base64",
|
|
172
|
+
"type": "STRING"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"mode": "NULLABLE",
|
|
176
|
+
"name": "important",
|
|
177
|
+
"description": "True if this answer should be considered important (MDIntegrations)",
|
|
178
|
+
"type": "BOOLEAN"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"mode": "NULLABLE",
|
|
182
|
+
"name": "critical",
|
|
183
|
+
"description": "True if this answer should be considered critical (MDIntegrations)",
|
|
184
|
+
"type": "BOOLEAN"
|
|
185
|
+
}
|
|
186
|
+
]
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"mode": "REPEATED",
|
|
190
|
+
"name": "file_answers",
|
|
191
|
+
"description": "File answers",
|
|
192
|
+
"type": "RECORD",
|
|
193
|
+
"fields": [
|
|
194
|
+
{
|
|
195
|
+
"mode": "NULLABLE",
|
|
196
|
+
"name": "file_name",
|
|
197
|
+
"description": "File Name",
|
|
198
|
+
"type": "STRING"
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"mode": "NULLABLE",
|
|
202
|
+
"name": "mime_type",
|
|
203
|
+
"description": "Mime Type",
|
|
204
|
+
"type": "STRING"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"mode": "NULLABLE",
|
|
208
|
+
"name": "file_uuid",
|
|
209
|
+
"description": "File UUID",
|
|
210
|
+
"type": "STRING"
|
|
211
|
+
}
|
|
212
|
+
]
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"mode": "NULLABLE",
|
|
216
|
+
"name": "correct",
|
|
217
|
+
"description": "True if the question was answered correctly. Null if this question did not have a correct answer defined.",
|
|
218
|
+
"type": "BOOLEAN"
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"mode": "NULLABLE",
|
|
222
|
+
"name": "question",
|
|
223
|
+
"description": "The question asked to the customer",
|
|
224
|
+
"type": "STRING"
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"mode": "NULLABLE",
|
|
228
|
+
"name": "questionPosition",
|
|
229
|
+
"type": "INTEGER"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"mode": "NULLABLE",
|
|
233
|
+
"name": "page_name",
|
|
234
|
+
"description": "The name of the page this question was on",
|
|
235
|
+
"type": "STRING"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"mode": "NULLABLE",
|
|
239
|
+
"name": "page_number",
|
|
240
|
+
"description": "The number of the page this question was on",
|
|
241
|
+
"type": "INTEGER"
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"mode": "NULLABLE",
|
|
247
|
+
"name": "incorrect_answer_count",
|
|
248
|
+
"description": "The number of questions incorrectly answered. Null if this is not a quiz.",
|
|
249
|
+
"type": "INTEGER"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"mode": "NULLABLE",
|
|
253
|
+
"name": "correct_answer_count",
|
|
254
|
+
"description": "The number of questions correctly answered. Null if this is not a quiz.",
|
|
255
|
+
"type": "INTEGER"
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"mode": "NULLABLE",
|
|
259
|
+
"name": "order_id",
|
|
260
|
+
"description": "The order id associated with the survey (if post order completion collection)",
|
|
261
|
+
"type": "STRING"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"mode": "NULLABLE",
|
|
265
|
+
"name": "order_item_id",
|
|
266
|
+
"description": "The order item ID associated with the survey (if post order completion collection)",
|
|
267
|
+
"type": "STRING"
|
|
268
|
+
}
|
|
269
|
+
]
|
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"mode": "NULLABLE",
|
|
4
|
+
"name": "partition_oid",
|
|
5
|
+
"type": "INTEGER"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"mode": "NULLABLE",
|
|
9
|
+
"name": "workflow_task_uuid",
|
|
10
|
+
"description": "Workflow Task UUID",
|
|
11
|
+
"type": "STRING"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"mode": "NULLABLE",
|
|
15
|
+
"name": "merchant_id",
|
|
16
|
+
"description": "Merchant ID",
|
|
17
|
+
"type": "STRING"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"allowed_values": [
|
|
21
|
+
"order",
|
|
22
|
+
"auto order",
|
|
23
|
+
"item",
|
|
24
|
+
"customer profile",
|
|
25
|
+
"storefront"
|
|
26
|
+
],
|
|
27
|
+
"mode": "NULLABLE",
|
|
28
|
+
"name": "object_type",
|
|
29
|
+
"description": "Object Type",
|
|
30
|
+
"type": "STRING"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"mode": "NULLABLE",
|
|
34
|
+
"name": "object_id",
|
|
35
|
+
"description": "Object ID",
|
|
36
|
+
"type": "STRING"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"mode": "NULLABLE",
|
|
40
|
+
"name": "object_url",
|
|
41
|
+
"description": "Object URL",
|
|
42
|
+
"type": "STRING"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"mode": "NULLABLE",
|
|
46
|
+
"name": "object_email",
|
|
47
|
+
"description": "Object is associated with customer email",
|
|
48
|
+
"type": "STRING"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"mode": "NULLABLE",
|
|
52
|
+
"name": "task_context",
|
|
53
|
+
"description": "User friendly string of the task context",
|
|
54
|
+
"type": "STRING"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"allowed_values": [
|
|
58
|
+
"1 - low",
|
|
59
|
+
"2 - medium",
|
|
60
|
+
"3 - high",
|
|
61
|
+
"4 - critical"
|
|
62
|
+
],
|
|
63
|
+
"mode": "NULLABLE",
|
|
64
|
+
"name": "priority",
|
|
65
|
+
"description": "Priority",
|
|
66
|
+
"type": "STRING"
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"mode": "NULLABLE",
|
|
70
|
+
"name": "created_dts",
|
|
71
|
+
"description": "Date/time that the workflow task was created",
|
|
72
|
+
"type": "DATETIME"
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "created_by",
|
|
76
|
+
"description": "User that created the task",
|
|
77
|
+
"type": "RECORD",
|
|
78
|
+
"fields": [
|
|
79
|
+
{
|
|
80
|
+
"mode": "NULLABLE",
|
|
81
|
+
"name": "user",
|
|
82
|
+
"description": "The user",
|
|
83
|
+
"type": "STRING"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"mode": "NULLABLE",
|
|
87
|
+
"name": "user_icon_url",
|
|
88
|
+
"description": "The user icon URL if available",
|
|
89
|
+
"type": "STRING"
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"mode": "NULLABLE",
|
|
95
|
+
"name": "last_update_dts",
|
|
96
|
+
"description": "Date/time that the workflow task was last updated",
|
|
97
|
+
"type": "DATETIME"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"mode": "NULLABLE",
|
|
101
|
+
"name": "due_dts",
|
|
102
|
+
"description": "Date/time that the workflow task is due",
|
|
103
|
+
"type": "DATETIME"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"allowed_values": [
|
|
107
|
+
"open",
|
|
108
|
+
"closed",
|
|
109
|
+
"delayed",
|
|
110
|
+
"awaiting customer feedback",
|
|
111
|
+
"closed - system",
|
|
112
|
+
"closed - customer",
|
|
113
|
+
"closed - expiration"
|
|
114
|
+
],
|
|
115
|
+
"mode": "NULLABLE",
|
|
116
|
+
"name": "status",
|
|
117
|
+
"description": "Status of the workflow task",
|
|
118
|
+
"type": "STRING"
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"mode": "NULLABLE",
|
|
122
|
+
"name": "delay_until_dts",
|
|
123
|
+
"description": "Date/time that the workflow task should delay until",
|
|
124
|
+
"type": "DATETIME"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"mode": "NULLABLE",
|
|
128
|
+
"name": "assigned_to_group",
|
|
129
|
+
"description": "Assigned to group",
|
|
130
|
+
"type": "STRING"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"mode": "NULLABLE",
|
|
134
|
+
"name": "assigned_to_user",
|
|
135
|
+
"description": "Assigned to user",
|
|
136
|
+
"type": "STRING"
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"mode": "NULLABLE",
|
|
140
|
+
"name": "assigned_to_user_or_group",
|
|
141
|
+
"description": "Assigned to user or group (used for sorting)",
|
|
142
|
+
"type": "STRING"
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"mode": "NULLABLE",
|
|
146
|
+
"name": "task_name",
|
|
147
|
+
"description": "Task Name",
|
|
148
|
+
"type": "STRING"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"mode": "NULLABLE",
|
|
152
|
+
"name": "task_details",
|
|
153
|
+
"description": "Task Details",
|
|
154
|
+
"type": "STRING"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"mode": "REPEATED",
|
|
158
|
+
"name": "attachments",
|
|
159
|
+
"description": "Attachments to the Workflow Task",
|
|
160
|
+
"type": "RECORD",
|
|
161
|
+
"fields": [
|
|
162
|
+
{
|
|
163
|
+
"mode": "NULLABLE",
|
|
164
|
+
"name": "file_name",
|
|
165
|
+
"description": "File name",
|
|
166
|
+
"type": "STRING"
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"mode": "NULLABLE",
|
|
170
|
+
"name": "mime_type",
|
|
171
|
+
"description": "Mime Type",
|
|
172
|
+
"type": "STRING"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"mode": "NULLABLE",
|
|
176
|
+
"name": "file_uuid",
|
|
177
|
+
"description": "File UUID",
|
|
178
|
+
"type": "STRING"
|
|
179
|
+
}
|
|
180
|
+
]
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"mode": "REPEATED",
|
|
184
|
+
"name": "notes",
|
|
185
|
+
"description": "Notes on the Workflow Task",
|
|
186
|
+
"type": "RECORD",
|
|
187
|
+
"fields": [
|
|
188
|
+
{
|
|
189
|
+
"name": "user",
|
|
190
|
+
"description": "The user that wrote the note",
|
|
191
|
+
"type": "RECORD",
|
|
192
|
+
"fields": [
|
|
193
|
+
{
|
|
194
|
+
"mode": "NULLABLE",
|
|
195
|
+
"name": "user",
|
|
196
|
+
"description": "The user",
|
|
197
|
+
"type": "STRING"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"mode": "NULLABLE",
|
|
201
|
+
"name": "user_icon_url",
|
|
202
|
+
"description": "The user icon URL if available",
|
|
203
|
+
"type": "STRING"
|
|
204
|
+
}
|
|
205
|
+
]
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"mode": "NULLABLE",
|
|
209
|
+
"name": "note_dts",
|
|
210
|
+
"description": "Date/time that the note was written",
|
|
211
|
+
"type": "DATETIME"
|
|
212
|
+
},
|
|
213
|
+
{
|
|
214
|
+
"mode": "NULLABLE",
|
|
215
|
+
"name": "note",
|
|
216
|
+
"description": "Note",
|
|
217
|
+
"type": "STRING"
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"mode": "REPEATED",
|
|
221
|
+
"name": "attachments",
|
|
222
|
+
"description": "Attachments to the Workflow Task",
|
|
223
|
+
"type": "RECORD",
|
|
224
|
+
"fields": [
|
|
225
|
+
{
|
|
226
|
+
"mode": "NULLABLE",
|
|
227
|
+
"name": "file_name",
|
|
228
|
+
"description": "File name",
|
|
229
|
+
"type": "STRING"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"mode": "NULLABLE",
|
|
233
|
+
"name": "mime_type",
|
|
234
|
+
"description": "Mime Type",
|
|
235
|
+
"type": "STRING"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"mode": "NULLABLE",
|
|
239
|
+
"name": "file_uuid",
|
|
240
|
+
"description": "File UUID",
|
|
241
|
+
"type": "STRING"
|
|
242
|
+
}
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"mode": "NULLABLE",
|
|
247
|
+
"name": "edit_dts",
|
|
248
|
+
"description": "Date/time that the note was edited",
|
|
249
|
+
"type": "DATETIME"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"mode": "NULLABLE",
|
|
253
|
+
"name": "original_note",
|
|
254
|
+
"description": "Note originally written before any edits",
|
|
255
|
+
"type": "STRING"
|
|
256
|
+
}
|
|
257
|
+
]
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"mode": "REPEATED",
|
|
261
|
+
"name": "histories",
|
|
262
|
+
"description": "Array of history records for the task",
|
|
263
|
+
"type": "RECORD",
|
|
264
|
+
"fields": [
|
|
265
|
+
{
|
|
266
|
+
"name": "user",
|
|
267
|
+
"description": "The user that performed the activity",
|
|
268
|
+
"type": "RECORD",
|
|
269
|
+
"fields": [
|
|
270
|
+
{
|
|
271
|
+
"mode": "NULLABLE",
|
|
272
|
+
"name": "user",
|
|
273
|
+
"description": "The user",
|
|
274
|
+
"type": "STRING"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"mode": "NULLABLE",
|
|
278
|
+
"name": "user_icon_url",
|
|
279
|
+
"description": "The user icon URL if available",
|
|
280
|
+
"type": "STRING"
|
|
281
|
+
}
|
|
282
|
+
]
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"mode": "NULLABLE",
|
|
286
|
+
"name": "activity_dts",
|
|
287
|
+
"description": "Date/time that the workflow task history record was created",
|
|
288
|
+
"type": "DATETIME"
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
"mode": "NULLABLE",
|
|
292
|
+
"name": "description",
|
|
293
|
+
"description": "Description of the activity",
|
|
294
|
+
"type": "STRING"
|
|
295
|
+
},
|
|
296
|
+
{
|
|
297
|
+
"mode": "NULLABLE",
|
|
298
|
+
"name": "ip_address",
|
|
299
|
+
"description": "IP Address that originated the activity",
|
|
300
|
+
"type": "STRING"
|
|
301
|
+
}
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"mode": "NULLABLE",
|
|
306
|
+
"name": "related_workflow_task_uuid",
|
|
307
|
+
"description": "Related Workflow Task UUID",
|
|
308
|
+
"type": "STRING"
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"mode": "NULLABLE",
|
|
312
|
+
"name": "dependant_workflow_task_uuid",
|
|
313
|
+
"description": "Dependant Workflow Task UUID (must be completed before this task can be completed)",
|
|
314
|
+
"type": "STRING"
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
"mode": "REPEATED",
|
|
318
|
+
"name": "tags",
|
|
319
|
+
"description": "Tags",
|
|
320
|
+
"type": "RECORD",
|
|
321
|
+
"fields": [{
|
|
322
|
+
"mode": "NULLABLE",
|
|
323
|
+
"name": "value",
|
|
324
|
+
"type": "STRING"
|
|
325
|
+
}]
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"mode": "REPEATED",
|
|
329
|
+
"name": "properties",
|
|
330
|
+
"description": "Properties",
|
|
331
|
+
"type": "RECORD",
|
|
332
|
+
"fields": [
|
|
333
|
+
{
|
|
334
|
+
"mode": "NULLABLE",
|
|
335
|
+
"name": "name",
|
|
336
|
+
"type": "STRING"
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"mode": "NULLABLE",
|
|
340
|
+
"name": "value",
|
|
341
|
+
"type": "STRING"
|
|
342
|
+
}
|
|
343
|
+
]
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"mode": "NULLABLE",
|
|
347
|
+
"name": "expiration_dts",
|
|
348
|
+
"description": "Date/time that the workflow task will expire and be closed. This is set by system generated tasks.",
|
|
349
|
+
"type": "DATETIME"
|
|
350
|
+
},
|
|
351
|
+
{
|
|
352
|
+
"allowed_values": [
|
|
353
|
+
"order_accounts_receivable",
|
|
354
|
+
"order_fraud_review",
|
|
355
|
+
"auto_order_card_update_issue",
|
|
356
|
+
"auto_order_canceled_payment",
|
|
357
|
+
"item_low_stock",
|
|
358
|
+
"item_out_of_stock"
|
|
359
|
+
],
|
|
360
|
+
"mode": "NULLABLE",
|
|
361
|
+
"name": "system_task_type",
|
|
362
|
+
"description": "Constant for the type of system generated task",
|
|
363
|
+
"type": "STRING"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"mode": "NULLABLE",
|
|
367
|
+
"name": "global_task_number",
|
|
368
|
+
"description": "Global task number",
|
|
369
|
+
"type": "INTEGER"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"mode": "NULLABLE",
|
|
373
|
+
"name": "object_task_number",
|
|
374
|
+
"description": "Object specific task number",
|
|
375
|
+
"type": "INTEGER"
|
|
376
|
+
}
|
|
377
|
+
]
|