summaryrefslogtreecommitdiff
path: root/data/en_us/ocr/2019-12-30/api-docs.php
blob: bc47eb34d3a040a54c37718a19fa0d77f9eed49a (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
<?php return [
    'version' => '1.0',
    'info' => [
        'style' => 'RPC',
        'product' => 'ocr',
        'version' => '2019-12-30',
    ],
    'directories' => [
        [
            'id' => 66262,
            'title' => null,
            'type' => 'directory',
            'children' => [
                'GetAsyncJobResult',
            ],
        ],
        [
            'id' => 66264,
            'title' => null,
            'type' => 'directory',
            'children' => [
                'RecognizeBankCard',
                'RecognizeBusinessLicense',
                'RecognizeCharacter',
                'RecognizeDriverLicense',
                'RecognizeDrivingLicense',
                'RecognizeIdentityCard',
                'RecognizeLicensePlate',
                'RecognizeQrCode',
                'RecognizeTable',
                'RecognizeTaxiInvoice',
                'RecognizeTrainTicket',
                'RecognizeVATInvoice',
                'RecognizeVINCode',
            ],
        ],
        [
            'id' => 0,
            'title' => '其它',
            'type' => 'directory',
            'children' => [
                'RecognizePdf',
                'RecognizeTicketInvoice',
                'RecognizeQuotaInvoice',
                'RecognizeVideoCharacter',
            ],
        ],
    ],
    'components' => [
        'schemas' => [],
    ],
    'apis' => [
        'GetAsyncJobResult' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'get',
            ],
            'parameters' => [
                [
                    'name' => 'JobId',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'type' => 'string',
                        'required' => true,
                        'example' => 'E75FE679-0303-4DD1-8252-1143B4FA8A27',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'type' => 'object',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'type' => 'string',
                                'example' => 'A1F44EC4-118D-4A03-B213-F908F36F7DAA',
                            ],
                            'Data' => [
                                'description' => '',
                                'type' => 'object',
                                'properties' => [
                                    'Status' => [
                                        'description' => '',
                                        'type' => 'string',
                                        'example' => 'PROCESS_SUCCESS',
                                    ],
                                    'ErrorMessage' => [
                                        'description' => '',
                                        'type' => 'string',
                                        'example' => 'paramsIllegal',
                                    ],
                                    'Result' => [
                                        'description' => '',
                                        'type' => 'string',
                                        'example' => '',
                                    ],
                                    'ErrorCode' => [
                                        'description' => '',
                                        'type' => 'string',
                                        'example' => 'InvalidParameter',
                                    ],
                                    'JobId' => [
                                        'description' => '',
                                        'type' => 'string',
                                        'example' => '49E2CC28-ED1D-4CC5-854D-7D0AE2B20976',
                                    ],
                                ],
                            ],
                        ],
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"A1F44EC4-118D-4A03-B213-F908F36F7DAA\\",\\n  \\"Data\\": {\\n    \\"Status\\": \\"PROCESS_SUCCESS\\",\\n    \\"ErrorMessage\\": \\"paramsIllegal\\",\\n    \\"Result\\": \\"{\\\\\\\\\\\\\\"Content\\\\\\\\\\\\\\":\\\\\\\\\\\\\\"<div > <h2 > 2017 年 3 月 40 多家陶企上榜失信被执行人名单 </h2><div > 1 月 7 日,陶卫网记者根据最高人民法院及各地法院发布的失信被执行人信息统计,2019 年 12 月全国各地有 112 家陶瓷企业被列入“失信被执行人”名单,名单涉及 21 个省(市)。此次名单中,广东省的失信陶企多达 28 家。 </div><div > 据统计,这些“失信被执行人”的上榜原因主要为债务纠纷,欠款不还,大部分为拖欠供应商货款、工资、员工赔偿、银行贷款以及融资租赁租金等,也有涉及运输、燃气等费用,小部分企业涉及承担债务连带清偿责任。 </div><table border=1>    <tr><td > 公司名称 </td><td > 最新失信发布时间 </td><td > 累计失信次数 </td>    </tr>    <tr><td > 潮州市澳士通陶瓷实业有限公司 </td><td > 3 月 15 日 </td><td > 1 次 </td>    </tr>    <tr><td > 肇庆市德圣陶瓷有限公司 </td><td > 3 月 14 日 </td><td > 6 次 </td>    </tr>    <tr><td > 清远市港龙陶瓷有限公司 </td><td > 3 月 10 日 </td><td > 28 次 </td>    </tr>    <tr><td > 广西金沙江陶瓷有限公司 </td><td > 3 月 14 日 </td><td > 3 次 </td>    </tr>    <tr><td > 宜丰县凯扬陶瓷发展有限公司 </td><td > 3 月 29 日 </td><td > 11 次 </td>    </tr>    <tr><td > 江西领先精工陶瓷发展有限公司 </td><td > 3 月 29 日 </td><td > 23 次 </td>    </tr>    <tr><td > 高安弘建陶瓷有限公司 </td><td > 3 月 28 日 </td><td > 5 次 </td>    </tr></table>\\\\\\\\\\\\\\"}\\",\\n    \\"ErrorCode\\": \\"InvalidParameter\\",\\n    \\"JobId\\": \\"49E2CC28-ED1D-4CC5-854D-7D0AE2B20976\\"\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RequestId>A1F44EC4-118D-4A03-B213-F908F36F7DAA</RequestId>\\n<Data>\\n    <Status>PROCESS_SUCCESS</Status>\\n    <ErrorMessage>paramsIllegal</ErrorMessage>\\n    <Result>{\\\\\\"Content\\\\\\":\\\\\\"&lt;div &gt; &lt;h2 &gt; 2017 年 3 月 40 多家陶企上榜失信被执行人名单 &lt;/h2&gt;&lt;div &gt; 1 月 7 日,陶卫网记者根据最高人民法院及各地法院发布的失信被执行人信息统计,2019 年 12 月全国各地有 112 家陶瓷企业被列入“失信被执行人”名单,名单涉及 21 个省(市)。此次名单中,广东省的失信陶企多达 28 家。 &lt;/div&gt;&lt;div &gt; 据统计,这些“失信被执行人”的上榜原因主要为债务纠纷,欠款不还,大部分为拖欠供应商货款、工资、员工赔偿、银行贷款以及融资租赁租金等,也有涉及运输、燃气等费用,小部分企业涉及承担债务连带清偿责任。 &lt;/div&gt;&lt;table border=1&gt;    &lt;tr&gt;&lt;td &gt; 公司名称 &lt;/td&gt;&lt;td &gt; 最新失信发布时间 &lt;/td&gt;&lt;td &gt; 累计失信次数 &lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td &gt; 潮州市澳士通陶瓷实业有限公司 &lt;/td&gt;&lt;td &gt; 3 月 15 日 &lt;/td&gt;&lt;td &gt; 1 次 &lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td &gt; 肇庆市德圣陶瓷有限公司 &lt;/td&gt;&lt;td &gt; 3 月 14 日 &lt;/td&gt;&lt;td &gt; 6 次 &lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td &gt; 清远市港龙陶瓷有限公司 &lt;/td&gt;&lt;td &gt; 3 月 10 日 &lt;/td&gt;&lt;td &gt; 28 次 &lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td &gt; 广西金沙江陶瓷有限公司 &lt;/td&gt;&lt;td &gt; 3 月 14 日 &lt;/td&gt;&lt;td &gt; 3 次 &lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td &gt; 宜丰县凯扬陶瓷发展有限公司 &lt;/td&gt;&lt;td &gt; 3 月 29 日 &lt;/td&gt;&lt;td &gt; 11 次 &lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td &gt; 江西领先精工陶瓷发展有限公司 &lt;/td&gt;&lt;td &gt; 3 月 29 日 &lt;/td&gt;&lt;td &gt; 23 次 &lt;/td&gt;    &lt;/tr&gt;    &lt;tr&gt;&lt;td &gt; 高安弘建陶瓷有限公司 &lt;/td&gt;&lt;td &gt; 3 月 28 日 &lt;/td&gt;&lt;td &gt; 5 次 &lt;/td&gt;    &lt;/tr&gt;&lt;/table&gt;\\\\\\"}</Result>\\n    <ErrorCode>InvalidParameter</ErrorCode>\\n    <JobId>49E2CC28-ED1D-4CC5-854D-7D0AE2B20976</JobId>\\n</Data>","errorExample":""}]',
            'requestParamsDescription' => ' ',
        ],
        'RecognizeBankCard' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBankCard/yhk3.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'D9C7521-0367-42EE-9646-FD066CCADB26',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'CardNumber' => [
                                        'description' => '',
                                        'example' => '6212262315007683105',
                                        'type' => 'string',
                                    ],
                                    'ValidDate' => [
                                        'description' => '',
                                        'example' => '07/26',
                                        'type' => 'string',
                                    ],
                                    'BankName' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'CardType' => [
                                        'type' => 'string',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D9C7521-0367-42EE-9646-FD066CCADB26\\",\\n  \\"Data\\": {\\n    \\"CardNumber\\": \\"6212262315007683105\\",\\n    \\"ValidDate\\": \\"07/26\\",\\n    \\"BankName\\": \\"中国工商银行\\",\\n    \\"CardType\\": \\"CC\\"\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeBankCardResponse>\\n    <RequestId>D9C7521-0367-42EE-9646-FD066CCADB26</RequestId>\\n    <Data>\\n        <CardNumber>6212262315007683105</CardNumber>\\n        <ValidDate>07/26</ValidDate>\\n        <BankName>中国工商银行</BankName>\\n        <CardType>CC</CardType>\\n    </Data>\\n</RecognizeBankCardResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
        ],
        'RecognizeBusinessLicense' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeBusinessLicense/RecognizeBusinessLicense1.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'F34D031B-02BD-4A59-BA35-EE068DD6F6E6',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Type' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'Stamp' => [
                                        'description' => '',
                                        'properties' => [
                                            'Top' => [
                                                'description' => '',
                                                'example' => '1030',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Width' => [
                                                'description' => '',
                                                'example' => '154',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Height' => [
                                                'description' => '',
                                                'example' => '154',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Left' => [
                                                'description' => '',
                                                'example' => '650',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'EstablishDate' => [
                                        'description' => '',
                                        'example' => '20150504',
                                        'type' => 'string',
                                    ],
                                    'ValidPeriod' => [
                                        'description' => '',
                                        'example' => '29991231',
                                        'type' => 'string',
                                    ],
                                    'Business' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'Angle' => [
                                        'description' => '',
                                        'example' => '0',
                                        'format' => 'float',
                                        'type' => 'number',
                                    ],
                                    'RegisterNumber' => [
                                        'description' => '',
                                        'example' => '91500108320423****',
                                        'type' => 'string',
                                    ],
                                    'Address' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'Capital' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'Title' => [
                                        'description' => '',
                                        'properties' => [
                                            'Top' => [
                                                'description' => '',
                                                'example' => '10',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Width' => [
                                                'description' => '',
                                                'example' => '10',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Height' => [
                                                'description' => '',
                                                'example' => '10',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Left' => [
                                                'description' => '',
                                                'example' => '10',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'Emblem' => [
                                        'description' => '',
                                        'properties' => [
                                            'Top' => [
                                                'description' => '',
                                                'example' => '8',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Width' => [
                                                'description' => '',
                                                'example' => '162',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Height' => [
                                                'description' => '',
                                                'example' => '163',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Left' => [
                                                'description' => '',
                                                'example' => '366',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'Name' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'QRCode' => [
                                        'description' => '',
                                        'properties' => [
                                            'Top' => [
                                                'description' => '',
                                                'example' => '914',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Width' => [
                                                'description' => '',
                                                'example' => '126',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Height' => [
                                                'description' => '',
                                                'example' => '132',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                            'Left' => [
                                                'description' => '',
                                                'example' => '156',
                                                'format' => 'int32',
                                                'type' => 'integer',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'LegalPerson' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"F34D031B-02BD-4A59-BA35-EE068DD6F6E6\\",\\n  \\"Data\\": {\\n    \\"Type\\": \\"有限责任公司\\",\\n    \\"Stamp\\": {\\n      \\"Top\\": 1030,\\n      \\"Width\\": 154,\\n      \\"Height\\": 154,\\n      \\"Left\\": 650\\n    },\\n    \\"EstablishDate\\": \\"20150504\\",\\n    \\"ValidPeriod\\": \\"29991231\\",\\n    \\"Business\\": \\"网络技术服务;网站建设;销售:I类医疗器械、保健用品(不含保健食品)等\\",\\n    \\"Angle\\": 0,\\n    \\"RegisterNumber\\": \\"91500108320423****\\",\\n    \\"Address\\": \\"浙江省杭州市西湖区转塘科技经济区块888号888幢\\",\\n    \\"Capital\\": \\"壹百万元整\\",\\n    \\"Title\\": {\\n      \\"Top\\": 10,\\n      \\"Width\\": 10,\\n      \\"Height\\": 10,\\n      \\"Left\\": 10\\n    },\\n    \\"Emblem\\": {\\n      \\"Top\\": 8,\\n      \\"Width\\": 162,\\n      \\"Height\\": 163,\\n      \\"Left\\": 366\\n    },\\n    \\"Name\\": \\"某某电子商务有限公司\\",\\n    \\"QRCode\\": {\\n      \\"Top\\": 914,\\n      \\"Width\\": 126,\\n      \\"Height\\": 132,\\n      \\"Left\\": 156\\n    },\\n    \\"LegalPerson\\": \\"李四\\"\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RequestId>F34D031B-02BD-4A59-BA35-EE068DD6F6E6</RequestId>\\n<Data>\\n    <ValidPeriod>29991231</ValidPeriod>\\n    <Address>浙江省杭州市西湖区转塘科技经济区块888号888幢</Address>\\n    <Stamp>\\n        <Left>971</Left>\\n        <Top>572</Top>\\n        <Height>197</Height>\\n        <Width>191</Width>\\n    </Stamp>\\n    <Title>\\n        <Left>447</Left>\\n        <Top>177</Top>\\n        <Height>80</Height>\\n        <Width>354</Width>\\n    </Title>\\n    <Capital>叁佰万元整</Capital>\\n    <LegalPerson>李四</LegalPerson>\\n    <EstablishDate>20150504</EstablishDate>\\n    <Name>某某电子商务有限公司</Name>\\n    <RegisterNumber>91500108320423****</RegisterNumber>\\n    <Type>有限责任公司</Type>\\n    <QRCode>\\n        <Left>848</Left>\\n        <Top>199</Top>\\n        <Height>88</Height>\\n        <Width>91</Width>\\n    </QRCode>\\n    <Angle>0</Angle>\\n    <Emblem>\\n        <Left>550</Left>\\n        <Top>6</Top>\\n        <Height>150</Height>\\n        <Width>137</Width>\\n    </Emblem>\\n    <Business>网络技术服务;网站建设;销售:I类医疗器械、保健用品(不含保健食品);医药技术咨询(不含诊疗活动及药品销售)、健康知识及其信息咨询(不含诊疗活动)、健康管理咨询(不含诊疗活动)、医院管理咨询(不含诊疗活动及药品销售):健康保健项目策划、设计;化妆品、饰、工艺礼品(不含象牙及其制品)、家具护理用品、劳防用品的批发;货物进出口(法律、法规禁止的项目除外;法律、法规限制的项目取得许可后方可经营);品牌推广;旅游信息咨询;翻译服务;票务代理;设计、制作、代理、发布广告;会议及展览展示服务。(依法须经批准的项目,经相关部门批准后方可开展经营活动)</Business>\\n</Data>","errorExample":""}]',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
        ],
        'RecognizeCharacter' => [
            'summary' => '通用文字识别',
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'write',
            'deprecated' => false,
            'systemTags' => [
                'operationType' => 'none',
                'riskType' => 'none',
                'chargeType' => 'paid',
            ],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeCharacter/RecognizeCharacter5.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
                [
                    'name' => 'MinHeight',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => '10',
                        'format' => 'int32',
                        'minimum' => '5',
                        'required' => true,
                        'type' => 'integer',
                    ],
                ],
                [
                    'name' => 'OutputProbability',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'true',
                        'required' => true,
                        'type' => 'boolean',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => '7A9BC7FE-2D42-57AF-93BC-09A229DD2F1D',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Results' => [
                                        'description' => '',
                                        'items' => [
                                            'description' => '1',
                                            'properties' => [
                                                'TextRectangles' => [
                                                    'description' => '',
                                                    'properties' => [
                                                        'Top' => [
                                                            'description' => '',
                                                            'example' => '150',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                        'Width' => [
                                                            'description' => '',
                                                            'example' => '77',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                        'Height' => [
                                                            'description' => '',
                                                            'example' => '409',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                        'Angle' => [
                                                            'description' => '',
                                                            'example' => '-65',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                        'Left' => [
                                                            'description' => '',
                                                            'example' => '511',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                        'Pos' => [
                                                            'type' => 'array',
                                                            'items' => [
                                                                'type' => 'object',
                                                                'properties' => [
                                                                    'x' => [
                                                                        'type' => 'integer',
                                                                        'format' => 'int32',
                                                                    ],
                                                                    'y' => [
                                                                        'type' => 'integer',
                                                                        'format' => 'int32',
                                                                    ],
                                                                ],
                                                            ],
                                                        ],
                                                    ],
                                                    'type' => 'object',
                                                ],
                                                'Text' => [
                                                    'description' => '',
                                                    'example' => '',
                                                    'type' => 'string',
                                                ],
                                                'Probability' => [
                                                    'description' => '',
                                                    'example' => '0.99',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'type' => 'array',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"7A9BC7FE-2D42-57AF-93BC-09A229DD2F1D\\",\\n  \\"Data\\": {\\n    \\"Results\\": [\\n      {\\n        \\"TextRectangles\\": {\\n          \\"Top\\": 150,\\n          \\"Width\\": 77,\\n          \\"Height\\": 409,\\n          \\"Angle\\": -65,\\n          \\"Left\\": 511,\\n          \\"Pos\\": [\\n            {\\n              \\"x\\": 434,\\n              \\"y\\": 70\\n            }\\n          ]\\n        },\\n        \\"Text\\": \\"祝你生日快乐\\",\\n        \\"Probability\\": 0.99\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeCharacterResponse>\\n    <RequestId>3A7E38E9-E8B2-5135-8461-F6DA393385AA</RequestId>\\n    <Data>\\n        <Results>\\n            <TextRectangles>\\n                <Left>569</Left>\\n                <Top>184</Top>\\n                <Angle>-68</Angle>\\n                <Pos>\\n                    <x>569</x>\\n                    <y>184</y>\\n                </Pos>\\n                <Pos>\\n                    <x>665</x>\\n                    <y>223</y>\\n                </Pos>\\n                <Pos>\\n                    <x>657</x>\\n                    <y>244</y>\\n                </Pos>\\n                <Pos>\\n                    <x>560</x>\\n                    <y>205</y>\\n                </Pos>\\n                <Height>103</Height>\\n                <Width>22</Width>\\n            </TextRectangles>\\n            <Probability>0.99</Probability>\\n            <Text>HAPPY</Text>\\n        </Results>\\n        <Results>\\n            <TextRectangles>\\n                <Left>515</Left>\\n                <Top>190</Top>\\n                <Angle>-63</Angle>\\n                <Pos>\\n                    <x>515</x>\\n                    <y>190</y>\\n                </Pos>\\n                <Pos>\\n                    <x>690</x>\\n                    <y>277</y>\\n                </Pos>\\n                <Pos>\\n                    <x>673</x>\\n                    <y>311</y>\\n                </Pos>\\n                <Pos>\\n                    <x>498</x>\\n                    <y>225</y>\\n                </Pos>\\n                <Height>195</Height>\\n                <Width>38</Width>\\n            </TextRectangles>\\n            <Probability>0.99</Probability>\\n            <Text>birthday</Text>\\n        </Results>\\n        <Results>\\n            <TextRectangles>\\n                <Left>389</Left>\\n                <Top>242</Top>\\n                <Angle>-65</Angle>\\n                <Pos>\\n                    <x>389</x>\\n                    <y>242</y>\\n                </Pos>\\n                <Pos>\\n                    <x>755</x>\\n                    <y>406</y>\\n                </Pos>\\n                <Pos>\\n                    <x>726</x>\\n                    <y>471</y>\\n                </Pos>\\n                <Pos>\\n                    <x>360</x>\\n                    <y>307</y>\\n                </Pos>\\n                <Height>400</Height>\\n                <Width>70</Width>\\n            </TextRectangles>\\n            <Probability>0.98</Probability>\\n            <Text>祝你生日快乐</Text>\\n        </Results>\\n    </Data>\\n</RecognizeCharacterResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
        ],
        'RecognizeDriverLicense' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDriverLicense/jsz2.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
                [
                    'name' => 'Side',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'face',
                        'required' => false,
                        'type' => 'string',
                        'enum' => [
                            'face',
                            'back',
                        ],
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => '374D8C7E-9ECC-4750-A87F-50571702F175',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'BackResult' => [
                                        'description' => '',
                                        'properties' => [
                                            'ArchiveNumber' => [
                                                'description' => '',
                                                'example' => '130601473955',
                                                'type' => 'string',
                                            ],
                                            'Name' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'CardNumber' => [
                                                'description' => '',
                                                'example' => '210288898898898888',
                                                'type' => 'string',
                                            ],
                                            'Record' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'FaceResult' => [
                                        'description' => '',
                                        'properties' => [
                                            'VehicleType' => [
                                                'description' => '',
                                                'example' => 'C1',
                                                'type' => 'string',
                                            ],
                                            'IssueDate' => [
                                                'description' => '',
                                                'example' => '20130208',
                                                'type' => 'string',
                                            ],
                                            'EndDate' => [
                                                'description' => '',
                                                'example' => '20190201',
                                                'type' => 'string',
                                            ],
                                            'Gender' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'Address' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'StartDate' => [
                                                'description' => '',
                                                'example' => '20130208',
                                                'type' => 'string',
                                            ],
                                            'LicenseNumber' => [
                                                'description' => '',
                                                'example' => '210288898898898888',
                                                'type' => 'string',
                                            ],
                                            'Name' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'IssueUnit' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'Nationality' => [
                                                'type' => 'string',
                                            ],
                                            'BirthDate' => [
                                                'type' => 'string',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"374D8C7E-9ECC-4750-A87F-50571702F175\\",\\n  \\"Data\\": {\\n    \\"BackResult\\": {\\n      \\"ArchiveNumber\\": \\"130601473955\\",\\n      \\"Name\\": \\"张三\\",\\n      \\"CardNumber\\": \\"210288898898898888\\",\\n      \\"Record\\": \\"实习期至2019年05月06日。\\"\\n    },\\n    \\"FaceResult\\": {\\n      \\"VehicleType\\": \\"C1\\",\\n      \\"IssueDate\\": \\"20130208\\",\\n      \\"EndDate\\": \\"20190201\\",\\n      \\"Gender\\": \\"男\\",\\n      \\"Address\\": \\"江苏省徐州市铜山区棠张镇田河村1队129号\\",\\n      \\"StartDate\\": \\"20130208\\",\\n      \\"LicenseNumber\\": \\"210288898898898888\\",\\n      \\"Name\\": \\"张三\\",\\n      \\"IssueUnit\\": \\"江苏省徐州市公安局交通巡逻警察支队\\",\\n      \\"Nationality\\": \\"中国\\",\\n      \\"BirthDate\\": \\"1992-05-20\\"\\n    }\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeDriverLicenseResponse>\\n    <RequestId>374D8C7E-9ECC-4750-A87F-50571702F175</RequestId>\\n    <Data>\\n        <BackResult>\\n            <ArchiveNumber>130601473955</ArchiveNumber>\\n            <Name>张三</Name>\\n            <CardNumber>210288898898898888</CardNumber>\\n            <Record>实习期至2019年05月06日。</Record>\\n        </BackResult>\\n        <FaceResult>\\n            <VehicleType>C1</VehicleType>\\n            <IssueDate>20130208</IssueDate>\\n            <EndDate>20190201</EndDate>\\n            <Gender>男</Gender>\\n            <Address>江苏省徐州市铜山区棠张镇田河村1队129号</Address>\\n            <StartDate>20130208</StartDate>\\n            <LicenseNumber>210288898898898888</LicenseNumber>\\n            <Name>张三</Name>\\n            <IssueUnit>江苏省徐州市公安局交通巡逻警察支队</IssueUnit>\\n            <Nationality>中国</Nationality>\\n            <BirthDate>1992-05-20</BirthDate>\\n        </FaceResult>\\n    </Data>\\n</RecognizeDriverLicenseResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
        ],
        'RecognizeDrivingLicense' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeDrivingLicense/xsz2.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
                [
                    'name' => 'Side',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'face',
                        'required' => false,
                        'type' => 'string',
                        'enum' => [
                            'face',
                            'back',
                        ],
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => '1DD989C1-4E08-4E04-9D5D-314901E91226',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'BackResult' => [
                                        'description' => '',
                                        'properties' => [
                                            'OverallDimension' => [
                                                'description' => '',
                                                'example' => '4945x1845x1480',
                                                'type' => 'string',
                                            ],
                                            'InspectionRecord' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'UnladenMass' => [
                                                'description' => '',
                                                'example' => '2000',
                                                'type' => 'string',
                                            ],
                                            'FileNumber' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'TractionMass' => [
                                                'description' => '',
                                                'example' => '100',
                                                'type' => 'string',
                                            ],
                                            'GrossMass' => [
                                                'description' => '',
                                                'example' => '2205',
                                                'type' => 'string',
                                            ],
                                            'PlateNumber' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'ApprovedPassengerCapacity' => [
                                                'description' => '',
                                                'example' => '5',
                                                'type' => 'string',
                                            ],
                                            'EnergyType' => [
                                                'description' => '',
                                                'example' => '-',
                                                'type' => 'string',
                                            ],
                                            'ApprovedLoad' => [
                                                'description' => '',
                                                'example' => '300',
                                                'type' => 'string',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'FaceResult' => [
                                        'description' => '',
                                        'properties' => [
                                            'IssueDate' => [
                                                'description' => '',
                                                'example' => '20180313',
                                                'type' => 'string',
                                            ],
                                            'Model' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'VehicleType' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'Owner' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'EngineNumber' => [
                                                'description' => '',
                                                'example' => '111111',
                                                'type' => 'string',
                                            ],
                                            'PlateNumber' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'Address' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'UseCharacter' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'Vin' => [
                                                'description' => '',
                                                'example' => 'SSVUDDTT2J2022555',
                                                'type' => 'string',
                                            ],
                                            'RegisterDate' => [
                                                'description' => '',
                                                'example' => '20180312',
                                                'type' => 'string',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"1DD989C1-4E08-4E04-9D5D-314901E91226\\",\\n  \\"Data\\": {\\n    \\"BackResult\\": {\\n      \\"OverallDimension\\": \\"4945x1845x1480\\",\\n      \\"InspectionRecord\\": \\"检验有效期至2014年09月云A(01)\\",\\n      \\"UnladenMass\\": \\"2000\\",\\n      \\"FileNumber\\": \\"苏F123E9\\",\\n      \\"TractionMass\\": \\"100\\",\\n      \\"GrossMass\\": \\"2205\\",\\n      \\"PlateNumber\\": \\"苏F123E9\\",\\n      \\"ApprovedPassengerCapacity\\": \\"5\\",\\n      \\"EnergyType\\": \\"-\\",\\n      \\"ApprovedLoad\\": \\"300\\"\\n    },\\n    \\"FaceResult\\": {\\n      \\"IssueDate\\": \\"20180313\\",\\n      \\"Model\\": \\"大众汽车牌SVW6666DFD\\",\\n      \\"VehicleType\\": \\"小型普通客车\\",\\n      \\"Owner\\": \\"张三\\",\\n      \\"EngineNumber\\": \\"111111\\",\\n      \\"PlateNumber\\": \\"苏F123E9\\",\\n      \\"Address\\": \\"中牟县三刘寨村\\",\\n      \\"UseCharacter\\": \\"非营运\\",\\n      \\"Vin\\": \\"SSVUDDTT2J2022555\\",\\n      \\"RegisterDate\\": \\"20180312\\"\\n    }\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeDrivingLicenseResponse>\\n    <RequestId>1DD989C1-4E08-4E04-9D5D-314901E91226</RequestId>\\n    <Data>\\n        <BackResult>\\n            <OverallDimension>4945x1845x1480</OverallDimension>\\n            <InspectionRecord>检验有效期至2014年09月云A(01)</InspectionRecord>\\n            <UnladenMass>2000</UnladenMass>\\n            <FileNumber>苏F123E9</FileNumber>\\n            <TractionMass>100</TractionMass>\\n            <GrossMass>2205</GrossMass>\\n            <PlateNumber>苏F123E9</PlateNumber>\\n            <ApprovedPassengerCapacity>5</ApprovedPassengerCapacity>\\n            <EnergyType>-</EnergyType>\\n            <ApprovedLoad>300</ApprovedLoad>\\n        </BackResult>\\n        <FaceResult>\\n            <IssueDate>20180313</IssueDate>\\n            <Model>大众汽车牌SVW6666DFD</Model>\\n            <VehicleType>小型普通客车</VehicleType>\\n            <Owner>张三</Owner>\\n            <EngineNumber>111111</EngineNumber>\\n            <PlateNumber>苏F123E9</PlateNumber>\\n            <Address>中牟县三刘寨村</Address>\\n            <UseCharacter>非营运</UseCharacter>\\n            <Vin>SSVUDDTT2J2022555</Vin>\\n            <RegisterDate>20180312</RegisterDate>\\n        </FaceResult>\\n    </Data>\\n</RecognizeDrivingLicenseResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
        ],
        'RecognizeIdentityCard' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeIdentityCard/sfz1.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
                [
                    'name' => 'Side',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'face',
                        'required' => false,
                        'type' => 'string',
                        'enum' => [
                            'face',
                            'back',
                        ],
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'D3F5BA69-79C4-46A4-B02B-58C4EEBC4C33',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'BackResult' => [
                                        'description' => '',
                                        'properties' => [
                                            'EndDate' => [
                                                'description' => '',
                                                'example' => '19800101',
                                                'type' => 'string',
                                            ],
                                            'Issue' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'StartDate' => [
                                                'description' => '',
                                                'example' => '19970101',
                                                'type' => 'string',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'FrontResult' => [
                                        'description' => '',
                                        'properties' => [
                                            'FaceRectangle' => [
                                                'description' => '',
                                                'properties' => [
                                                    'Size' => [
                                                        'description' => '',
                                                        'properties' => [
                                                            'Width' => [
                                                                'description' => '',
                                                                'example' => '118.16333770751953',
                                                                'format' => 'float',
                                                                'type' => 'number',
                                                            ],
                                                            'Height' => [
                                                                'description' => '',
                                                                'example' => '97.063156127929688',
                                                                'format' => 'float',
                                                                'type' => 'number',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'Angle' => [
                                                        'description' => '',
                                                        'example' => '-87.710586547851562',
                                                        'format' => 'float',
                                                        'type' => 'number',
                                                    ],
                                                    'Center' => [
                                                        'description' => '',
                                                        'properties' => [
                                                            'Y' => [
                                                                'description' => '',
                                                                'example' => '225.20643615722656',
                                                                'format' => 'float',
                                                                'type' => 'number',
                                                            ],
                                                            'X' => [
                                                                'description' => '',
                                                                'example' => '475.59390258789062',
                                                                'format' => 'float',
                                                                'type' => 'number',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                ],
                                                'type' => 'object',
                                            ],
                                            'BirthDate' => [
                                                'description' => '',
                                                'example' => '19960111',
                                                'type' => 'string',
                                            ],
                                            'Gender' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'Address' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'FaceRectVertices' => [
                                                'description' => '',
                                                'items' => [
                                                    'description' => '1',
                                                    'properties' => [
                                                        'Y' => [
                                                            'description' => '',
                                                            'example' => '164.23321533203125',
                                                            'format' => 'float',
                                                            'type' => 'number',
                                                        ],
                                                        'X' => [
                                                            'description' => '',
                                                            'example' => '429.46124267578125',
                                                            'format' => 'float',
                                                            'type' => 'number',
                                                        ],
                                                    ],
                                                    'type' => 'object',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'CardAreas' => [
                                                'description' => '',
                                                'items' => [
                                                    'description' => '1',
                                                    'properties' => [
                                                        'Y' => [
                                                            'description' => '',
                                                            'example' => '81',
                                                            'format' => 'float',
                                                            'type' => 'number',
                                                        ],
                                                        'X' => [
                                                            'description' => '',
                                                            'example' => '40',
                                                            'format' => 'float',
                                                            'type' => 'number',
                                                        ],
                                                    ],
                                                    'type' => 'object',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'Nationality' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'Name' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'IDNumber' => [
                                                'description' => '',
                                                'example' => '310228199601115411',
                                                'type' => 'string',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"A6175A03-624C-1976-908D-C8BE4C547C45\\",\\n  \\"Data\\": {\\n    \\"BackResult\\": {\\n      \\"EndDate\\": \\"19800101\\",\\n      \\"Issue\\": \\"杭州市公安局\\",\\n      \\"StartDate\\": \\"19970101\\"\\n    },\\n    \\"FrontResult\\": {\\n      \\"FaceRectangle\\": {\\n        \\"Size\\": {\\n          \\"Width\\": 196,\\n          \\"Height\\": 243\\n        },\\n        \\"Angle\\": 0,\\n        \\"Center\\": {\\n          \\"Y\\": 225,\\n          \\"X\\": 667\\n        }\\n      },\\n      \\"BirthDate\\": \\"19880722\\",\\n      \\"Gender\\": \\"男\\",\\n      \\"Address\\": \\"江苏省南京市浦口区天天小区1栋11号\\",\\n      \\"FaceRectVertices\\": [\\n        {\\n          \\"Y\\": 105,\\n          \\"X\\": 569\\n        }\\n      ],\\n      \\"CardAreas\\": [\\n        {\\n          \\"Y\\": 485,\\n          \\"X\\": 132\\n        }\\n      ],\\n      \\"Nationality\\": \\"汉\\",\\n      \\"Name\\": \\"小明\\",\\n      \\"IDNumber\\": \\"320001198807220000\\"\\n    }\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeIdentityCardResponse>\\n    <RequestId>A6175A03-624C-1976-908D-C8BE4C547C45</RequestId>\\n    <Data>\\n        <FrontResult>\\n            <Address>江苏省南京市浦口区天天小区1栋11号</Address>\\n            <FaceRectVertices>\\n                <X>569</X>\\n                <Y>105</Y>\\n            </FaceRectVertices>\\n            <FaceRectVertices>\\n                <X>766</X>\\n                <Y>104</Y>\\n            </FaceRectVertices>\\n            <FaceRectVertices>\\n                <X>766</X>\\n                <Y>348</Y>\\n            </FaceRectVertices>\\n            <FaceRectVertices>\\n                <X>569</X>\\n                <Y>348</Y>\\n            </FaceRectVertices>\\n            <FaceRectangle>\\n                <Center>\\n                    <X>667</X>\\n                    <Y>225</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <Height>243</Height>\\n                    <Width>196</Width>\\n                </Size>\\n            </FaceRectangle>\\n            <CardAreas>\\n                <X>132</X>\\n                <Y>485</Y>\\n            </CardAreas>\\n            <CardAreas>\\n                <X>132</X>\\n                <Y>47</Y>\\n            </CardAreas>\\n            <CardAreas>\\n                <X>817</X>\\n                <Y>47</Y>\\n            </CardAreas>\\n            <CardAreas>\\n                <X>818</X>\\n                <Y>482</Y>\\n            </CardAreas>\\n            <Gender>男</Gender>\\n            <Nationality>汉</Nationality>\\n            <BirthDate>19880722</BirthDate>\\n            <Name>小明</Name>\\n            <IDNumber>320001198807220000</IDNumber>\\n        </FrontResult>\\n    </Data>\\n</RecognizeIdentityCardResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
        ],
        'RecognizeLicensePlate' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeLicensePlate/cpsb1.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => '3F10DAC3-CF4A-487C-BF33-3B8EB9AA12F2',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Plates' => [
                                        'description' => '',
                                        'items' => [
                                            'description' => '1',
                                            'properties' => [
                                                'PlateTypeConfidence' => [
                                                    'description' => '',
                                                    'example' => '1',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'PlateType' => [
                                                    'description' => '',
                                                    'example' => '',
                                                    'type' => 'string',
                                                ],
                                                'Confidence' => [
                                                    'description' => '',
                                                    'example' => '0.99745339155197144',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'PlateNumber' => [
                                                    'description' => '',
                                                    'example' => '',
                                                    'type' => 'string',
                                                ],
                                                'Roi' => [
                                                    'description' => '',
                                                    'properties' => [
                                                        'W' => [
                                                            'description' => '',
                                                            'example' => '141',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                        'H' => [
                                                            'description' => '',
                                                            'example' => '53',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                        'Y' => [
                                                            'description' => '',
                                                            'example' => '256',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                        'X' => [
                                                            'description' => '',
                                                            'example' => '294',
                                                            'format' => 'int32',
                                                            'type' => 'integer',
                                                        ],
                                                    ],
                                                    'type' => 'object',
                                                ],
                                                'Positions' => [
                                                    'description' => '',
                                                    'items' => [
                                                        'properties' => [
                                                            'X' => [
                                                                'description' => '',
                                                                'example' => '466',
                                                                'format' => 'int64',
                                                                'type' => 'integer',
                                                            ],
                                                            'Y' => [
                                                                'description' => '',
                                                                'example' => '293',
                                                                'format' => 'int64',
                                                                'type' => 'integer',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'type' => 'array',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"3F10DAC3-CF4A-487C-BF33-3B8EB9AA12F2\\",\\n  \\"Data\\": {\\n    \\"Plates\\": [\\n      {\\n        \\"PlateTypeConfidence\\": 1,\\n        \\"PlateType\\": \\"小型汽车\\",\\n        \\"Confidence\\": 0.9974533915519714,\\n        \\"PlateNumber\\": \\"粤BP57E7\\",\\n        \\"Roi\\": {\\n          \\"W\\": 141,\\n          \\"H\\": 53,\\n          \\"Y\\": 256,\\n          \\"X\\": 294\\n        },\\n        \\"Positions\\": [\\n          {\\n            \\"X\\": 466,\\n            \\"Y\\": 293\\n          }\\n        ]\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeLicensePlateResponse>\\n    <RequestId>3F10DAC3-CF4A-487C-BF33-3B8EB9AA12F2</RequestId>\\n    <Data>\\n        <Plates>\\n            <PlateTypeConfidence>1</PlateTypeConfidence>\\n            <PlateType>小型汽车</PlateType>\\n            <Confidence>0.9974534</Confidence>\\n            <PlateNumber>粤BP57E7</PlateNumber>\\n            <Roi>\\n                <W>141</W>\\n                <H>53</H>\\n                <Y>256</Y>\\n                <X>294</X>\\n            </Roi>\\n            <Positions>\\n                <X>466</X>\\n                <Y>293</Y>\\n            </Positions>\\n            <Positions>\\n                <X>667</X>\\n                <Y>283</Y>\\n            </Positions>\\n            <Positions>\\n                <X>669</X>\\n                <Y>330</Y>\\n            </Positions>\\n            <Positions>\\n                <X>469</X>\\n                <Y>341</Y>\\n            </Positions>\\n        </Plates>\\n    </Data>\\n</RecognizeLicensePlateResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
        ],
        'RecognizeQrCode' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'Tasks',
                    'in' => 'formData',
                    'style' => 'repeatList',
                    'schema' => [
                        'description' => '1',
                        'items' => [
                            'properties' => [
                                'ImageURL' => [
                                    'description' => '',
                                    'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg',
                                    'isFileTransferUrl' => true,
                                    'required' => true,
                                    'type' => 'string',
                                ],
                            ],
                            'required' => false,
                            'type' => 'object',
                        ],
                        'maxItems' => 10,
                        'required' => true,
                        'type' => 'array',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'A53DC437-F883-4968-86D5-EB21FB044692',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Elements' => [
                                        'description' => '',
                                        'items' => [
                                            'properties' => [
                                                'ImageURL' => [
                                                    'description' => '',
                                                    'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg',
                                                    'type' => 'string',
                                                ],
                                                'TaskId' => [
                                                    'description' => '',
                                                    'example' => 'img5iGtwVIxQzc4Nqy$L84yHd-1v****',
                                                    'type' => 'string',
                                                ],
                                                'Results' => [
                                                    'description' => '',
                                                    'items' => [
                                                        'properties' => [
                                                            'Suggestion' => [
                                                                'description' => '',
                                                                'example' => 'review',
                                                                'type' => 'string',
                                                            ],
                                                            'QrCodesData' => [
                                                                'description' => '1',
                                                                'items' => [
                                                                    'description' => '',
                                                                    'example' => 'https://yqh.aliyun.com/live/detail/23798',
                                                                    'type' => 'string',
                                                                ],
                                                                'type' => 'array',
                                                            ],
                                                            'Label' => [
                                                                'description' => '',
                                                                'example' => 'qrcode',
                                                                'type' => 'string',
                                                            ],
                                                            'Rate' => [
                                                                'description' => '',
                                                                'example' => '99.91',
                                                                'format' => 'float',
                                                                'type' => 'number',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'type' => 'array',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"A53DC437-F883-4968-86D5-EB21FB044692\\",\\n  \\"Data\\": {\\n    \\"Elements\\": [\\n      {\\n        \\"ImageURL\\": \\"http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg\\",\\n        \\"TaskId\\": \\"img5iGtwVIxQzc4Nqy$L84yHd-1v****\\",\\n        \\"Results\\": [\\n          {\\n            \\"Suggestion\\": \\"review\\",\\n            \\"QrCodesData\\": [\\n              \\"https://yqh.aliyun.com/live/detail/23798\\"\\n            ],\\n            \\"Label\\": \\"qrcode\\",\\n            \\"Rate\\": 99.91\\n          }\\n        ]\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeQrCodeResponse>\\n    <RequestId>A53DC437-F883-4968-86D5-EB21FB044692</RequestId>\\n    <Data>\\n        <Elements>\\n            <ImageURL>http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQrCode/RecognizeQrCode6.jpg</ImageURL>\\n            <TaskId>img5iGtwVIxQzc4Nqy$L84yHd-1v****</TaskId>\\n            <Results>\\n                <Suggestion>review</Suggestion>\\n                <QrCodesData>https://yqh.aliyun.com/live/detail/23798</QrCodesData>\\n                <Label>qrcode</Label>\\n                <Rate>99.91</Rate>\\n            </Results>\\n        </Elements>\\n    </Data>\\n</RecognizeQrCodeResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
        ],
        'RecognizeTable' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeTable/RecognizeTable4.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
                [
                    'name' => 'OutputFormat',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'json',
                        'required' => true,
                        'type' => 'string',
                        'enum' => [
                            'html',
                            'json',
                            'xlsx',
                        ],
                    ],
                ],
                [
                    'name' => 'UseFinanceModel',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'true',
                        'required' => true,
                        'type' => 'boolean',
                    ],
                ],
                [
                    'name' => 'AssureDirection',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'false',
                        'required' => true,
                        'type' => 'boolean',
                    ],
                ],
                [
                    'name' => 'HasLine',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'false',
                        'required' => true,
                        'type' => 'boolean',
                    ],
                ],
                [
                    'name' => 'SkipDetection',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'false',
                        'required' => true,
                        'type' => 'boolean',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'CBC36BE6-2A18-5256-82BD-8B5477E5D058',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'FileContent' => [
                                        'description' => '',
                                        'example' => 'UEsDBBQAAAAIAAAAIQBukMk4WAIAA****',
                                        'type' => 'string',
                                    ],
                                    'Tables' => [
                                        'description' => '',
                                        'items' => [
                                            'properties' => [
                                                'Head' => [
                                                    'items' => [
                                                        'description' => '',
                                                        'example' => '',
                                                        'type' => 'string',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                                'Tail' => [
                                                    'items' => [
                                                        'description' => '',
                                                        'example' => '',
                                                        'type' => 'string',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                                'TableRows' => [
                                                    'description' => '',
                                                    'items' => [
                                                        'properties' => [
                                                            'TableColumns' => [
                                                                'description' => '',
                                                                'items' => [
                                                                    'properties' => [
                                                                        'EndRow' => [
                                                                            'description' => '',
                                                                            'example' => '1',
                                                                            'format' => 'int32',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'EndColumn' => [
                                                                            'description' => '',
                                                                            'example' => '4',
                                                                            'format' => 'int32',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'Width' => [
                                                                            'description' => '',
                                                                            'example' => '0',
                                                                            'format' => 'int32',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'Height' => [
                                                                            'description' => '',
                                                                            'example' => '0',
                                                                            'format' => 'int32',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'Texts' => [
                                                                            'items' => [
                                                                                'description' => '',
                                                                                'example' => '',
                                                                                'type' => 'string',
                                                                            ],
                                                                            'type' => 'array',
                                                                        ],
                                                                        'StartRow' => [
                                                                            'description' => '',
                                                                            'example' => '0',
                                                                            'format' => 'int32',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'StartColumn' => [
                                                                            'description' => '',
                                                                            'example' => '1',
                                                                            'format' => 'int32',
                                                                            'type' => 'integer',
                                                                        ],
                                                                    ],
                                                                    'type' => 'object',
                                                                ],
                                                                'type' => 'array',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'type' => 'array',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"CBC36BE6-2A18-5256-82BD-8B5477E5D058\\",\\n  \\"Data\\": {\\n    \\"FileContent\\": \\"UEsDBBQAAAAIAAAAIQBukMk4WAIAA****\\",\\n    \\"Tables\\": [\\n      {\\n        \\"Head\\": [\\n          \\"存活盘点表\\"\\n        ],\\n        \\"Tail\\": [\\n          \\"职工券\\"\\n        ],\\n        \\"TableRows\\": [\\n          {\\n            \\"TableColumns\\": [\\n              {\\n                \\"EndRow\\": 1,\\n                \\"EndColumn\\": 4,\\n                \\"Width\\": 0,\\n                \\"Height\\": 0,\\n                \\"Texts\\": [\\n                  \\"序号\\"\\n                ],\\n                \\"StartRow\\": 0,\\n                \\"StartColumn\\": 1\\n              }\\n            ]\\n          }\\n        ]\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"","errorExample":""}]',
            'requestParamsDescription' => ' ',
        ],
        'RecognizeTaxiInvoice' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeTaxiInvoice/RecognizeTaxiInvoice2.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'B2BBBD26-1D3E-4CFA-A80B-6A9266B8D125',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Invoices' => [
                                        'description' => '',
                                        'items' => [
                                            'properties' => [
                                                'Items' => [
                                                    'description' => '',
                                                    'items' => [
                                                        'properties' => [
                                                            'ItemRoi' => [
                                                                'description' => '',
                                                                'properties' => [
                                                                    'Size' => [
                                                                        'description' => '',
                                                                        'properties' => [
                                                                            'W' => [
                                                                                'description' => '',
                                                                                'example' => '887.9998779296875',
                                                                                'format' => 'float',
                                                                                'type' => 'number',
                                                                            ],
                                                                            'H' => [
                                                                                'description' => '',
                                                                                'example' => '81.999984741210938',
                                                                                'format' => 'float',
                                                                                'type' => 'number',
                                                                            ],
                                                                        ],
                                                                        'type' => 'object',
                                                                    ],
                                                                    'Angle' => [
                                                                        'description' => '',
                                                                        'example' => '-90',
                                                                        'format' => 'float',
                                                                        'type' => 'number',
                                                                    ],
                                                                    'Center' => [
                                                                        'description' => '',
                                                                        'properties' => [
                                                                            'Y' => [
                                                                                'description' => '',
                                                                                'example' => '1360',
                                                                                'format' => 'float',
                                                                                'type' => 'number',
                                                                            ],
                                                                            'X' => [
                                                                                'description' => '',
                                                                                'example' => '1593',
                                                                                'format' => 'float',
                                                                                'type' => 'number',
                                                                            ],
                                                                        ],
                                                                        'type' => 'object',
                                                                    ],
                                                                ],
                                                                'type' => 'object',
                                                            ],
                                                            'Text' => [
                                                                'description' => '',
                                                                'example' => '86655664',
                                                                'type' => 'string',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                                'RotateType' => [
                                                    'description' => '',
                                                    'example' => '0',
                                                    'format' => 'int32',
                                                    'type' => 'integer',
                                                ],
                                                'InvoiceRoi' => [
                                                    'description' => '',
                                                    'properties' => [
                                                        'W' => [
                                                            'description' => '',
                                                            'example' => '1773',
                                                            'format' => 'float',
                                                            'type' => 'number',
                                                        ],
                                                        'H' => [
                                                            'description' => '',
                                                            'example' => '3625',
                                                            'format' => 'float',
                                                            'type' => 'number',
                                                        ],
                                                        'Y' => [
                                                            'description' => '',
                                                            'example' => '302',
                                                            'format' => 'float',
                                                            'type' => 'number',
                                                        ],
                                                        'X' => [
                                                            'description' => '',
                                                            'example' => '513',
                                                            'format' => 'float',
                                                            'type' => 'number',
                                                        ],
                                                    ],
                                                    'type' => 'object',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'type' => 'array',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"B2BBBD26-1D3E-4CFA-A80B-6A9266B8D125\\",\\n  \\"Data\\": {\\n    \\"Invoices\\": [\\n      {\\n        \\"Items\\": [\\n          {\\n            \\"ItemRoi\\": {\\n              \\"Size\\": {\\n                \\"W\\": 887.9998779296875,\\n                \\"H\\": 81.99998474121094\\n              },\\n              \\"Angle\\": -90,\\n              \\"Center\\": {\\n                \\"Y\\": 1360,\\n                \\"X\\": 1593\\n              }\\n            },\\n            \\"Text\\": \\"86655664\\"\\n          }\\n        ],\\n        \\"RotateType\\": 0,\\n        \\"InvoiceRoi\\": {\\n          \\"W\\": 1773,\\n          \\"H\\": 3625,\\n          \\"Y\\": 302,\\n          \\"X\\": 513\\n        }\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RequestId>B2BBBD26-1D3E-4CFA-A80B-6A9266B8D125</RequestId>\\n<Data>\\n    <Invoices>\\n        <RotateType>0</RotateType>\\n        <InvoiceRoi>\\n            <W>1773</W>\\n            <H>3625</H>\\n            <X>513</X>\\n            <Y>302</Y>\\n        </InvoiceRoi>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1436</X>\\n                    <Y>968.5</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>89</W>\\n                    <H>1110</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>132011781210</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1246.5</X>\\n                    <Y>1239</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>92</W>\\n                    <H>743</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>13742573</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1593</X>\\n                    <Y>1360</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <W>887.9998779296875</W>\\n                    <H>81.99998474121094</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>013560325483</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1744</X>\\n                    <Y>1507.5</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <W>585.9998779296875</W>\\n                    <H>80.99998474121094</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>86655664</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1778</X>\\n                    <Y>1668</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>80</W>\\n                    <H>524</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>A-B6167</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1629.5</X>\\n                    <Y>1840</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>81.99998474121094</W>\\n                    <H>828.9998779296875</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>2018年02月28日</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1864</X>\\n                    <Y>2009.5</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>91</W>\\n                    <H>390</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>22:24</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1862</X>\\n                    <Y>2180</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>96</W>\\n                    <H>384</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>22:57</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1730</X>\\n                    <Y>2348</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>96</W>\\n                    <H>608</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>3.60元/公里</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1813</X>\\n                    <Y>2530</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>92</W>\\n                    <H>466</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>40.9公里</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1741</X>\\n                    <Y>2697</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <W>613.9998779296875</W>\\n                    <H>91.99998474121094</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>00:04.03</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1785.5</X>\\n                    <Y>2868.5</Y>\\n                </Center>\\n                <Angle>-90</Angle>\\n                <Size>\\n                    <W>91</W>\\n                    <H>519</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>129.00元</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1850.5</X>\\n                    <Y>3026</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <W>400.99993896484375</W>\\n                    <H>105.99998474121094</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>0.00元</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1848.5</X>\\n                    <Y>3187</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <W>396.99993896484375</W>\\n                    <H>99.99998474121094</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>0.00元</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1953</X>\\n                    <Y>3368</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <W>166</W>\\n                    <H>78</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>**</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1954</X>\\n                    <Y>3539</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <W>160</W>\\n                    <H>72</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>**</Text>\\n        </Items>\\n        <Items>\\n            <ItemRoi>\\n                <Center>\\n                    <X>1945</X>\\n                    <Y>3704.5</Y>\\n                </Center>\\n                <Angle>0</Angle>\\n                <Size>\\n                    <W>158</W>\\n                    <H>71</H>\\n                </Size>\\n            </ItemRoi>\\n            <Text>**</Text>\\n        </Items>\\n    </Invoices>\\n</Data>","errorExample":""}]',
            'requestParamsDescription' => ' ',
        ],
        'RecognizeTrainTicket' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeTrainTicket/RecognizeTrainTicket3.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'BE4B73EA-30A0-4573-A548-3A101B34641A',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Price' => [
                                        'description' => '',
                                        'example' => '104.5',
                                        'format' => 'float',
                                        'type' => 'number',
                                    ],
                                    'Destination' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'DepartureStation' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'Date' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'Number' => [
                                        'description' => '',
                                        'example' => 'G7350',
                                        'type' => 'string',
                                    ],
                                    'Seat' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'Name' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                    'Level' => [
                                        'description' => '',
                                        'example' => '',
                                        'type' => 'string',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"BE4B73EA-30A0-4573-A548-3A101B34641A\\",\\n  \\"Data\\": {\\n    \\"Price\\": 104.5,\\n    \\"Destination\\": \\"南京南站\\",\\n    \\"DepartureStation\\": \\"苏州站\\",\\n    \\"Date\\": \\"2017年08月05日22:09开\\",\\n    \\"Number\\": \\"G7350\\",\\n    \\"Seat\\": \\"04车13A号\\",\\n    \\"Name\\": \\"帅帅\\",\\n    \\"Level\\": \\"二等座\\"\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeTrainTicketResponse>\\n    <RequestId>BE4B73EA-30A0-4573-A548-3A101B34641A</RequestId>\\n    <Data>\\n        <Price>104.5</Price>\\n        <Destination>南京南站</Destination>\\n        <DepartureStation>苏州站</DepartureStation>\\n        <Date>2017年08月05日22:09开</Date>\\n        <Number>G7350</Number>\\n        <Seat>04车13A号</Seat>\\n        <Name>帅帅</Name>\\n        <Level>二等座</Level>\\n    </Data>\\n</RecognizeTrainTicketResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
        ],
        'RecognizeVATInvoice' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'FileURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeVATInvoice/RecognizeVATInvoice3.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
                [
                    'name' => 'FileType',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'jpg',
                        'required' => true,
                        'type' => 'string',
                        'enum' => [
                            'jpg',
                        ],
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => '56A10D65-ECE0-59DE-9775-F6494D2AF13B',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Box' => [
                                        'description' => '',
                                        'properties' => [
                                            'PayerRegisterNoes' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '358,262,567,290',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'PayeeAddresses' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '355,909,734,939',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'PayeeBankNames' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '354,947,938,977',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'Checkers' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '589,1003,662,1033',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'TaxAmounts' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '1606,721,1658,748',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'SumAmounts' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '32,774,629,805',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'Clerks' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '986,1003,1060,1033',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'InvoiceNoes' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '1377,78,1478,105',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'InvoiceDates' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '1376,115,1596,145',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'InvoiceCodes' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '1378,41,1520,68',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'InvoiceFakeCodes' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '1376,153,1640,181',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'PayerNames' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '354,222,700,255',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'PayerBankNames' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '0,0,0,0',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'Payees' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '189,1003,264,1033',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'PayeeNames' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '356,833,633,865',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'InvoiceAmounts' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '1364, 776,1438,804',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'WithoutTaxAmounts' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '1265,721,1339,749',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'PayerAddresses' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '0,0,0,0',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'PayeeRegisterNoes' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '356,873,571,902',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                                'type' => 'array',
                                            ],
                                            'ItemNames' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '0,0,0,0',
                                                    'format' => 'int32',
                                                    'type' => 'integer',
                                                ],
                                                'type' => 'array',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'Content' => [
                                        'description' => '',
                                        'properties' => [
                                            'PayerAddress' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'PayeeRegisterNo' => [
                                                'description' => '',
                                                'example' => '91420200000123403',
                                                'type' => 'string',
                                            ],
                                            'PayeeBankName' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'InvoiceNo' => [
                                                'description' => '',
                                                'example' => '03753869',
                                                'type' => 'string',
                                            ],
                                            'PayerRegisterNo' => [
                                                'description' => '',
                                                'example' => '91420200000123403',
                                                'type' => 'string',
                                            ],
                                            'Checker' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'TaxAmount' => [
                                                'description' => '',
                                                'example' => '9.52',
                                                'type' => 'string',
                                            ],
                                            'InvoiceDate' => [
                                                'description' => '',
                                                'example' => '20190415',
                                                'type' => 'string',
                                            ],
                                            'WithoutTaxAmount' => [
                                                'description' => '',
                                                'example' => '190.48',
                                                'type' => 'string',
                                            ],
                                            'InvoiceAmount' => [
                                                'description' => '',
                                                'example' => '200.00',
                                                'type' => 'string',
                                            ],
                                            'AntiFakeCode' => [
                                                'description' => '',
                                                'example' => '02702870934284730434',
                                                'type' => 'string',
                                            ],
                                            'PayerName' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'Payee' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'SumAmount' => [
                                                'description' => '',
                                                'example' => '87',
                                                'type' => 'string',
                                            ],
                                            'PayerBankName' => [
                                                'description' => '',
                                                'example' => '6221************1234',
                                                'type' => 'string',
                                            ],
                                            'Clerk' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'PayeeName' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'PayeeAddress' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'InvoiceCode' => [
                                                'description' => '',
                                                'example' => '031001600311',
                                                'type' => 'string',
                                            ],
                                            'ItemName' => [
                                                'description' => '1',
                                                'items' => [
                                                    'description' => '',
                                                    'example' => '',
                                                    'type' => 'string',
                                                ],
                                                'type' => 'array',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"56A10D65-ECE0-59DE-9775-F6494D2AF13B\\",\\n  \\"Data\\": {\\n    \\"Box\\": {\\n      \\"PayerRegisterNoes\\": [\\n        0\\n      ],\\n      \\"PayeeAddresses\\": [\\n        0\\n      ],\\n      \\"PayeeBankNames\\": [\\n        0\\n      ],\\n      \\"Checkers\\": [\\n        0\\n      ],\\n      \\"TaxAmounts\\": [\\n        0\\n      ],\\n      \\"SumAmounts\\": [\\n        0\\n      ],\\n      \\"Clerks\\": [\\n        0\\n      ],\\n      \\"InvoiceNoes\\": [\\n        0\\n      ],\\n      \\"InvoiceDates\\": [\\n        0\\n      ],\\n      \\"InvoiceCodes\\": [\\n        0\\n      ],\\n      \\"InvoiceFakeCodes\\": [\\n        0\\n      ],\\n      \\"PayerNames\\": [\\n        0\\n      ],\\n      \\"PayerBankNames\\": [\\n        0\\n      ],\\n      \\"Payees\\": [\\n        0\\n      ],\\n      \\"PayeeNames\\": [\\n        0\\n      ],\\n      \\"InvoiceAmounts\\": [\\n        0\\n      ],\\n      \\"WithoutTaxAmounts\\": [\\n        0\\n      ],\\n      \\"PayerAddresses\\": [\\n        0\\n      ],\\n      \\"PayeeRegisterNoes\\": [\\n        0\\n      ],\\n      \\"ItemNames\\": [\\n        0\\n      ]\\n    },\\n    \\"Content\\": {\\n      \\"PayerAddress\\": \\"浙江省杭州市西湖区杭大路9号聚龙大厦西区15-18楼0571-87901580\\",\\n      \\"PayeeRegisterNo\\": \\"91420200000123403\\",\\n      \\"PayeeBankName\\": \\"中国银行浙江省分行35845832****\\",\\n      \\"InvoiceNo\\": \\"03753869\\",\\n      \\"PayerRegisterNo\\": \\"91420200000123403\\",\\n      \\"Checker\\": \\"张三\\",\\n      \\"TaxAmount\\": \\"9.52\\",\\n      \\"InvoiceDate\\": \\"20190415\\",\\n      \\"WithoutTaxAmount\\": \\"190.48\\",\\n      \\"InvoiceAmount\\": \\"200.00\\",\\n      \\"AntiFakeCode\\": \\"02702870934284730434\\",\\n      \\"PayerName\\": \\"三号技术有限责任公司\\",\\n      \\"Payee\\": \\"张三\\",\\n      \\"SumAmount\\": \\"87\\",\\n      \\"PayerBankName\\": \\"6221************1234\\",\\n      \\"Clerk\\": \\"张三\\",\\n      \\"PayeeName\\": \\"上海机场(集团)有限公司\\",\\n      \\"PayeeAddress\\": \\"上海虹桥机场迎宾二路161号22342185\\",\\n      \\"InvoiceCode\\": \\"031001600311\\",\\n      \\"ItemName\\": [\\n        \\"餐饮服务\\"\\n      ]\\n    }\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeVATInvoiceResponse>\\n    <RequestId>56A10D65-ECE0-59DE-9775-F6494D2AF13B</RequestId>\\n    <Data>\\n        <Content>\\n            <Checker/>\\n            <PayeeAddress>浙江省杭州市西湖区杭大路9号聚龙大厦西区15-18楼0571-87901580</PayeeAddress>\\n            <PayeeName>三号技术有限责任公司</PayeeName>\\n            <PayerAddress/>\\n            <AntiFakeCode>60966753003521159330</AntiFakeCode>\\n            <PayerBankName/>\\n            <InvoiceNo>3753869</InvoiceNo>\\n            <PayerRegisterNo>91420200000123403</PayerRegisterNo>\\n            <WithoutTaxAmount>82.08</WithoutTaxAmount>\\n            <InvoiceAmount>87</InvoiceAmount>\\n            <PayerName>三号技术有限责任公司</PayerName>\\n            <TaxAmount>4.92</TaxAmount>\\n            <PayeeBankName>中国银行浙江省分行35845832****</PayeeBankName>\\n            <Clerk/>\\n            <ItemName>餐饮服务</ItemName>\\n            <PayeeRegisterNo>91420200000123403</PayeeRegisterNo>\\n            <InvoiceCode>33002000411</InvoiceCode>\\n            <InvoiceDate>2020年12月15日</InvoiceDate>\\n            <SumAmount>87</SumAmount>\\n            <Payee/>\\n        </Content>\\n        <Box>\\n            <PayerRegisterNoes>118</PayerRegisterNoes>\\n            <PayerRegisterNoes>128</PayerRegisterNoes>\\n            <PayerRegisterNoes>278</PayerRegisterNoes>\\n            <PayerRegisterNoes>138</PayerRegisterNoes>\\n            <PayerAddresses>0</PayerAddresses>\\n            <PayerAddresses>0</PayerAddresses>\\n            <PayerAddresses>0</PayerAddresses>\\n            <PayerAddresses>0</PayerAddresses>\\n            <InvoiceAmounts>207</InvoiceAmounts>\\n            <InvoiceAmounts>347</InvoiceAmounts>\\n            <InvoiceAmounts>278</InvoiceAmounts>\\n            <InvoiceAmounts>355</InvoiceAmounts>\\n            <InvoiceDates>585</InvoiceDates>\\n            <InvoiceDates>60</InvoiceDates>\\n            <InvoiceDates>675</InvoiceDates>\\n            <InvoiceDates>69</InvoiceDates>\\n            <PayeeAddresses>118</PayeeAddresses>\\n            <PayeeAddresses>407</PayeeAddresses>\\n            <PayeeAddresses>407</PayeeAddresses>\\n            <PayeeAddresses>415</PayeeAddresses>\\n            <Clerks>0</Clerks>\\n            <Clerks>0</Clerks>\\n            <Clerks>0</Clerks>\\n            <Clerks>0</Clerks>\\n            <WithoutTaxAmounts>546</WithoutTaxAmounts>\\n            <WithoutTaxAmounts>327</WithoutTaxAmounts>\\n            <WithoutTaxAmounts>584</WithoutTaxAmounts>\\n            <WithoutTaxAmounts>337</WithoutTaxAmounts>\\n            <Checkers>0</Checkers>\\n            <Checkers>0</Checkers>\\n            <Checkers>0</Checkers>\\n            <Checkers>0</Checkers>\\n            <TaxAmounts>696</TaxAmounts>\\n            <TaxAmounts>328</TaxAmounts>\\n            <TaxAmounts>724</TaxAmounts>\\n            <TaxAmounts>335</TaxAmounts>\\n            <InvoiceCodes>583</InvoiceCodes>\\n            <InvoiceCodes>16</InvoiceCodes>\\n            <InvoiceCodes>643</InvoiceCodes>\\n            <InvoiceCodes>25</InvoiceCodes>\\n            <SumAmounts>207</SumAmounts>\\n            <SumAmounts>347</SumAmounts>\\n            <SumAmounts>278</SumAmounts>\\n            <SumAmounts>355</SumAmounts>\\n            <ItemNames>0</ItemNames>\\n            <ItemNames>0</ItemNames>\\n            <ItemNames>0</ItemNames>\\n            <ItemNames>0</ItemNames>\\n            <PayerNames>119</PayerNames>\\n            <PayerNames>109</PayerNames>\\n            <PayerNames>237</PayerNames>\\n            <PayerNames>118</PayerNames>\\n            <InvoiceFakeCodes>583</InvoiceFakeCodes>\\n            <InvoiceFakeCodes>82</InvoiceFakeCodes>\\n            <InvoiceFakeCodes>700</InvoiceFakeCodes>\\n            <InvoiceFakeCodes>90</InvoiceFakeCodes>\\n            <PayeeBankNames>119</PayeeBankNames>\\n            <PayeeBankNames>423</PayeeBankNames>\\n            <PayeeBankNames>282</PayeeBankNames>\\n            <PayeeBankNames>431</PayeeBankNames>\\n            <PayeeNames>117</PayeeNames>\\n            <PayeeNames>371</PayeeNames>\\n            <PayeeNames>226</PayeeNames>\\n            <PayeeNames>381</PayeeNames>\\n            <Payees>0</Payees>\\n            <Payees>0</Payees>\\n            <Payees>0</Payees>\\n            <Payees>0</Payees>\\n            <InvoiceNoes>582</InvoiceNoes>\\n            <InvoiceNoes>38</InvoiceNoes>\\n            <InvoiceNoes>623</InvoiceNoes>\\n            <InvoiceNoes>46</InvoiceNoes>\\n            <PayerBankNames>0</PayerBankNames>\\n            <PayerBankNames>0</PayerBankNames>\\n            <PayerBankNames>0</PayerBankNames>\\n            <PayerBankNames>0</PayerBankNames>\\n            <PayeeRegisterNoes>119</PayeeRegisterNoes>\\n            <PayeeRegisterNoes>389</PayeeRegisterNoes>\\n            <PayeeRegisterNoes>247</PayeeRegisterNoes>\\n            <PayeeRegisterNoes>400</PayeeRegisterNoes>\\n        </Box>\\n    </Data>\\n</RecognizeVATInvoiceResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
        ],
        'RecognizeVINCode' => [
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'operationType' => 'read',
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'query',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeVINCode/vin1.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => '911FC8CF-CC27-477E-BE3B-7ED77DF4DFE0',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'VinCode' => [
                                        'description' => '',
                                        'example' => 'LVBB2FAF777999888',
                                        'type' => 'string',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"911FC8CF-CC27-477E-BE3B-7ED77DF4DFE0\\",\\n  \\"Data\\": {\\n    \\"VinCode\\": \\"LVBB2FAF777999888\\"\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeVINCodeResponse>\\n    <RequestId>911FC8CF-CC27-477E-BE3B-7ED77DF4DFE0</RequestId>\\n    <Data>\\n        <VinCode>LVBB2FAF777999888</VinCode>\\n    </Data>\\n</RecognizeVINCodeResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
        ],
        'RecognizePdf' => [
            'summary' => 'PDF识别',
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'FileURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'https://viapi-test.oss-cn-shanghai.aliyuncs.com/ocr/xxxx.pdf',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'title' => 'A short description of struct',
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => 'Schema of Response',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'CD9A9659-ABEE-4A7D-837F-9FDF40879A97',
                                'title' => 'Id of the request',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Height' => [
                                        'description' => '',
                                        'example' => '788',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Width' => [
                                        'description' => '',
                                        'example' => '1220',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'OrgHeight' => [
                                        'description' => '',
                                        'example' => '610',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'OrgWidth' => [
                                        'description' => '',
                                        'example' => '394',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'PageIndex' => [
                                        'description' => '',
                                        'example' => '1',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Angle' => [
                                        'description' => '',
                                        'example' => '0',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'WordsInfo' => [
                                        'description' => '',
                                        'items' => [
                                            'description' => '1',
                                            'properties' => [
                                                'Angle' => [
                                                    'description' => '',
                                                    'example' => '0',
                                                    'format' => 'int64',
                                                    'type' => 'integer',
                                                ],
                                                'Word' => [
                                                    'description' => '',
                                                    'example' => '',
                                                    'type' => 'string',
                                                ],
                                                'Height' => [
                                                    'description' => '',
                                                    'example' => '16',
                                                    'format' => 'int64',
                                                    'type' => 'integer',
                                                ],
                                                'Width' => [
                                                    'description' => '',
                                                    'example' => '205',
                                                    'format' => 'int64',
                                                    'type' => 'integer',
                                                ],
                                                'X' => [
                                                    'description' => '',
                                                    'example' => '863',
                                                    'format' => 'int64',
                                                    'type' => 'integer',
                                                ],
                                                'Y' => [
                                                    'description' => '',
                                                    'example' => '46',
                                                    'format' => 'int64',
                                                    'type' => 'integer',
                                                ],
                                                'Positions' => [
                                                    'description' => '',
                                                    'items' => [
                                                        'description' => '1',
                                                        'properties' => [
                                                            'X' => [
                                                                'description' => '',
                                                                'example' => '863',
                                                                'format' => 'int64',
                                                                'type' => 'integer',
                                                            ],
                                                            'Y' => [
                                                                'description' => '',
                                                                'example' => '43',
                                                                'format' => 'int64',
                                                                'type' => 'integer',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'type' => 'array',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'title' => 'Schema of Response',
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"CD9A9659-ABEE-4A7D-837F-9FDF40879A97\\",\\n  \\"Data\\": {\\n    \\"Height\\": 788,\\n    \\"Width\\": 1220,\\n    \\"OrgHeight\\": 610,\\n    \\"OrgWidth\\": 394,\\n    \\"PageIndex\\": 1,\\n    \\"Angle\\": 0,\\n    \\"WordsInfo\\": [\\n      {\\n        \\"Angle\\": 0,\\n        \\"Word\\": \\"发票代码:012002000211\\",\\n        \\"Height\\": 16,\\n        \\"Width\\": 205,\\n        \\"X\\": 863,\\n        \\"Y\\": 46,\\n        \\"Positions\\": [\\n          {\\n            \\"X\\": 863,\\n            \\"Y\\": 43\\n          }\\n        ]\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizePdfResponse>\\n    <RequestId>CD9A9659-ABEE-4A7D-837F-9FDF40879A97</RequestId>\\n    <Data>\\n        <WordsInfo>\\n            <Word>天津增值税</Word>\\n            <Angle>-88</Angle>\\n            <X>514</X>\\n            <Positions>\\n                <X>397</X>\\n                <Y>45</Y>\\n            </Positions>\\n            <Positions>\\n                <X>662</X>\\n                <Y>52</Y>\\n            </Positions>\\n            <Positions>\\n                <X>661</X>\\n                <Y>82</Y>\\n            </Positions>\\n            <Positions>\\n                <X>396</X>\\n                <Y>75</Y>\\n            </Positions>\\n            <Y>-69</Y>\\n            <Height>265</Height>\\n            <Width>29</Width>\\n        </WordsInfo>\\n        <WordsInfo>\\n            <Word>普通发票</Word>\\n            <Angle>0</Angle>\\n            <X>678</X>\\n            <Positions>\\n                <X>678</X>\\n                <Y>48</Y>\\n            </Positions>\\n            <Positions>\\n                <X>824</X>\\n                <Y>47</Y>\\n            </Positions>\\n            <Positions>\\n                <X>824</X>\\n                <Y>76</Y>\\n            </Positions>\\n            <Positions>\\n                <X>678</X>\\n                <Y>77</Y>\\n            </Positions>\\n            <Y>48</Y>\\n            <Height>29</Height>\\n            <Width>146</Width>\\n        </WordsInfo>\\n        <WordsInfo>\\n            <Word>发票代码:012002000211</Word>\\n            <Angle>0</Angle>\\n            <X>863</X>\\n            <Positions>\\n                <X>863</X>\\n                <Y>46</Y>\\n            </Positions>\\n            <Positions>\\n                <X>1068</X>\\n                <Y>46</Y>\\n            </Positions>\\n            <Positions>\\n                <X>1068</X>\\n                <Y>62</Y>\\n            </Positions>\\n            <Positions>\\n                <X>863</X>\\n                <Y>62</Y>\\n            </Positions>\\n            <Y>46</Y>\\n            <Height>16</Height>\\n            <Width>205</Width>\\n        </WordsInfo>\\n        <OrgWidth>610</OrgWidth>\\n        <Angle>0</Angle>\\n        <OrgHeight>394</OrgHeight>\\n        <Height>788</Height>\\n        <PageIndex>1</PageIndex>\\n        <Width>1220</Width>\\n    </Data>\\n</RecognizePdfResponse>","errorExample":""}]',
        ],
        'RecognizeTicketInvoice' => [
            'summary' => '增值税发票卷票',
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeTicketInvoice/RecognizeTicketInvoice1.png',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'title' => 'A short description of struct',
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => 'Schema of Response',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => '063C0178-7EA3-4754-96FB-C0C9AE6B9AAE',
                                'title' => 'Id of the request',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Count' => [
                                        'description' => '',
                                        'example' => '1',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Height' => [
                                        'description' => '',
                                        'example' => '594',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Width' => [
                                        'description' => '',
                                        'example' => '594',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'OrgHeight' => [
                                        'description' => '',
                                        'example' => '1417',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'OrgWidth' => [
                                        'description' => '',
                                        'example' => '1417',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Results' => [
                                        'description' => '',
                                        'items' => [
                                            'description' => '1',
                                            'properties' => [
                                                'Index' => [
                                                    'description' => '',
                                                    'example' => '1',
                                                    'format' => 'int64',
                                                    'type' => 'integer',
                                                ],
                                                'Content' => [
                                                    'description' => '',
                                                    'properties' => [
                                                        'InvoiceCode' => [
                                                            'description' => '',
                                                            'example' => '044031860107',
                                                            'type' => 'string',
                                                        ],
                                                        'InvoiceNumber' => [
                                                            'description' => '',
                                                            'example' => '09267581',
                                                            'type' => 'string',
                                                        ],
                                                        'InvoiceDate' => [
                                                            'description' => '',
                                                            'example' => '2018-09-20',
                                                            'type' => 'string',
                                                        ],
                                                        'AntiFakeCode' => [
                                                            'description' => '',
                                                            'example' => '81931914902643039780',
                                                            'type' => 'string',
                                                        ],
                                                        'PayeeName' => [
                                                            'description' => '',
                                                            'example' => '',
                                                            'type' => 'string',
                                                        ],
                                                        'PayeeRegisterNo' => [
                                                            'description' => '',
                                                            'example' => '914403002794492693',
                                                            'type' => 'string',
                                                        ],
                                                        'PayerName' => [
                                                            'description' => '',
                                                            'example' => '',
                                                            'type' => 'string',
                                                        ],
                                                        'PayerRegisterNo' => [
                                                            'description' => '',
                                                            'example' => '91440300MA5EXWHW6F',
                                                            'type' => 'string',
                                                        ],
                                                        'SumAmount' => [
                                                            'description' => '',
                                                            'example' => '¥220.00',
                                                            'type' => 'string',
                                                        ],
                                                    ],
                                                    'type' => 'object',
                                                ],
                                                'Type' => [
                                                    'description' => '',
                                                    'example' => '',
                                                    'type' => 'string',
                                                ],
                                                'KeyValueInfos' => [
                                                    'description' => '',
                                                    'items' => [
                                                        'description' => '1',
                                                        'properties' => [
                                                            'Key' => [
                                                                'description' => '',
                                                                'example' => '',
                                                                'type' => 'string',
                                                            ],
                                                            'Value' => [
                                                                'description' => '',
                                                                'example' => '044031860107',
                                                                'type' => 'string',
                                                            ],
                                                            'ValuePositions' => [
                                                                'description' => '',
                                                                'items' => [
                                                                    'description' => '1',
                                                                    'properties' => [
                                                                        'X' => [
                                                                            'description' => '',
                                                                            'example' => '586',
                                                                            'format' => 'int64',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'Y' => [
                                                                            'description' => '',
                                                                            'example' => '16',
                                                                            'format' => 'int64',
                                                                            'type' => 'integer',
                                                                        ],
                                                                    ],
                                                                    'type' => 'object',
                                                                ],
                                                                'type' => 'array',
                                                            ],
                                                            'ValueScore' => [
                                                                'description' => '',
                                                                'example' => '100',
                                                                'format' => 'float',
                                                                'type' => 'number',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                                'SliceRectangle' => [
                                                    'description' => '',
                                                    'items' => [
                                                        'description' => '1',
                                                        'properties' => [
                                                            'X' => [
                                                                'description' => '',
                                                                'example' => '586',
                                                                'format' => 'int64',
                                                                'type' => 'integer',
                                                            ],
                                                            'Y' => [
                                                                'description' => '',
                                                                'example' => '16',
                                                                'format' => 'int64',
                                                                'type' => 'integer',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'type' => 'array',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'title' => 'Schema of Response',
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"063C0178-7EA3-4754-96FB-C0C9AE6B9AAE\\",\\n  \\"Data\\": {\\n    \\"Count\\": 1,\\n    \\"Height\\": 594,\\n    \\"Width\\": 594,\\n    \\"OrgHeight\\": 1417,\\n    \\"OrgWidth\\": 1417,\\n    \\"Results\\": [\\n      {\\n        \\"Index\\": 1,\\n        \\"Content\\": {\\n          \\"InvoiceCode\\": \\"044031860107\\",\\n          \\"InvoiceNumber\\": \\"09267581\\",\\n          \\"InvoiceDate\\": \\"2018-09-20\\",\\n          \\"AntiFakeCode\\": \\"81931914902643039780\\",\\n          \\"PayeeName\\": \\"深圳市xxxx有限公司\\",\\n          \\"PayeeRegisterNo\\": \\"914403002794492693\\",\\n          \\"PayerName\\": \\"深圳市xxxx有限公司\\",\\n          \\"PayerRegisterNo\\": \\"91440300MA5EXWHW6F\\",\\n          \\"SumAmount\\": \\"¥220.00\\"\\n        },\\n        \\"Type\\": \\"卷票\\",\\n        \\"KeyValueInfos\\": [\\n          {\\n            \\"Key\\": \\"发票代码\\",\\n            \\"Value\\": \\"044031860107\\",\\n            \\"ValuePositions\\": [\\n              {\\n                \\"X\\": 586,\\n                \\"Y\\": 16\\n              }\\n            ],\\n            \\"ValueScore\\": 100\\n          }\\n        ],\\n        \\"SliceRectangle\\": [\\n          {\\n            \\"X\\": 586,\\n            \\"Y\\": 16\\n          }\\n        ]\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeTicketInvoiceResponse>\\n    <RequestId>063C0178-7EA3-4754-96FB-C0C9AE6B9AAE</RequestId>\\n    <Data>\\n        <OrgWidth>594</OrgWidth>\\n        <Results>\\n            <Type>卷票</Type>\\n            <SliceRectangle>\\n                <X>2</X>\\n                <Y>19</Y>\\n            </SliceRectangle>\\n            <SliceRectangle>\\n                <X>586</X>\\n                <Y>16</Y>\\n            </SliceRectangle>\\n            <SliceRectangle>\\n                <X>580</X>\\n                <Y>1408</Y>\\n            </SliceRectangle>\\n            <SliceRectangle>\\n                <X>0</X>\\n                <Y>1410</Y>\\n            </SliceRectangle>\\n            <KeyValueInfos>\\n                <Value>44031860107</Value>\\n                <ValueScore>100</ValueScore>\\n                <Key>发票代码</Key>\\n            </KeyValueInfos>\\n            <KeyValueInfos>\\n                <Value>9267581</Value>\\n                <ValueScore>100</ValueScore>\\n                <Key>发票号码</Key>\\n            </KeyValueInfos>\\n            <KeyValueInfos>\\n                <Value>2018-09-20</Value>\\n                <ValueScore>100</ValueScore>\\n                <Key>开票日期</Key>\\n            </KeyValueInfos>\\n            <KeyValueInfos>\\n                <Value>81931914902643030000</Value>\\n                <ValueScore>100</ValueScore>\\n                <Key>校验码</Key>\\n            </KeyValueInfos>\\n            <KeyValueInfos>\\n                <Value>深圳市xxxx有限公司</Value>\\n                <ValueScore>100</ValueScore>\\n                <Key>销售方名称</Key>\\n            </KeyValueInfos>\\n            <KeyValueInfos>\\n                <Value>914403002794492700</Value>\\n                <ValueScore>100</ValueScore>\\n                <Key>销售方税号</Key>\\n            </KeyValueInfos>\\n            <KeyValueInfos>\\n                <Value>深圳市xxxx有限公司</Value>\\n                <ValueScore>100</ValueScore>\\n                <Key>购买方名称</Key>\\n            </KeyValueInfos>\\n            <KeyValueInfos>\\n                <Value>91440300MA5EXWHW6F</Value>\\n                <ValueScore>99</ValueScore>\\n                <Key>购买方税号</Key>\\n            </KeyValueInfos>\\n            <KeyValueInfos>\\n                <Value>¥220.00</Value>\\n                <ValueScore>99</ValueScore>\\n                <Key>总价</Key>\\n            </KeyValueInfos>\\n            <Content>\\n                <PayeeName>深圳市xxxx有限公司</PayeeName>\\n                <AntiFakeCode>81931914902643030000</AntiFakeCode>\\n                <InvoiceCode>44031860107</InvoiceCode>\\n                <PayeeRegisterNo>914403002794492700</PayeeRegisterNo>\\n                <PayerRegisterNo>91440300MA5EXWHW6F</PayerRegisterNo>\\n                <InvoiceNumber>9267581</InvoiceNumber>\\n                <InvoiceDate>2018-09-20</InvoiceDate>\\n                <PayerName>深圳市xxxx有限公司</PayerName>\\n                <SumAmount>¥220.00</SumAmount>\\n            </Content>\\n            <Index>1</Index>\\n        </Results>\\n        <OrgHeight>1417</OrgHeight>\\n        <Height>1417</Height>\\n        <Count>1</Count>\\n        <Width>594</Width>\\n    </Data>\\n</RecognizeTicketInvoiceResponse>","errorExample":""}]',
        ],
        'RecognizeQuotaInvoice' => [
            'summary' => '定额发票识别',
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'ImageURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/ocr/RecognizeQuotaInvoice/RecognizeQuotaInvoice1.jpg',
                        'isFileTransferUrl' => true,
                        'required' => true,
                        'type' => 'string',
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => 'Schema of Response',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'BC4C12D0-7FD3-419A-B997-A91212DF6D82',
                                'title' => 'Id of the request',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Angle' => [
                                        'description' => '',
                                        'example' => '1',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Height' => [
                                        'description' => '',
                                        'example' => '624',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Width' => [
                                        'description' => '',
                                        'example' => '865',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'OrgHeight' => [
                                        'description' => '',
                                        'example' => '610',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'OrgWidth' => [
                                        'description' => '',
                                        'example' => '855',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Content' => [
                                        'description' => '',
                                        'properties' => [
                                            'SumAmount' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                            'InvoiceCode' => [
                                                'description' => '',
                                                'example' => '144031800103',
                                                'type' => 'string',
                                            ],
                                            'InvoiceNo' => [
                                                'description' => '',
                                                'example' => '40637706',
                                                'type' => 'string',
                                            ],
                                            'InvoiceAmount' => [
                                                'description' => '',
                                                'example' => '10',
                                                'type' => 'string',
                                            ],
                                            'InvoiceDetails' => [
                                                'description' => '',
                                                'example' => '',
                                                'type' => 'string',
                                            ],
                                        ],
                                        'type' => 'object',
                                    ],
                                    'KeyValueInfos' => [
                                        'description' => '',
                                        'items' => [
                                            'description' => '1',
                                            'properties' => [
                                                'Key' => [
                                                    'description' => '',
                                                    'example' => '',
                                                    'type' => 'string',
                                                ],
                                                'Value' => [
                                                    'description' => '',
                                                    'example' => '',
                                                    'type' => 'string',
                                                ],
                                                'ValuePositions' => [
                                                    'description' => '',
                                                    'items' => [
                                                        'description' => '1',
                                                        'properties' => [
                                                            'X' => [
                                                                'description' => '',
                                                                'example' => '544',
                                                                'format' => 'int64',
                                                                'type' => 'integer',
                                                            ],
                                                            'Y' => [
                                                                'description' => '',
                                                                'example' => '387',
                                                                'format' => 'int64',
                                                                'type' => 'integer',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                                'ValueScore' => [
                                                    'description' => '',
                                                    'example' => '100',
                                                    'format' => 'float',
                                                    'type' => 'number',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'type' => 'array',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                        ],
                        'title' => 'Schema of Response',
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"BC4C12D0-7FD3-419A-B997-A91212DF6D82\\",\\n  \\"Data\\": {\\n    \\"Angle\\": 1,\\n    \\"Height\\": 624,\\n    \\"Width\\": 865,\\n    \\"OrgHeight\\": 610,\\n    \\"OrgWidth\\": 855,\\n    \\"Content\\": {\\n      \\"SumAmount\\": \\"壹拾元整\\",\\n      \\"InvoiceCode\\": \\"144031800103\\",\\n      \\"InvoiceNo\\": \\"40637706\\",\\n      \\"InvoiceAmount\\": \\"10\\",\\n      \\"InvoiceDetails\\": \\"税务局代码:国税,行政区划代码:深圳市,年份:2018,发票行业代码:None,发票类别代码:None,金额版:万元版,批次号:03\\"\\n    },\\n    \\"KeyValueInfos\\": [\\n      {\\n        \\"Key\\": \\"大写金额\\",\\n        \\"Value\\": \\"壹拾元整\\",\\n        \\"ValuePositions\\": [\\n          {\\n            \\"X\\": 544,\\n            \\"Y\\": 387\\n          }\\n        ],\\n        \\"ValueScore\\": 100\\n      }\\n    ]\\n  }\\n}","errorExample":""},{"type":"xml","example":"<RecognizeQuotaInvoiceResponse>\\n    <RequestId>BC4C12D0-7FD3-419A-B997-A91212DF6D82</RequestId>\\n    <Data>\\n        <OrgWidth>855</OrgWidth>\\n        <Angle>1</Angle>\\n        <KeyValueInfos>\\n            <ValuePositions>\\n                <X>544</X>\\n                <Y>387</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>544</X>\\n                <Y>443</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>308</X>\\n                <Y>443</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>308</X>\\n                <Y>387</Y>\\n            </ValuePositions>\\n            <Value>壹拾元整</Value>\\n            <ValueScore>100</ValueScore>\\n            <Key>大写金额</Key>\\n        </KeyValueInfos>\\n        <KeyValueInfos>\\n            <ValuePositions>\\n                <X>310</X>\\n                <Y>237</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>575</X>\\n                <Y>234</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>576</X>\\n                <Y>259</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>311</X>\\n                <Y>262</Y>\\n            </ValuePositions>\\n            <Value>144031800103</Value>\\n            <ValueScore>100</ValueScore>\\n            <Key>发票代码</Key>\\n        </KeyValueInfos>\\n        <KeyValueInfos>\\n            <ValuePositions>\\n                <X>480</X>\\n                <Y>298</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>480</X>\\n                <Y>321</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>309</X>\\n                <Y>321</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>309</X>\\n                <Y>298</Y>\\n            </ValuePositions>\\n            <Value>40637706</Value>\\n            <ValueScore>100</ValueScore>\\n            <Key>发票号码</Key>\\n        </KeyValueInfos>\\n        <KeyValueInfos>\\n            <Value/>\\n            <ValueScore>100</ValueScore>\\n            <Key>小写金额</Key>\\n        </KeyValueInfos>\\n        <KeyValueInfos>\\n            <ValuePositions>\\n                <X>310</X>\\n                <Y>237</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>575</X>\\n                <Y>234</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>576</X>\\n                <Y>259</Y>\\n            </ValuePositions>\\n            <ValuePositions>\\n                <X>311</X>\\n                <Y>262</Y>\\n            </ValuePositions>\\n            <Value>税务局代码:国税,行政区划代码:深圳市,年份:2018,发票行业代码:None,发票类别代码:None,金额版:万元版,批次号:03</Value>\\n            <ValueScore>100</ValueScore>\\n            <Key>发票代码解析</Key>\\n        </KeyValueInfos>\\n        <Content>\\n            <InvoiceDetails>{\\"批次号\\":\\"03\\",\\"年份\\":\\"2018\\",\\"税务局代码\\":\\"国税\\",\\"发票行业代码\\":\\"None\\",\\"金额版\\":\\"万元版\\",\\"行政区划代码\\":\\"深圳市\\",\\"发票类别代码\\":\\"None\\"}</InvoiceDetails>\\n            <InvoiceCode>144031800103</InvoiceCode>\\n            <InvoiceNo>40637706</InvoiceNo>\\n            <InvoiceAmount/>\\n            <SumAmount>壹拾元整</SumAmount>\\n        </Content>\\n        <OrgHeight>610</OrgHeight>\\n        <Height>624</Height>\\n        <Width>865</Width>\\n    </Data>\\n</RecognizeQuotaInvoiceResponse>","errorExample":""}]',
        ],
        'RecognizeVideoCharacter' => [
            'summary' => '通用视频文字识别',
            'methods' => [
                'post',
            ],
            'schemes' => [
                'http',
                'https',
            ],
            'security' => [
                [
                    'AK' => [],
                ],
            ],
            'deprecated' => false,
            'systemTags' => [],
            'parameters' => [
                [
                    'name' => 'VideoURL',
                    'in' => 'formData',
                    'schema' => [
                        'description' => '',
                        'example' => 'http://viapi-test.oss-cn-shanghai.aliyuncs.com/viapi-3.0domepic/videoenhan/RecognizeVideoCharacter/xxxx.mp4',
                        'required' => true,
                        'title' => '视频文件地址',
                        'type' => 'string',
                        'isFileTransferUrl' => true,
                    ],
                ],
            ],
            'responses' => [
                200 => [
                    'schema' => [
                        'description' => '1',
                        'properties' => [
                            'RequestId' => [
                                'description' => '',
                                'example' => 'D3F5BA69-79C4-46A4-B02B-58C4EEBC4C33',
                                'title' => 'Id of the request',
                                'type' => 'string',
                            ],
                            'Data' => [
                                'description' => '',
                                'properties' => [
                                    'Width' => [
                                        'description' => '',
                                        'example' => '1920',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Height' => [
                                        'description' => '',
                                        'example' => '1080',
                                        'format' => 'int64',
                                        'type' => 'integer',
                                    ],
                                    'Frames' => [
                                        'description' => '',
                                        'items' => [
                                            'properties' => [
                                                'Timestamp' => [
                                                    'description' => '',
                                                    'example' => '6124533574',
                                                    'format' => 'int64',
                                                    'title' => '帧时间戳时间戳,单位秒。',
                                                    'type' => 'integer',
                                                ],
                                                'Elements' => [
                                                    'items' => [
                                                        'properties' => [
                                                            'Score' => [
                                                                'description' => '',
                                                                'example' => '0.99',
                                                                'format' => 'float',
                                                                'title' => '文字区域概率,概率值的范围为[0.0, 1.0]',
                                                                'type' => 'number',
                                                            ],
                                                            'Text' => [
                                                                'description' => '',
                                                                'example' => '',
                                                                'title' => '文字内容',
                                                                'type' => 'string',
                                                            ],
                                                            'TextRectangles' => [
                                                                'description' => '',
                                                                'items' => [
                                                                    'properties' => [
                                                                        'Angle' => [
                                                                            'description' => '',
                                                                            'example' => '-90',
                                                                            'format' => 'int64',
                                                                            'title' => '文字区域角度,角度范围[0, 360]',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'Left' => [
                                                                            'description' => '',
                                                                            'example' => '213',
                                                                            'format' => 'int64',
                                                                            'title' => '文字区域左上角x坐标',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'Top' => [
                                                                            'description' => '',
                                                                            'example' => '98',
                                                                            'format' => 'int64',
                                                                            'title' => '文字区域左上角y坐标',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'Width' => [
                                                                            'description' => '',
                                                                            'example' => '46',
                                                                            'format' => 'int64',
                                                                            'title' => '文字区域宽度',
                                                                            'type' => 'integer',
                                                                        ],
                                                                        'Height' => [
                                                                            'description' => '',
                                                                            'example' => '213',
                                                                            'format' => 'int64',
                                                                            'title' => '文字区域高度',
                                                                            'type' => 'integer',
                                                                        ],
                                                                    ],
                                                                    'type' => 'object',
                                                                ],
                                                                'type' => 'array',
                                                            ],
                                                        ],
                                                        'type' => 'object',
                                                    ],
                                                    'type' => 'array',
                                                ],
                                            ],
                                            'type' => 'object',
                                        ],
                                        'title' => '视频帧的集合,空信息的帧不列出。',
                                        'type' => 'array',
                                    ],
                                    'InputFile' => [
                                        'description' => '',
                                        'example' => 'oss://my-bucket/a/b/c.mp4',
                                        'title' => '对应的输入OSS文件 (格式oss://{bucketName}/{object})',
                                        'type' => 'string',
                                    ],
                                ],
                                'type' => 'object',
                            ],
                            'Message' => [
                                'type' => 'string',
                            ],
                        ],
                        'title' => 'Schema of Response',
                        'type' => 'object',
                    ],
                ],
            ],
            'errorCodes' => [
                400 => [
                    [
                        'errorCode' => 'ParameterError',
                        'errorMessage' => 'The parameter is invalid. Please check again.',
                    ],
                ],
                403 => [
                    [
                        'errorCode' => 'AuthFailed',
                        'errorMessage' => 'An error occurred while performing authorization. Please check your RAM configuration.',
                    ],
                ],
                408 => [
                    [
                        'errorCode' => 'Timeout',
                        'errorMessage' => 'The request has timed out.',
                    ],
                ],
                503 => [
                    [
                        'errorCode' => 'ServiceUnavailable',
                        'errorMessage' => 'The service is unavailable.',
                    ],
                ],
            ],
            'responseDemo' => '[{"type":"json","example":"{\\n  \\"RequestId\\": \\"D3F5BA69-79C4-46A4-B02B-58C4EEBC4C33\\",\\n  \\"Data\\": {\\n    \\"Width\\": 1920,\\n    \\"Height\\": 1080,\\n    \\"Frames\\": [\\n      {\\n        \\"Timestamp\\": 6124533574,\\n        \\"Elements\\": [\\n          {\\n            \\"Score\\": 0.99,\\n            \\"Text\\": \\"在桃花盛开的地方\\",\\n            \\"TextRectangles\\": [\\n              {\\n                \\"Angle\\": -90,\\n                \\"Left\\": 213,\\n                \\"Top\\": 98,\\n                \\"Width\\": 46,\\n                \\"Height\\": 213\\n              }\\n            ]\\n          }\\n        ]\\n      }\\n    ],\\n    \\"InputFile\\": \\"oss://my-bucket/a/b/c.mp4\\"\\n  },\\n  \\"Message\\": \\"该调用为异步调用,任务已提交成功,请以requestId的值作为jobId参数调用同类目下GetAsyncJobResult接口查询任务执行状态和结果。\\"\\n}","errorExample":""},{"type":"xml","example":"<RecognizeVideoCharacterResponse>\\n    <RequestId>D3F5BA69-79C4-46A4-B02B-58C4EEBC4C33</RequestId>\\n    <Message>该调用为异步调用,任务已提交成功,请以requestId的值作为jobId参数调用同类目下GetAsyncJobResult接口查询任务执行状态和结果。</Message>\\n</RecognizeVideoCharacterResponse>","errorExample":""}]',
            'requestParamsDescription' => ' ',
            'responseParamsDescription' => ' ',
        ],
    ],
    'endpoints' => [
        [
            'regionId' => 'cn-shanghai',
            'endpoint' => 'ocr.cn-shanghai.aliyuncs.com',
        ],
    ],
];