-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathfields.json
More file actions
1755 lines (1755 loc) · 56.3 KB
/
Copy pathfields.json
File metadata and controls
1755 lines (1755 loc) · 56.3 KB
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
{
"payAmt": {
"cn": "支付金额",
"scope": [
"home-table",
"home-overview",
"item-sku-list",
"item-sku-list-live",
"item-flow-source",
"item-sku-attr",
"item-list",
"macro-monitor",
"interval-analysis"
],
"fmt": "amt",
"status": "verified",
"note": "支付组"
},
"netPaymentAmount": {
"cn": "净支付金额",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "支付组"
},
"uv": {
"cn": "访客数",
"scope": [
"home-table",
"home-overview",
"item-flow-source"
],
"fmt": "int",
"status": "verified",
"note": "支付组"
},
"payByrCnt": {
"cn": "支付买家数",
"scope": [
"home-table",
"home-overview",
"item-sku-list",
"item-sku-list-live",
"item-flow-source",
"item-sku-attr",
"item-list",
"item-profile",
"macro-monitor"
],
"fmt": "int",
"status": "verified",
"note": "支付组 | 2026-08-06 /cc/item/archive/profile.json 客群洞察实测:作为 crowdsType 三个合法值之一(服务端报错原文列出 itmUv,payByrCnt,appSearchUv)。该接口只认单日;实测仅 itmUv 回得出数据,另两个恒返空数组,原因未定。 | 2026-08-06 已用页面截图逐格核对:性别/年龄/省/市/消费层级/淘气值/类目偏好全部一致;new_old 的 Y=新客户、N=老客户;brand_prefer 页面上同样无数值。 | 2026-08-06 空表原因已查明:平台规则「本店商品人群样本量小于 300 人,不统计客群画像」(页面原文)。本接口只认单日,攒不够人数,故该口径只有大流量款才出得来。"
},
"payRate": {
"cn": "支付转化率",
"scope": [
"home-table",
"home-overview",
"item-flow-source",
"item-list",
"macro-monitor"
],
"fmt": "pct",
"status": "verified",
"note": "支付组"
},
"pv": {
"cn": "浏览量",
"scope": [
"home-table",
"home-overview",
"item-flow-source"
],
"fmt": "int",
"status": "verified",
"note": "支付组"
},
"stayTime": {
"cn": "平均停留时长",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "verified",
"note": "支付组"
},
"subPayOrdSubCnt": {
"cn": "支付子订单数",
"scope": [
"home-table",
"home-overview"
],
"fmt": "int",
"status": "verified",
"note": "支付组"
},
"payItmCnt": {
"cn": "支付件数",
"scope": [
"home-table",
"home-overview",
"item-sku-list",
"item-sku-list-live",
"item-sku-attr",
"item-list",
"macro-monitor",
"interval-analysis"
],
"fmt": "int",
"status": "verified",
"note": "支付组"
},
"payPct": {
"cn": "客单价",
"scope": [
"home-table",
"home-overview",
"item-flow-source",
"item-list"
],
"fmt": "amt",
"status": "verified",
"note": "支付组。2026-08-05:item-list(/cc/item/view/top.json) 也返回本字段码,核对后与既有「客单价」口径一致,是同一字段跨命令复用;商品排行指标选择器里另有「件单价」选项,在该接口 41 个字段里没找到对应字段码,未强行映射"
},
"cartByrCnt": {
"cn": "加购人数",
"scope": [
"home-table",
"home-overview",
"item-flow-source"
],
"fmt": "int",
"status": "verified",
"note": "意向组"
},
"cltItmCnt": {
"cn": "商品收藏人数",
"scope": [
"home-table",
"home-overview",
"item-flow-source"
],
"fmt": "int",
"status": "verified",
"note": "意向组"
},
"cartItemCnt": {
"cn": "加购件数(店铺/订单聚合口径)",
"scope": [
"home-table",
"home-overview"
],
"fmt": "int",
"status": "verified",
"note": "意向组。与 SKU 级的 cartCnt 中文名相同但粒度不同:本字段是首页大盘的店铺聚合口径,按中文名反查时别拿它当 SKU 明细"
},
"rePurchasePayAmount": {
"cn": "老客复购金额",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "意向组"
},
"payOldByrCnt": {
"cn": "老客复购人数",
"scope": [
"home-table",
"home-overview"
],
"fmt": "int",
"status": "verified",
"note": "意向组"
},
"hasPurchaseUbyCntRate": {
"cn": "老客复购率",
"scope": [
"home-table",
"home-overview"
],
"fmt": "pct",
"status": "verified",
"note": "意向组"
},
"consultRate": {
"cn": "咨询率",
"scope": [
"home-table",
"home-overview"
],
"fmt": "pct",
"status": "verified",
"note": "意向组"
},
"realPayrealRfdRate": {
"cn": "签收退款率",
"scope": [
"home-table",
"home-overview"
],
"fmt": "pct",
"status": "verified",
"note": "T-3 才出值,两周以上才稳定"
},
"rfdSucAmt": {
"cn": "退款金额(完结时间)",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "履约售后组"
},
"payShopRfdAmt": {
"cn": "退款金额(支付时间)",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "支付时间口径,近7天数值仍在爬升(实测T-6仍未长完),分析禁止用近7天下结论"
},
"payAmtRfdRate": {
"cn": "金额退款率",
"scope": [
"home-table",
"home-overview",
"item-refund-sku",
"item-refund-reason"
],
"fmt": "pct",
"status": "verified",
"note": "支付时间口径,近7天数值仍在爬升(实测T-6仍未长完),分析禁止用近7天下结论"
},
"ordRfdRate": {
"cn": "订单退款率",
"scope": [
"home-table",
"home-overview",
"item-refund-sku"
],
"fmt": "pct",
"status": "verified",
"note": "支付时间口径,近7天数值仍在爬升(实测T-6仍未长完),分析禁止用近7天下结论"
},
"rfdFinshDur": {
"cn": "退款处理时长(天)",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "verified",
"note": "履约售后组"
},
"wwReplyManualAvgTimeLen": {
"cn": "旺旺人工响应时长(秒)",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "verified",
"note": "履约售后组"
},
"slrRespRate": {
"cn": "平台判责率",
"scope": [
"home-table",
"home-overview"
],
"fmt": "pct",
"status": "verified",
"note": "履约售后组"
},
"gotInTime24hRate": {
"cn": "24小时揽收及时率",
"scope": [
"home-table",
"home-overview"
],
"fmt": "pct",
"status": "verified",
"note": "履约售后组"
},
"avgSignTimeHh": {
"cn": "物流到货时长(小时)",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "verified",
"note": "履约售后组"
},
"p4pExpendAmt": {
"cn": "关键词推广费",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "推广组"
},
"cubeAmt": {
"cn": "精准人群推广费",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "推广组"
},
"feedCharge": {
"cn": "智能场景花费",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "推广组"
},
"adStrategyAmt": {
"cn": "全站推广花费",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "推广组"
},
"tkExpendAmt": {
"cn": "淘宝客佣金",
"scope": [
"home-table",
"home-overview"
],
"fmt": "amt",
"status": "verified",
"note": "推广组"
},
"admCostFamtQzt": {
"cn": "admCostFamtQzt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"allContentSupplyScale": {
"cn": "allContentSupplyScale",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"buyAmtRatio": {
"cn": "buyAmtRatio",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"cartCnt": {
"cn": "加购件数(SKU 级)",
"scope": [
"home-table",
"home-overview",
"item-sku-list",
"item-sku-list-live"
],
"fmt": "num",
"status": "verified",
"note": "2026-08-05 单品360 SKU销售详情页表头核对为「加购件数」。与订单聚合口径的 cartItemCnt 中文名相同但粒度不同:本字段是单品某个 SKU 的加购件数"
},
"consultingUv": {
"cn": "consultingUv",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"cstTransRate": {
"cn": "cstTransRate",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"cstUserCnt": {
"cn": "cstUserCnt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"disputeDutyRatio": {
"cn": "disputeDutyRatio",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"followStayTime": {
"cn": "followStayTime",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"gotInTime48hRate": {
"cn": "gotInTime48hRate",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"hasBuyPayGmv": {
"cn": "hasBuyPayGmv",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"hasPurchaseNewUv": {
"cn": "hasPurchaseNewUv",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"hasPurchasedUbyCnt": {
"cn": "hasPurchasedUbyCnt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"interestPortalUv": {
"cn": "interestPortalUv",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"livePayAmt": {
"cn": "livePayAmt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"noBuyPayGmv": {
"cn": "noBuyPayGmv",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"noPurchaseBuyCnt": {
"cn": "noPurchaseBuyCnt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"olderPayAmt": {
"cn": "olderPayAmt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"payOrdCnt": {
"cn": "payOrdCnt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"postTimeLenHour": {
"cn": "postTimeLenHour",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"postVideoCheckCnt": {
"cn": "postVideoCheckCnt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"productCoverage": {
"cn": "productCoverage",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"reVisitAmtRatio": {
"cn": "reVisitAmtRatio",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"releaseItmCnt": {
"cn": "releaseItmCnt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"shopCustomer": {
"cn": "shopCustomer",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"subPayOrdAmt": {
"cn": "subPayOrdAmt",
"scope": [
"home-table",
"home-overview",
"item-list"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译;2026-08-05 item-list(/cc/item/view/top.json) 也实测返回本字段,未进 show,--raw 可见"
},
"sucRefundRate": {
"cn": "sucRefundRate",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"userId": {
"cn": "userId",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"wwGoodCstEvaRate": {
"cn": "wwGoodCstEvaRate",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"zzExpendAmt": {
"cn": "zzExpendAmt",
"scope": [
"home-table",
"home-overview"
],
"fmt": "num",
"status": "candidate",
"note": "中文名未破译"
},
"skuName": {
"cn": "SKU 信息",
"scope": [
"item-sku-list",
"item-sku-list-live",
"item-refund-sku"
],
"fmt": "text",
"status": "verified",
"note": "2026-08-05 页面表头核对"
},
"attrValue": {
"cn": "属性取值",
"scope": [
"item-sku-attr"
],
"fmt": "text",
"status": "candidate",
"note": "attrDetail.json 按 attrName 维度返回的行取值(如 attrName=尺码 时是 XL/2XL 等);网页表头随 attrName 变化不是固定列名,未核实统一中文列名"
},
"payAmtRatio": {
"cn": "支付金额占比",
"scope": [
"item-sku-attr"
],
"fmt": "pct",
"status": "verified",
"note": "2026-08-05 商品360销售分析·属性分析表头核对"
},
"payByrCntRatio": {
"cn": "支付买家数占比",
"scope": [
"item-sku-attr"
],
"fmt": "pct",
"status": "verified",
"note": "2026-08-05 商品360销售分析·属性分析表头核对"
},
"currentStockCnt": {
"cn": "现有库存",
"scope": [
"item-sku-list-live"
],
"fmt": "int",
"status": "candidate",
"note": "2026-08-05 二次纠正:item-sku-list 换成认日期接口(/cc/item/sale/sku/list.json)后不返回本字段(indexCode 加了也被静默丢弃),改经由新增的 --live 开关走回实时接口 /cc/live/v2/item/sale/sku/list.json 才能拿到。实测(真实商品):本字段是裸标量,不像 cartCnt/payAmt 那样包 {value,...};中文名「现有库存」未逐一核对页面表头,仍标 candidate"
},
"sellRate": {
"cn": "售罄率(存疑)",
"scope": [
"item-sku-list-live"
],
"fmt": "rate",
"status": "candidate",
"note": "2026-08-05 二次纠正:同 currentStockCnt,经 --live 开关可拿到,字段为裸标量;疑为售罄率,中文名未核,标 candidate"
},
"stockDays": {
"cn": "库存可售天数(存疑)",
"scope": [
"item-sku-list-live"
],
"fmt": "int",
"status": "candidate",
"note": "2026-08-05 二次纠正:同 currentStockCnt,经 --live 开关可拿到,字段为裸标量;疑为库存可售天数,中文名未核,标 candidate"
},
"rfdReasonName": {
"cn": "退款原因",
"scope": [
"item-refund-reason"
],
"fmt": "text",
"status": "verified",
"note": "2026-08-05 页面实测;算法归因 alg_identify"
},
"itemSucRfdByr": {
"cn": "成功退款买家数",
"scope": [
"item-refund-reason"
],
"fmt": "int",
"status": "candidate",
"note": "口径为退款事件归属,不是退货率"
},
"itemSkuSucRfdByr": {
"cn": "该 SKU 成功退款买家数",
"scope": [
"item-refund-sku"
],
"fmt": "int",
"status": "candidate",
"note": "口径为退款事件归属,不是退货率"
},
"itemPropRfdSucByr": {
"cn": "该属性成功退款买家数",
"scope": [
"item-refund-prop"
],
"fmt": "int",
"status": "candidate",
"note": "口径为退款事件归属,不是退货率"
},
"itemSucRfdAmt": {
"cn": "该原因成功退款金额(存疑)",
"scope": [
"item-refund-reason"
],
"fmt": "amt",
"status": "candidate",
"note": "中文名未核(页面表头未核对);口径为退款事件归属,不是退货率"
},
"itemSkuRfdAmt": {
"cn": "该 SKU 退款金额(存疑)",
"scope": [
"item-refund-sku"
],
"fmt": "amt",
"status": "candidate",
"note": "2026-08-05 实测真实字段名是 itemSkuRfdAmt(不是 itemSkuSucRfdAmt,那个名字不存在);中文名未核"
},
"propName": {
"cn": "属性名(存疑)",
"scope": [
"item-refund-prop"
],
"fmt": "text",
"status": "candidate",
"note": "2026-08-05 实测返回值为属性名(如「尺码」),中文表头未核;属性的具体值在 valueName"
},
"valueName": {
"cn": "属性值(存疑)",
"scope": [
"item-refund-prop"
],
"fmt": "text",
"status": "candidate",
"note": "2026-08-05 实测返回 2XL/XL/3XL/L 等属性值,中文表头未核;缺这列整张表全是「尺码」无法解读"
},
"itemPropRfdSucAmt": {
"cn": "该属性成功退款金额(存疑)",
"scope": [
"item-refund-prop"
],
"fmt": "amt",
"status": "candidate",
"note": "中文名未核(页面表头未核对);口径为退款事件归属,不是退货率"
},
"itmUv": {
"cn": "商品访客数",
"scope": [
"item-list",
"item-profile",
"macro-monitor"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;中文名按 itm=item/Uv=访客数 命名规律推断,且与 coreIndex.json 里 uv 字段配对的对比字段 itmUvCmpt 用法一致,但未在商品排行指标选择器逐一点选核对,标 candidate | 2026-08-06 /cc/item/archive/profile.json 客群洞察实测:作为 crowdsType 三个合法值之一(服务端报错原文列出 itmUv,payByrCnt,appSearchUv)。该接口只认单日;实测仅 itmUv 回得出数据,另两个恒返空数组,原因未定。 | 2026-08-06 已用页面截图逐格核对:性别/年龄/省/市/消费层级/淘气值/类目偏好全部一致;new_old 的 Y=新客户、N=老客户;brand_prefer 页面上同样无数值。"
},
"itemCartCnt": {
"cn": "商品加购件数",
"scope": [
"item-list",
"macro-monitor"
],
"fmt": "int",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;中文名参考 docs/plans/2026-08-05-商品板块-全量清单.md 宏观监控页表头([表]来源)的同名字段码记录,未在商品排行页面本身核对,标 candidate。注意与 SKU 级 cartCnt、店铺聚合口径 cartItemCnt 是三个不同字段,别混用"
},
"itemCltByrCnt": {
"cn": "商品收藏人数",
"scope": [
"item-list",
"macro-monitor"
],
"fmt": "int",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;来源同 itemCartCnt(宏观监控页表头[表]),未在商品排行页面核对,标 candidate"
},
"stayTimeAvg": {
"cn": "平均停留时长",
"scope": [
"item-list"
],
"fmt": "num",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;与同一行的 itmStayTime 数值完全相同(疑似同一指标两个字段名),item-list 的 show 用这个展示;中文名按命名规律 + 单品360销售分析核心概况项推断,未逐一核对,标 candidate"
},
"itmStayTime": {
"cn": "平均停留时长(疑似与 stayTimeAvg 同一指标)",
"scope": [],
"fmt": "num",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测:本字段与 stayTimeAvg 数值完全相同;item-list 的 show 只用 stayTimeAvg 展示,本字段 scope 留空,--raw 可见"
},
"itmBounceRate": {
"cn": "商品详情页跳出率",
"scope": [
"item-list"
],
"fmt": "pct",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;中文名按命名规律 + 单品360销售分析核心概况项推断,未逐一核对,标 candidate"
},
"seGuideUv": {
"cn": "搜索引导访客数",
"scope": [
"item-list"
],
"fmt": "int",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;字段名 se=搜索/Guide=引导/Uv=访客数,与商品排行指标选择器「搜索引导访客数」选项文字吻合,但未逐一点选核对映射,标 candidate"
},
"seGuidePayByrCnt": {
"cn": "搜索引导支付买家数",
"scope": [
"item-list"
],
"fmt": "int",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;命名规律同 seGuideUv,未逐一核对,标 candidate"
},
"seGuidePayRate": {
"cn": "搜索引导支付转化率",
"scope": [
"item-list"
],
"fmt": "pct",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;命名规律同 seGuideUv,未逐一核对,标 candidate"
},
"sucRefundAmt": {
"cn": "成功退款金额",
"scope": [
"item-list"
],
"fmt": "amt",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;字段名直译对应指标选择器「成功退款金额」,但本仓库多次踩过「字面名不等于真实字段」的坑(如 itemSkuRfdAmt vs 不存在的 itemSkuSucRfdAmt),未做页面级逐一核对前不升级为 verified"
},
"uvAvgValue": {
"cn": "访客平均价值",
"scope": [
"item-list"
],
"fmt": "num",
"status": "candidate",
"note": "2026-08-05 /cc/item/view/top.json 实测返回;字段名与商品排行指标选择器「访客平均价值」吻合,未逐一核对,标 candidate"
},
"appSearchUv": {
"cn": "搜索人群访客数",
"scope": [
"item-profile"
],
"fmt": "int",
"status": "candidate",
"note": "2026-08-06 /cc/item/archive/profile.json 客群洞察实测:作为 crowdsType 三个合法值之一(服务端报错原文列出 itmUv,payByrCnt,appSearchUv)。该接口只认单日;实测仅 itmUv 回得出数据,另两个恒返空数组,原因未定。 中文名按 app+Search+Uv 构词推断,未在页面核对,标 candidate。 | 2026-08-06 已用页面截图逐格核对:性别/年龄/省/市/消费层级/淘气值/类目偏好全部一致;new_old 的 Y=新客户、N=老客户;brand_prefer 页面上同样无数值。 | 2026-08-06 空表原因已查明:平台规则「本店商品人群样本量小于 300 人,不统计客群画像」(页面原文)。本接口只认单日,攒不够人数,故该口径只有大流量款才出得来。"
},
"customerCnt": {
"cn": "预测流失人气",
"scope": [
"item-loss-risk"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-06 /mc/item/customers/lossrisk.json 实测,并与用户提供的「客群洞察 → 客群细分 → 潜在流失风险」页面截图逐行核对一致(29/20/18/15/13)。含义是「本商品的客户预测会流向该商品的人数」。多日区间时服务端会静默丢掉这一列,只有单日有值。"
},
"itemExposeUv": {
"cn": "曝光人数",
"scope": [
"item-detail"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-06 /cc/item/detail/analysis/overview.json + list.json 实测(byrType=all,该参数从页面录得、猜不出来)。已与页面「详情分析」核心概况逐格核对一致。每个指标自带 rivalAvg(同行均值)/rivalGood(同行优秀),是真同行对比,与 item-360 的 *Cmpt 不是一回事。"
},
"itemInteractUv": {
"cn": "互动人数",
"scope": [
"item-detail"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-06 /cc/item/detail/analysis/overview.json + list.json 实测(byrType=all,该参数从页面录得、猜不出来)。已与页面「详情分析」核心概况逐格核对一致。每个指标自带 rivalAvg(同行均值)/rivalGood(同行优秀),是真同行对比,与 item-360 的 *Cmpt 不是一回事。"
},
"itemCartUv": {
"cn": "加购人数",
"scope": [
"item-detail"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-06 /cc/item/detail/analysis/overview.json + list.json 实测(byrType=all,该参数从页面录得、猜不出来)。已与页面「详情分析」核心概况逐格核对一致。每个指标自带 rivalAvg(同行均值)/rivalGood(同行优秀),是真同行对比,与 item-360 的 *Cmpt 不是一回事。"
},
"itemCollectUv": {
"cn": "收藏人数",
"scope": [
"item-detail"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-06 /cc/item/detail/analysis/overview.json + list.json 实测(byrType=all,该参数从页面录得、猜不出来)。已与页面「详情分析」核心概况逐格核对一致。每个指标自带 rivalAvg(同行均值)/rivalGood(同行优秀),是真同行对比,与 item-360 的 *Cmpt 不是一回事。"
},
"itemOrderUv": {
"cn": "下单人数",
"scope": [
"item-detail"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-06 /cc/item/detail/analysis/overview.json + list.json 实测(byrType=all,该参数从页面录得、猜不出来)。已与页面「详情分析」核心概况逐格核对一致。每个指标自带 rivalAvg(同行均值)/rivalGood(同行优秀),是真同行对比,与 item-360 的 *Cmpt 不是一回事。"
},
"itemPayUv": {
"cn": "支付人数",
"scope": [
"item-detail"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-06 /cc/item/detail/analysis/overview.json + list.json 实测(byrType=all,该参数从页面录得、猜不出来)。已与页面「详情分析」核心概况逐格核对一致。每个指标自带 rivalAvg(同行均值)/rivalGood(同行优秀),是真同行对比,与 item-360 的 *Cmpt 不是一回事。"
},
"itemLossUv": {
"cn": "跳失人数",
"scope": [
"item-detail"
],
"fmt": "int",
"status": "verified",
"note": "2026-08-06 /cc/item/detail/analysis/overview.json + list.json 实测(byrType=all,该参数从页面录得、猜不出来)。已与页面「详情分析」核心概况逐格核对一致。每个指标自带 rivalAvg(同行均值)/rivalGood(同行优秀),是真同行对比,与 item-360 的 *Cmpt 不是一回事。"
},
"itemLossRate": {
"cn": "跳失率",
"scope": [
"item-detail"
],
"fmt": "rate",
"status": "verified",
"note": "2026-08-06 /cc/item/detail/analysis/overview.json + list.json 实测(byrType=all,该参数从页面录得、猜不出来)。已与页面「详情分析」核心概况逐格核对一致。每个指标自带 rivalAvg(同行均值)/rivalGood(同行优秀),是真同行对比,与 item-360 的 *Cmpt 不是一回事。"
},
"itemAvgStayTime": {
"cn": "平均停留时长",
"scope": [
"item-detail"
],
"fmt": "float",
"status": "verified",