-
Notifications
You must be signed in to change notification settings - Fork 1
/
smaregi-api.yaml
3960 lines (3960 loc) · 101 KB
/
smaregi-api.yaml
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
openapi: 3.0.0
servers:
- url: "https://api.smaregi.dev"
description: 開発環境
- url: "https://api.smaregi.jp"
description: 本番環境
info:
description: ""
version: 1.0.0
title: スマレジ
termsOfService: ""
contact:
email: ""
tags: []
paths:
"/{contract_id}/pos/customers":
get:
summary: 会員情報一覧を取得します。
operationId: getCustomers
responses:
"200":
description: Ok
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/getCustomersItem"
"400":
description: Bad Request
content:
application/json:
schema:
$ref: "#/components/schemas/error"
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/limit"
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/customer_code_query"
post:
summary: 会員情報を登録します。
description: ""
operationId: createCustomers
responses:
"200":
description: Ok
content:
application/json:
schema:
$ref: "#/components/schemas/CustomersResponseOfCreate"
"400":
description: Bad Request
content:
application/json:
schema:
$ref: "#/components/schemas/error"
parameters:
- $ref: "#/components/parameters/contract_id"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/createCustomers"
"/{contract_id}/pos/customers/{customer_id}":
patch:
summary: ""
operationId: updateCustomers
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/CustomersResponseOfCreate"
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/patchCustomers"
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/customer_id"
delete:
summary: 会員情報を削除します。
operationId: deleteCustomers
responses:
"200":
description: OK
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/customer_id"
"/{contract_id}/pos/transactions":
get:
summary: 取引情報一覧を取得します。
responses:
"200":
description: OK
content:
application/json:
schema:
type: array
description: ""
items:
$ref: "#/components/schemas/getTransactionItem"
operationId: getTransaction
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/sum_date"
- $ref: "#/components/parameters/with_layaway"
- $ref: "#/components/parameters/limit"
- $ref: "#/components/parameters/page"
- schema:
type: string
in: query
name: upd_date_time-to
description: "更新日時(To):登録時・更新時の日時。[YYYY-MM-DDThh:mm:ssTZD]"
- schema:
type: string
in: query
name: upd_date_time-from
description: "更新日時(From):登録時・更新時の日時。[YYYY-MM-DDThh:mm:ssTZD]"
- schema:
type: string
in: query
name: customer_code
description: 会員コード
- $ref: "#/components/parameters/transaction_head_division"
- $ref: "#/components/parameters/sort"
- $ref: "#/components/parameters/terminal_tran_date_time-from"
- $ref: "#/components/parameters/terminal_tran_date_time-to"
- schema:
type: integer
in: query
name: store_id
description: 店舗ID
- schema:
type: string
in: query
name: transaction_head_id-to
description: 取引ID(To)
- schema:
type: string
in: query
name: transaction_head_id-from
description: 取引ID(From)
"/{contract_id}/pos/transactions/{transaction_id}":
get:
summary: 取引情報を取得します。
operationId: getTransactionId
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/transaction_id"
- $ref: "#/components/parameters/with_coupons"
- $ref: "#/components/parameters/with_details"
- $ref: "#/components/parameters/with_store"
- $ref: "#/components/parameters/with_customer"
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/getTransactionId"
"404":
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/error"
"/{contract_id}/pos/transactions/{transaction_id}/customer":
patch:
summary: 取引会員更新
operationId: updateTransactionForCustomer
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/getTransactionId"
description: "取引の会員情報を更新します。 "
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/updateTransactionForCustomerRequest"
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/transaction_id"
"/{contract_id}/pos/transactions/layaways":
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/sum_date"
- $ref: "#/components/parameters/with_layaway"
get:
summary: 取置き一覧を取得します。
tags: []
responses:
"200":
description: OK
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/getLayawayListItem"
operationId: getLayawayList
"/{contract_id}/pos/transactions/layaways/{layaway_id}":
parameters:
- $ref: "#/components/parameters/contract_id"
- schema:
type: string
name: layaway_id
in: path
required: true
- $ref: "#/components/parameters/with_details"
- $ref: "#/components/parameters/with_store"
- $ref: "#/components/parameters/with_customer"
get:
summary: Your GET endpoint
tags: []
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/getLayawayById"
operationId: getLayawayById
"/{contract_id}/pos/coupons":
parameters:
- $ref: "#/components/parameters/contract_id"
get:
summary: Your GET endpoint
tags: []
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/getCouponsResponse"
operationId: getCoupons
description: クーポンの一覧を取得します。
post:
summary: ""
operationId: postCreateCoupons
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/coupon"
description: "クーポンを登録します。 "
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/postCreateCoupons"
"/{contract_id}/pos/coupons/{coupon_id}":
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/coupon_id"
delete:
summary: ""
operationId: deleteCoupons
responses:
"200":
description: OK
description: "指定されたクーポンを削除します。 "
"/{contract_id}/pos/stores":
parameters:
- $ref: "#/components/parameters/contract_id"
get:
summary: 店舗一覧取得
tags: []
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/getStoresResponse"
examples: {}
operationId: getStores
description: "店舗情報一覧を取得します。 "
parameters:
- $ref: "#/components/parameters/limit"
- $ref: "#/components/parameters/with_point_condition"
"/{contract_id}/pos/customers/{customer_id}/point":
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/customer_id"
patch:
summary: 会員ポイント更新
operationId: updateCustomerPoint
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/updateCustomerPointResponse"
"404":
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/error"
description: |-
会員ポイント情報を更新します。
ポイントおよびマイルは、入力された値と同じになるよう更新します。
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/updateCustomerPointRequest"
description: ""
"/{contract_id}/pos/customers/{customer_id}/point/add":
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/customer_id"
post:
summary: ""
operationId: updateCustomerPointRelative
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/updateCustomerPointResponse"
"400":
description: Bad Request
content:
application/json:
schema:
$ref: "#/components/schemas/error"
"404":
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/error"
description: |-
会員ポイント情報を更新します。
ポイントおよびマイルは、現在の値に対し、入力された値を加算(入力値が負の場合は減算)した値に更新します。
現在値参照にあたりポイント有効期限を参照し、ポイント残高がありかつ期限が切れていれば期限切れ分のポイント失効処理を行ってから加算を行います(失効で0になっているので減算はエラー)。
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/updateCustomerPointRequest"
"/{contract_id}/pos/customers/point":
parameters:
- $ref: "#/components/parameters/contract_id"
get:
summary: 会員ポイント一覧取得
tags: []
responses:
"200":
$ref: "#/components/responses/getCustomerPointListResponse"
operationId: getCustomerPointList
parameters:
- $ref: "#/components/parameters/limit"
- $ref: "#/components/parameters/page"
- $ref: "#/components/parameters/with_customer_id"
description: |-
会員ポイント情報一覧を取得します。
参照にあたりポイント有効期限を参照し、ポイント残高がありかつ期限が切れていれば期限切れ分のポイント失効処理を行ってから返します。
"/{contract_id}/pos/stores/{store_id}":
parameters:
- $ref: "#/components/parameters/contract_id"
- $ref: "#/components/parameters/store_id"
patch:
summary: 店舗更新
operationId: updateStore
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/updateStoreResponse"
"400":
description: Bad Request
content:
application/json:
schema:
$ref: "#/components/schemas/error"
"403":
description: Forbidden
content:
application/json:
schema:
$ref: "#/components/schemas/error"
"404":
description: Not Found
content:
application/json:
schema:
$ref: "#/components/schemas/error"
description: "店舗情報を更新します。 "
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/updateStoreRequest"
"/{contract_id}/pos/customer_required_column_setting":
parameters:
- $ref: "#/components/parameters/contract_id"
get:
summary: 会員必須項目設定取得
operationId: getCustomerRequiredColumnSetting
tags: []
responses:
"200":
description: OK
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/getCustomerRequiredColumnSettingResponse"
security:
- AccessToken: []
components:
securitySchemes:
AccessToken:
name: Authorization
type: http
scheme: bearer
in: header
parameters:
transaction_id:
name: transaction_id
in: path
required: true
schema:
type: string
description: 取引id
contract_id:
name: contract_id
in: path
required: true
schema:
type: string
description: 契約id
customer_id:
name: customer_id
in: path
required: true
schema:
type: string
description: 顧客id
coupon_id:
name: coupon_id
in: path
required: true
schema:
type: string
description: クーポンid
customer_code_query:
name: customer_code
description: 顧客コード
in: query
schema:
type: string
sum_date:
name: sum_date
in: query
description: "締め日 [YYYY-MM-DD]"
schema:
type: string
limit:
name: limit
in: query
description: 一度に返すアイテム数 (上限 1000)
schema:
type: integer
page:
name: page
in: query
description: ページ
schema:
type: integer
with_layaway:
in: query
name: with_layaway
description: "取置き情報を付加するか(付加する場合はall, しない場合はnone)"
schema:
$ref: "#/components/schemas/with_enum"
with_coupons:
in: query
name: with_coupons
description: "クーポン情報を付加するか(付加する場合はall, しない場合はnone)"
schema:
$ref: "#/components/schemas/with_enum"
with_details:
in: query
name: with_details
description: "取引明細情報を付加するか(全項目付加する場合はall, 一部項目を付加する場合はsummary, しない場合はnone)"
schema:
$ref: "#/components/schemas/with_details"
with_store:
in: query
name: with_store
description: "店舗情報を付加するか(付加する場合はall, しない場合はnone)"
schema:
$ref: "#/components/schemas/with_enum"
with_customer:
in: query
name: with_customer
description: "会員情報を付加するか(付加する場合はall, しない場合はnone)"
schema:
$ref: "#/components/schemas/with_enum"
with_point_condition:
in: query
name: with_point_condition
description: "ポイント情報を付加するか(付加する場合はall, しない場合はnone)"
schema:
$ref: "#/components/schemas/with_enum"
store_id:
name: store_id
in: path
required: true
schema:
type: string
description: 店舗id
transaction_head_division:
name: transaction_head_division
in: query
required: false
schema:
$ref: "#/components/schemas/transactionHeadDivision"
sort:
name: sort
in: query
required: false
schema:
$ref: "#/components/schemas/sort"
terminal_tran_date_time-from:
name: terminal_tran_date_time-from
in: query
required: false
schema:
type: string
description: "端末取引日時(From):端末で設定された取引日時。[YYYY-MM-DDThh:mm:ssTZD]"
terminal_tran_date_time-to:
name: terminal_tran_date_time-to
in: query
required: false
schema:
type: string
description: "端末取引日時(To):端末で設定された取引日時。[YYYY-MM-DDThh:mm:ssTZD]"
with_customer_id:
name: customer_id
in: query
required: false
schema:
type: string
description: 顧客id
schemas:
with_details:
type: string
title: with_*
enum:
- all
- summary
- none
default: none
with_enum:
type: string
title: with_*
enum:
- all
- none
default: none
sex:
type: string
title: sex
enum:
- "0"
- "1"
- "2"
default: "0"
x-enum-varnames:
- UnKnown
- Male
- Female
description: "(0:不明、1:男、2:女)"
mailReceiveFlag:
type: string
title: mailReceiveFlag
enum:
- "0"
- "1"
default: "1"
x-enum-varnames:
- Deny
- Allow
description: |
(0:拒否、1:許可)
status:
type: string
title: status
enum:
- "0"
- "1"
- "2"
- "3"
- "4"
x-enum-varnames:
- Enabled
- Disabled
- Lost
- Withdrawn
- Merged
description: "(0:利用可、1:利用停止、2:紛失、3:退会、4:名寄せ)"
pointUpdateDivision:
type: string
title: pointUpdateDivision
enum:
- 0
- 1
- 2
x-enum-varnames:
- NotUpdated
- MovePoint
- RecalculatePoint
description: |-
会員ポイントの更新フラグ。
0:(デフォルト値):ポイント変動なし
1:変動あり(対象取引によって実際に加算・減算されたポイントの差分を、更新前のユーザーから更新後のユーザーに付け替える形で更新)
2:変動あり(更新前・更新後の会員それぞれに対して、現在の会員個人設定または会員ランク、店舗のポイント付与区分を対象取引の内容に照らして、再計算した当該取引におけるポイント差分を反映する形で更新)
createCustomers:
description: ""
type: object
properties:
customerCode:
type: string
minLength: 1
customerNo:
type: string
minLength: 1
rank:
type: string
minLength: 1
staffRank:
type: string
minLength: 1
firstName:
type: string
minLength: 1
lastName:
type: string
minLength: 1
firstKana:
type: string
minLength: 1
lastKana:
type: string
minLength: 1
postCode:
type: string
minLength: 1
address:
type: string
minLength: 1
phoneNumber:
type: string
minLength: 1
faxNumber:
type: string
minLength: 1
mobileNumber:
type: string
minLength: 1
mailAddress:
type: string
minLength: 1
mailAddress2:
type: string
minLength: 1
mailAddress3:
type: string
minLength: 1
companyName:
type: string
minLength: 1
departmentName:
type: string
minLength: 1
managerialPosition:
type: string
minLength: 1
sex:
$ref: "#/components/schemas/sex"
birthDate:
type: string
minLength: 1
pointExpireDate:
type: string
minLength: 1
entryDate:
type: string
minLength: 1
leaveDate:
type: string
minLength: 1
pointGivingUnitPrice:
type: string
minLength: 1
pointGivingUnit:
type: string
minLength: 1
pinCode:
type: string
minLength: 1
passportNo:
type: string
minLength: 1
nationality:
type: string
minLength: 1
alphabetName:
type: string
minLength: 1
mailReceiveFlag:
$ref: "#/components/schemas/mailReceiveFlag"
note:
type: string
minLength: 1
note2:
type: string
minLength: 1
favoriteList:
type: string
minLength: 1
browsingList:
type: string
minLength: 1
status:
$ref: "#/components/schemas/status"
storeId:
type: string
minLength: 1
required:
- customerCode
- firstName
- lastName
CustomersResponseOfCreate:
description: POS APIの型表現にバグと思われる矛盾があるため、CustomersResponseを流用できない
type: object
properties:
customerId:
type: object
minLength: 1
customerCode:
type: string
minLength: 1
customerNo:
type: string
minLength: 1
rank:
type: string
minLength: 1
staffRank:
type: string
minLength: 1
firstName:
type: string
minLength: 1
lastName:
type: string
minLength: 1
firstKana:
type: string
minLength: 1
lastKana:
type: string
minLength: 1
postCode:
type: string
minLength: 1
address:
type: string
minLength: 1
phoneNumber:
type: string
minLength: 1
faxNumber:
type: string
minLength: 1
mobileNumber:
type: string
minLength: 1
mailAddress:
type: string
minLength: 1
mailAddress2:
type: string
minLength: 1
mailAddress3:
type: string
minLength: 1
companyName:
type: string
minLength: 1
departmentName:
type: string
minLength: 1
managerialPosition:
type: string
minLength: 1
sex:
$ref: "#/components/schemas/sex"
birthDate:
type: string
minLength: 1
pointExpireDate:
type: string
minLength: 1
lastComeDateTime:
type: string
minLength: 1
entryDate:
type: string
minLength: 1
leaveDate:
type: string
minLength: 1
pointGivingUnitPrice:
type: string
minLength: 1
pointGivingUnit:
type: string
minLength: 1
pinCode:
type: string
minLength: 1
passportNo:
type: string
minLength: 1
nationality:
type: string
minLength: 1
alphabetName:
type: string
minLength: 1
mailReceiveFlag:
$ref: "#/components/schemas/mailReceiveFlag"
note:
type: string
minLength: 1
note2:
type: string
minLength: 1
favoriteList:
type: string
minLength: 1
browsingList:
type: string
minLength: 1
status:
$ref: "#/components/schemas/status"
storeId:
type: string
minLength: 1
insDateTime:
type: string
minLength: 1
updDateTime:
type: string
minLength: 1
required:
- customerId
title: CustomersResponse
getCustomersItem:
description: ""
type: object
title: getCustomersItem
properties:
customerId:
type: string
minLength: 1
customerCode:
type: string
minLength: 1
customerNo: {}
rank: {}
staffRank: {}
firstName:
type: string
minLength: 1
lastName:
type: string
minLength: 1
firstKana: {}
lastKana: {}
postCode:
type: string
minLength: 1
address:
type: string
minLength: 1
phoneNumber:
type: string
minLength: 1
faxNumber: {}
mobileNumber:
type: string
minLength: 1
mailAddress:
type: string
mailAddress2:
type: string
mailAddress3:
type: string
companyName: {}
departmentName: {}
managerialPosition: {}
sex:
$ref: "#/components/schemas/sex"
birthDate: {}
pointExpireDate: {}
lastComeDateTime: {}
entryDate: {}
leaveDate:
type: string
minLength: 1
pointGivingUnitPrice: {}
pointGivingUnit: {}
pinCode: {}
passportNo: {}
nationality: {}
alphabetName: {}
mailReceiveFlag:
$ref: "#/components/schemas/mailReceiveFlag"
note: {}
note2: {}
favoriteList: {}
browsingList: {}
status:
$ref: "#/components/schemas/status"
storeId: {}
insDateTime:
type: string
minLength: 1
updDateTime:
type: string
minLength: 1
required:
- customerId
- customerCode
- sex
- mailReceiveFlag
- status
- insDateTime
- updDateTime
updateTransactionForCustomerRequest:
description: ""
type: object
properties:
customerId:
type: string
customerCode:
type: string
pointUpdateDivision:
$ref: "#/components/schemas/pointUpdateDivision"
title: ""
error:
description: ""
type: object
properties:
type:
type: string
minLength: 1
title:
type: string
minLength: 1
detail:
type: string
minLength: 1
# numbericな型が入っていると、serdeの Untagged enum represation のdeserializeが上手くいかない :baloon:
# status:
# type: number
patchCustomers:
description: ""
type: object
properties:
customerCode:
type: string
minLength: 1
customerNo:
type: string
minLength: 1
rank: