-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnetsuite-api2.json
5155 lines (5155 loc) · 194 KB
/
netsuite-api2.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"utilGlobalObjectMembers": [{
"type": "function",
"description": "Member Of: util undefined",
"snippet": "each(${1:iterable},${2:callback})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util undefined",
"snippet": "extend(${1:receiver},${2:contributor})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Determines if a variable refers to an instance of Object.prototype (aka \"Plain Object\" aka {})",
"snippet": "isObject(${1:obj})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Determines if a variable refers to a Function",
"snippet": "isFunction(${1:obj})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Determines if a variable refers to an Array",
"snippet": "isArray(${1:obj})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Determines if a variable refers to a boolean",
"snippet": "isBoolean(${1:obj})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Determines if a variable refers to a string",
"snippet": "isString(${1:obj})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Determines if a variable refers to a number",
"snippet": "isNumber(${1:obj})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Determines if a variable refers to a Date",
"snippet": "isDate(${1:obj})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Determines if a variable refers to a RegExp",
"snippet": "isRegExp(${1:obj})",
"leftLabel": "Some object",
"memberOf": "util"
}, {
"type": "function",
"description": "Member Of: util Remove leading and trailing whitespace from a string",
"snippet": "trim(${1:str})",
"leftLabel": "void",
"memberOf": "util"
}],
"logGlobalObjectMembers": [{
"type": "namespace",
"description": "Member Of: SuiteScript log global object",
"snippet": "log()",
"leftLabel": "void",
"memberOf": ""
}, {
"type": "function",
"description": "Member Of: log Log a debug level message",
"snippet": "debug({title:${1:title},details:${2:details}})",
"leftLabel": "void",
"memberOf": "log"
}, {
"type": "function",
"description": "Member Of: log Log an audit level message",
"snippet": "audit({title:${1:title},details:${2:details}})",
"leftLabel": "void",
"memberOf": "log"
}, {
"type": "function",
"description": "Member Of: log Log an error level message",
"snippet": "error({title:${1:title},details:${2:details}})",
"leftLabel": "void",
"memberOf": "log"
}, {
"type": "function",
"description": "Member Of: log Log an emergency level message",
"snippet": "emergency({title:${1:title},details:${2:details}})",
"leftLabel": "void",
"memberOf": "log"
}],
"userEventTypeEnum": [{
"type": "constant",
"snippet": "APPROVE",
"leftLabel": "",
"description": "APPROVE event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "CANCEL",
"leftLabel": "",
"description": "CANCEL event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "CHANGEPASSWORD",
"leftLabel": "",
"description": "CHANGEPASSWORD event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "COPY",
"leftLabel": "",
"description": "COPY event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "CREATE",
"leftLabel": "",
"description": "CREATE event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "DELETE",
"leftLabel": "",
"description": "DELETE event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "DROPSHIP",
"leftLabel": "",
"description": "DROPSHIP event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "EDIT",
"leftLabel": "",
"description": "EDIT event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "EDITFORECAST",
"leftLabel": "",
"description": "EDITFORECAST event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "EMAIL",
"leftLabel": "",
"description": "EMAIL event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "MARKCOMPLETE",
"leftLabel": "",
"description": "MARKCOMPLETE event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "ORDERITEMS",
"leftLabel": "",
"description": "ORDERITEMS event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "PACK",
"leftLabel": "",
"description": "PACK event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "PAYBILLS",
"leftLabel": "",
"description": "PAYBILLS event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "PRINT",
"leftLabel": "",
"description": "PRINT event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "QUICKVIEW",
"leftLabel": "",
"description": "QUICKVIEW event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "RESASSIGN",
"leftLabel": "",
"description": "RESASSIGN event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "REJECT",
"leftLabel": "",
"description": "REJECT event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "SHIP",
"leftLabel": "",
"description": "SHIP event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "SPECIALORDER",
"leftLabel": "",
"description": "SPECIALORDER event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "TRANSFORM",
"leftLabel": "",
"description": "TRANSFORM event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "VIEW",
"leftLabel": "",
"description": "VIEW event type",
"memberOf": ""
}, {
"type": "constant",
"snippet": "XEDIT",
"leftLabel": "",
"description": "XEDIT event type",
"memberOf": ""
}],
"recordTypeEnums": [{
"type": "constant",
"snippet": "ACCOUNT",
"leftLabel": "",
"description": "ACCOUNT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ACCOUNTING_BOOK",
"leftLabel": "",
"description": "ACCOUNTING_BOOK record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ACCOUNTING_CONTEXT",
"leftLabel": "",
"description": "ACCOUNTING_CONTEXT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ACCOUNTING_PERIOD",
"leftLabel": "",
"description": "ACCOUNTING_PERIOD record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ADV_INTER_COMPANY_JOURNAL_ENTRY",
"leftLabel": "",
"description": "ADV_INTER_COMPANY_JOURNAL_ENTRY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ALLOCATION_SCHEDULE",
"leftLabel": "",
"description": "ALLOCATION_SCHEDULE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "AMORTIZATION_SCHEDULE",
"leftLabel": "",
"description": "AMORTIZATION_SCHEDULE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "AMORTIZATION_TEMPLATE",
"leftLabel": "",
"description": "AMORTIZATION_TEMPLATE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ASSEMBLY_BUILD",
"leftLabel": "",
"description": "ASSEMBLY_BUILD record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ASSEMBLY_ITEM",
"leftLabel": "",
"description": "ASSEMBLY_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ASSEMBLY_UNBUILD",
"leftLabel": "",
"description": "ASSEMBLY_UNBUILD record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BILLING_ACCOUNT",
"leftLabel": "",
"description": "BILLING_ACCOUNT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BILLING_CLASS",
"leftLabel": "",
"description": "BILLING_CLASS record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BILLING_RATE_CARD",
"leftLabel": "",
"description": "BILLING_RATE_CARD record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BILLING_REVENUE_EVENT",
"leftLabel": "",
"description": "BILLING_REVENUE_EVENT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BILLING_SCHEDULE",
"leftLabel": "",
"description": "BILLING_SCHEDULE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BIN",
"leftLabel": "",
"description": "BIN record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BIN_TRANSFER",
"leftLabel": "",
"description": "BIN_TRANSFER record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BIN_WORKSHEET",
"leftLabel": "",
"description": "BIN_WORKSHEET record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BLANKET_PURCHASE_ORDER",
"leftLabel": "",
"description": "BLANKET_PURCHASE_ORDER record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BOM",
"leftLabel": "",
"description": "BOM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BOM_REVISION",
"leftLabel": "",
"description": "BOM_REVISION record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "BUNDLE_INSTALLATION_SCRIPT",
"leftLabel": "",
"description": "BUNDLE_INSTALLATION_SCRIPT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CALENDAR_EVENT",
"leftLabel": "",
"description": "CALENDAR_EVENT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CAMPAIGN",
"leftLabel": "",
"description": "CAMPAIGN record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CAMPAIGN_RESPONSE",
"leftLabel": "",
"description": "CAMPAIGN_RESPONSE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CAMPAIGN_TEMPLATE",
"leftLabel": "",
"description": "CAMPAIGN_TEMPLATE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CASH_REFUND",
"leftLabel": "",
"description": "CASH_REFUND record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CASH_SALE",
"leftLabel": "",
"description": "CASH_SALE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CHARGE",
"leftLabel": "",
"description": "CHARGE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CHARGE_RULE",
"leftLabel": "",
"description": "CHARGE_RULE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CHECK",
"leftLabel": "",
"description": "CHECK record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CLASSIFICATION",
"leftLabel": "",
"description": "CLASSIFICATION record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CLIENT_SCRIPT",
"leftLabel": "",
"description": "CLIENT_SCRIPT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "COMMERCE_CATEGORY",
"leftLabel": "",
"description": "COMMERCE_CATEGORY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "COMPETITOR",
"leftLabel": "",
"description": "COMPETITOR record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CONSOLIDATED_EXCHANGE_RATE",
"leftLabel": "",
"description": "CONSOLIDATED_EXCHANGE_RATE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CONTACT",
"leftLabel": "",
"description": "CONTACT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CONTACT_CATEGORY",
"leftLabel": "",
"description": "CONTACT_CATEGORY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CONTACT_ROLE",
"leftLabel": "",
"description": "CONTACT_ROLE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "COST_CATEGORY",
"leftLabel": "",
"description": "COST_CATEGORY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "COUPON_CODE",
"leftLabel": "",
"description": "COUPON_CODE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CREDIT_CARD_CHARGE",
"leftLabel": "",
"description": "CREDIT_CARD_CHARGE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CREDIT_CARD_REFUND",
"leftLabel": "",
"description": "CREDIT_CARD_REFUND record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CREDIT_MEMO",
"leftLabel": "",
"description": "CREDIT_MEMO record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CURRENCY",
"leftLabel": "",
"description": "CURRENCY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOMER",
"leftLabel": "",
"description": "CUSTOMER record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOMER_CATEGORY",
"leftLabel": "",
"description": "CUSTOMER_CATEGORY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOMER_DEPOSIT",
"leftLabel": "",
"description": "CUSTOMER_DEPOSIT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOMER_MESSAGE",
"leftLabel": "",
"description": "CUSTOMER_MESSAGE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOMER_PAYMENT",
"leftLabel": "",
"description": "CUSTOMER_PAYMENT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOMER_PAYMENT_AUTHORIZATION",
"leftLabel": "",
"description": "CUSTOMER_PAYMENT_AUTHORIZATION record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOMER_REFUND",
"leftLabel": "",
"description": "CUSTOMER_REFUND record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOMER_STATUS",
"leftLabel": "",
"description": "CUSTOMER_STATUS record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOM_RECORD",
"leftLabel": "",
"description": "CUSTOM_RECORD record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "CUSTOM_TRANSACTION",
"leftLabel": "",
"description": "CUSTOM_TRANSACTION record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "DEPARTMENT",
"leftLabel": "",
"description": "DEPARTMENT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "DEPOSIT",
"leftLabel": "",
"description": "DEPOSIT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "DEPOSIT_APPLICATION",
"leftLabel": "",
"description": "DEPOSIT_APPLICATION record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "DESCRIPTION_ITEM",
"leftLabel": "",
"description": "DESCRIPTION_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "DISCOUNT_ITEM",
"leftLabel": "",
"description": "DISCOUNT_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "DOWNLOAD_ITEM",
"leftLabel": "",
"description": "DOWNLOAD_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "EMAIL_TEMPLATE",
"leftLabel": "",
"description": "EMAIL_TEMPLATE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "EMPLOYEE",
"leftLabel": "",
"description": "EMPLOYEE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ENTITY_ACCOUNT_MAPPING",
"leftLabel": "",
"description": "ENTITY_ACCOUNT_MAPPING record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ESTIMATE",
"leftLabel": "",
"description": "ESTIMATE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "EXPENSE_CATEGORY",
"leftLabel": "",
"description": "EXPENSE_CATEGORY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "EXPENSE_REPORT",
"leftLabel": "",
"description": "EXPENSE_REPORT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "FAIR_VALUE_PRICE",
"leftLabel": "",
"description": "FAIR_VALUE_PRICE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "FIXED_AMOUNT_PROJECT_REVENUE_RULE",
"leftLabel": "",
"description": "FIXED_AMOUNT_PROJECT_REVENUE_RULE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "FOLDER",
"leftLabel": "",
"description": "FOLDER record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "FULFILLMENT_REQUEST",
"leftLabel": "",
"description": "FULFILLMENT_REQUEST record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "GENERIC_RESOURCE",
"leftLabel": "",
"description": "GENERIC_RESOURCE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "GIFT_CERTIFICATE",
"leftLabel": "",
"description": "GIFT_CERTIFICATE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "GIFT_CERTIFICATE_ITEM",
"leftLabel": "",
"description": "GIFT_CERTIFICATE_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "GLOBAL_ACCOUNT_MAPPING",
"leftLabel": "",
"description": "GLOBAL_ACCOUNT_MAPPING record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INBOUND_SHIPMENT",
"leftLabel": "",
"description": "INBOUND_SHIPMENT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INTERCOMP_ALLOCATION_SCHEDULE",
"leftLabel": "",
"description": "INTERCOMP_ALLOCATION_SCHEDULE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INTER_COMPANY_JOURNAL_ENTRY",
"leftLabel": "",
"description": "INTER_COMPANY_JOURNAL_ENTRY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INTER_COMPANY_TRANSFER_ORDER",
"leftLabel": "",
"description": "INTER_COMPANY_TRANSFER_ORDER record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVENTORY_ADJUSTMENT",
"leftLabel": "",
"description": "INVENTORY_ADJUSTMENT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVENTORY_COST_REVALUATION",
"leftLabel": "",
"description": "INVENTORY_COST_REVALUATION record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVENTORY_COUNT",
"leftLabel": "",
"description": "INVENTORY_COUNT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVENTORY_DETAIL",
"leftLabel": "",
"description": "INVENTORY_DETAIL record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVENTORY_ITEM",
"leftLabel": "",
"description": "INVENTORY_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVENTORY_NUMBER",
"leftLabel": "",
"description": "INVENTORY_NUMBER record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVENTORY_STATUS",
"leftLabel": "",
"description": "INVENTORY_STATUS record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVENTORY_TRANSFER",
"leftLabel": "",
"description": "INVENTORY_TRANSFER record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "INVOICE",
"leftLabel": "",
"description": "INVOICE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ISSUE",
"leftLabel": "",
"description": "ISSUE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ITEM_ACCOUNT_MAPPING",
"leftLabel": "",
"description": "ITEM_ACCOUNT_MAPPING record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ITEM_DEMAND_PLAN",
"leftLabel": "",
"description": "ITEM_DEMAND_PLAN record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ITEM_FULFILLMENT",
"leftLabel": "",
"description": "ITEM_FULFILLMENT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ITEM_GROUP",
"leftLabel": "",
"description": "ITEM_GROUP record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ITEM_RECEIPT",
"leftLabel": "",
"description": "ITEM_RECEIPT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ITEM_REVISION",
"leftLabel": "",
"description": "ITEM_REVISION record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ITEM_SUPPLY_PLAN",
"leftLabel": "",
"description": "ITEM_SUPPLY_PLAN record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "JOB",
"leftLabel": "",
"description": "JOB record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "JOB_STATUS",
"leftLabel": "",
"description": "JOB_STATUS record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "JOB_TYPE",
"leftLabel": "",
"description": "JOB_TYPE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "JOURNAL_ENTRY",
"leftLabel": "",
"description": "JOURNAL_ENTRY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "KIT_ITEM",
"leftLabel": "",
"description": "KIT_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "LABOR_BASED_PROJECT_REVENUE_RULE",
"leftLabel": "",
"description": "LABOR_BASED_PROJECT_REVENUE_RULE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "LEAD",
"leftLabel": "",
"description": "LEAD record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "LOCATION",
"leftLabel": "",
"description": "LOCATION record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "LOT_NUMBERED_ASSEMBLY_ITEM",
"leftLabel": "",
"description": "LOT_NUMBERED_ASSEMBLY_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "LOT_NUMBERED_INVENTORY_ITEM",
"leftLabel": "",
"description": "LOT_NUMBERED_INVENTORY_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "MANUFACTURING_COST_TEMPLATE",
"leftLabel": "",
"description": "MANUFACTURING_COST_TEMPLATE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "MANUFACTURING_OPERATION_TASK",
"leftLabel": "",
"description": "MANUFACTURING_OPERATION_TASK record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "MANUFACTURING_ROUTING",
"leftLabel": "",
"description": "MANUFACTURING_ROUTING record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "MAP_REDUCE_SCRIPT",
"leftLabel": "",
"description": "MAP_REDUCE_SCRIPT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "MARKUP_ITEM",
"leftLabel": "",
"description": "MARKUP_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "MASSUPDATE_SCRIPT",
"leftLabel": "",
"description": "MASSUPDATE_SCRIPT record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "MESSAGE",
"leftLabel": "",
"description": "MESSAGE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "MFG_PLANNED_TIME",
"leftLabel": "",
"description": "MFG_PLANNED_TIME record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "NEXUS",
"leftLabel": "",
"description": "NEXUS record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "NON_INVENTORY_ITEM",
"leftLabel": "",
"description": "NON_INVENTORY_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "NOTE",
"leftLabel": "",
"description": "NOTE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "NOTE_TYPE",
"leftLabel": "",
"description": "NOTE_TYPE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "OPPORTUNITY",
"leftLabel": "",
"description": "OPPORTUNITY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "ORDER_SCHEDULE",
"leftLabel": "",
"description": "ORDER_SCHEDULE record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "OTHER_CHARGE_ITEM",
"leftLabel": "",
"description": "OTHER_CHARGE_ITEM record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "OTHER_NAME",
"leftLabel": "",
"description": "OTHER_NAME record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "OTHER_NAME_CATEGORY",
"leftLabel": "",
"description": "OTHER_NAME_CATEGORY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "PARTNER",
"leftLabel": "",
"description": "PARTNER record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "PARTNER_CATEGORY",
"leftLabel": "",
"description": "PARTNER_CATEGORY record type",
"memberOf": "N/record"
}, {
"type": "constant",
"snippet": "PAYCHECK",
"leftLabel": "",
"description": "PAYCHECK record type",
"memberOf": "N/record"