-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi-sample.yaml
2317 lines (2313 loc) · 59.7 KB
/
openapi-sample.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
basePath: /
consumes:
- application/json
definitions:
APIResponse:
description: APIResponse entity
properties:
body:
description: Api response body to hold extra details
type: object
x-go-name: Body
message:
description: Api response message to display to clients
example: account created successfully
type: string
x-go-name: Message
status:
description: |-
Status of the request;
it can either be success, error, warning
example: succes
type: string
x-go-name: Status
required:
- status
- message
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
BankAccount:
properties:
account_name:
type: string
x-go-name: AccountName
account_number:
type: string
x-go-name: AccountNumber
bank_code:
type: string
x-go-name: BankCode
bank_name:
type: string
x-go-name: BankName
currency_code:
type: string
x-go-name: CurrencyCode
customer_email:
type: string
x-go-name: CustomerEmail
title: BankAccount entity that holds datas required for a user bank account.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
Cart:
description: Cart entity
properties:
id:
type: string
x-go-name: ID
product:
$ref: '#/definitions/Product'
product_id:
type: object
x-go-name: ProductID
quantity:
format: int64
type: integer
x-go-name: Quantity
time_added:
format: date-time
type: string
x-go-name: TimeAdded
type:
type: string
x-go-name: Type
user_id:
type: object
x-go-name: UserID
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
Chat:
description: Chat entity
properties:
date_sent:
format: date-time
type: string
x-go-name: DateSent
id:
type: object
x-go-name: ID
message:
type: string
x-go-name: Message
timesale_id:
type: object
x-go-name: TimeSaleID
user_fullname:
type: string
x-go-name: UserFullName
user_id:
type: object
x-go-name: UserID
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
CryptoAccount:
properties:
account_email:
type: string
x-go-name: AccountEmail
account_name:
type: string
x-go-name: AccountName
balance:
format: double
type: number
x-go-name: Balance
date_created:
format: date-time
type: string
x-go-name: DateCreated
title: CryptoAccount is the entity that holds details of the user crypto coin.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
Duration:
description: |-
A Duration represents the elapsed time between two instants
as an int64 nanosecond count. The representation limits the
largest representable duration to approximately 290 years.
format: int64
type: integer
x-go-package: time
GetProfileResponse:
properties:
message:
description: api response message
example: Profile returned successfully
type: string
x-go-name: Message
profile:
$ref: '#/definitions/User'
status:
description: api response status
example: success
type: string
x-go-name: Status
title: GetProfileResponse this is the format a profile response is sent to the
client.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/user
GetReferralsResponse:
properties:
message:
example: Referrals returned successfully !
type: string
x-go-name: Message
referrals:
items:
$ref: '#/definitions/User'
type: array
x-go-name: Referrals
status:
example: success
type: string
x-go-name: Status
title: GetReferralsResponse is the response for get referrals.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/user
JWT:
description: JWT entity
properties:
token:
type: string
x-go-name: Token
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
JWTResponse:
description: JWTResponse entity
properties:
body:
$ref: '#/definitions/JWT'
message:
description: Api response message to display to clients
example: successful
type: string
x-go-name: Message
status:
description: |-
Status of the request;
it can either be success, error, warning
example: success
type: string
x-go-name: Status
required:
- status
- message
- body
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
Merchant:
properties:
bank_account_name:
type: string
x-go-name: BankAccountName
bank_account_number:
type: string
x-go-name: BankAccountNumber
bank_name:
type: string
x-go-name: BankName
business_categories:
items:
type: string
type: array
x-go-name: BusinessCategories
business_city:
type: string
x-go-name: BusinessCity
business_description:
type: string
x-go-name: BusinessDescription
business_email:
type: string
x-go-name: BusinessEmail
business_name:
type: string
x-go-name: BusinessName
business_phone:
type: string
x-go-name: BusinessPhone
business_state:
type: string
x-go-name: BusinessState
business_types:
items:
type: string
type: array
x-go-name: BusinessTypes
currency:
type: string
x-go-name: Currency
customers_count:
format: int64
type: integer
x-go-name: CustomersCount
date_registered:
format: date-time
type: string
x-go-name: DateRegistered
deliveries:
additionalProperties:
additionalProperties:
items:
type: string
type: array
type: object
type: object
x-go-name: Deliveries
delivery_cities:
items:
type: string
type: array
x-go-name: DeliveryCities
delivery_country:
type: string
x-go-name: DeliveryCountry
delivery_state:
type: string
x-go-name: DeliveryState
google_sheet_id:
type: string
x-go-name: GoogleSheetID
google_sheet_url:
type: string
x-go-name: GoogleSheetURL
logo_url:
type: string
x-go-name: LogoURL
market_commission:
format: double
type: number
x-go-name: MarketCommission
monthly_sales_count:
additionalProperties:
format: int64
type: integer
type: object
x-go-name: MonthlySalesCount
monthly_sales_total:
additionalProperties:
format: int64
type: integer
type: object
x-go-name: MonthlySalesTotal
orders_count:
format: int64
type: integer
x-go-name: OrdersCount
sales_count:
format: int64
type: integer
x-go-name: SalesCount
shop_address:
type: string
x-go-name: ShopAddress
store_commission:
format: double
type: number
x-go-name: StoreCommission
total_sales:
format: int64
type: integer
x-go-name: TotalSales
title: Merchant entity holds merchant informations.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
Order:
description: Order entity
properties:
base64_details:
type: string
x-go-name: Base64Details
id:
type: string
x-go-name: ID
items_cost:
format: double
type: number
x-go-name: ItemsCost
merchant_shipping_details:
additionalProperties:
$ref: '#/definitions/ShippingFeeDetails'
type: object
x-go-name: MerchantShippingDetails
order_id:
type: string
x-go-name: OrderID
products:
items:
$ref: '#/definitions/OrderItem'
type: array
x-go-name: Items
shipping_cost:
format: double
type: number
x-go-name: ShippingCost
shipping_details:
$ref: '#/definitions/ShippingDetails'
status:
type: string
x-go-name: Status
time_added:
format: date-time
type: string
x-go-name: TimeAdded
time_delivered:
format: date-time
type: string
x-go-name: TimeDelivered
total_cost:
format: double
type: number
x-go-name: TotalCost
type:
type: string
x-go-name: Type
user_id:
type: object
x-go-name: UserID
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
OrderItem:
description: |-
OrderItem order item for order endpoint request
body.
properties:
item_id:
description: |-
For Emporium this should be the Product ID.
For Time Market this should be the TimeSale ID.
For Special Offer this should be the Special Offer ID.
example: 5fb600613c36b29a37b2f1bc
type: string
x-go-name: ItemID
quantity:
example: 10
format: int64
type: integer
x-go-name: Quantity
type:
description: Available types {Emporium, Time Market, Special Offer}.
example: Special Offer
type: string
x-go-name: Type
required:
- item_id
- type
- quantity
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity/api/v1
OrderRequestBody:
properties:
items:
items:
$ref: '#/definitions/OrderItem'
type: array
x-go-name: Items
shipping_details:
$ref: '#/definitions/ShippingDetails'
required:
- items
- shipping_details
title: OrderRequestBody request body for order endpoint.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity/api/v1
Product:
description: Product entity
properties:
age_group:
type: string
x-go-name: AgeGroup
brand:
type: string
x-go-name: Brand
bulk_discounts:
additionalProperties:
format: double
type: number
type: object
x-go-name: BulkDiscounts
categories:
description: categories of the product
example: '[]{"Fashion", "Clothing", "Electronics"}'
items:
type: string
minLength: 1
type: array
x-go-name: Categories
colour:
type: string
x-go-name: Colour
compare_at_price:
format: double
type: number
x-go-name: CompareAtPrice
cost_per_item:
format: double
type: number
x-go-name: CostPerItem
date_added:
example: 2020/12/22
format: date-time
type: string
x-go-name: DateAdded
description:
description: product description
type: string
x-go-name: Description
discount:
format: double
type: number
x-go-name: Discount
free_delivery:
type: string
x-go-name: FreeDelivery
gender:
type: string
x-go-name: Gender
google_category:
type: string
x-go-name: GoogleCategory
id:
description: id of the product
example: UsiJauKa9mAhMsjAnsljMs
readOnly: true
type: string
x-go-name: ID
image:
example: https://domain.com/productImage.png
minLength: 10
type: string
x-go-name: Image
images:
items:
type: string
type: array
x-go-name: Images
merchant:
$ref: '#/definitions/Merchant'
merchant_address:
type: string
x-go-name: MerchantAddress
name:
example: Iphone 12
minLength: 1
type: string
x-go-name: Name
price:
description: product price in Naira
example: 10000
format: double
type: number
x-go-name: Price
product_count:
format: int64
type: integer
x-go-name: ProductCount
profit:
format: double
type: number
x-go-name: Profit
quantity:
format: int64
type: integer
x-go-name: Quantity
shop_price:
description: 'Depreciated: left just to keep the app OK'
format: double
type: number
x-go-name: ShopPrice
size_specifications:
additionalProperties:
additionalProperties:
format: double
type: number
type: object
type: object
x-go-name: SizeSpecifications
sizes:
items:
type: string
type: array
x-go-name: Sizes
type:
description: Product type e.g {Emporium, Special Offer}
type: string
x-go-name: Type
url:
type: string
x-go-name: URL
weight:
description: weight of the product in kilogram
example: 3.5
format: double
minimum: 0.3
type: number
x-go-name: Weight
required:
- name
- image
- categories
- price
- weight
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
ShippingDetails:
properties:
MerchantShippingDetails:
additionalProperties:
additionalProperties:
type: object
type: object
type: object
address1:
type: string
x-go-name: Address1
address2:
type: string
x-go-name: Address2
city:
type: string
x-go-name: City
country:
type: string
x-go-name: Country
fullname:
type: string
x-go-name: FullName
phone_number1:
type: string
x-go-name: PhoneNumber1
phone_number2:
type: string
x-go-name: PhoneNumber2
state:
type: string
x-go-name: State
required:
- fullname
- phone_number1
- country
- state
- city
- address1
title: ShippingDetails entity.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
ShippingFeeDetails:
properties:
doorstep_logistics_company:
type: string
x-go-name: DoorStepLogisticsCompany
doorstep_price:
format: double
type: number
x-go-name: DoorStepPrice
terminal_logistics_company:
type: string
x-go-name: TerminalLogisticsCompany
terminal_price:
format: double
type: number
x-go-name: TerminalPrice
title: ShippingFeeDetails object that holds shipping fee details and prices.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
TimeSale:
description: TimeSale entity
properties:
categories:
description: categories of the product
example: '[]{"Fashion", "Clothing", "Electronics"}'
items:
type: string
minLength: 1
type: array
x-go-name: Categories
countdown:
$ref: '#/definitions/Duration'
date_added:
example: 2020/12/22 20:30:23
format: date-time
type: string
x-go-name: DateAdded
date_ordered:
format: date-time
type: string
x-go-name: DateOrdered
end_time:
description: the time the timesale will be won
example: 2020/12/22 20:30:23
format: date-time
type: string
x-go-name: EndTime
id:
description: id of the timesale
example: isJdAIesdfeM
readOnly: true
type: string
x-go-name: ID
locations:
description: location where the product should show
example: '[]{"Rivers State", "Lagos State", "Abia State"}'
items:
type: string
minLength: 1
type: array
x-go-name: Locations
order_id:
type: object
x-go-name: OrderID
order_status:
type: string
x-go-name: OrderStatus
price:
example: 12.49
format: double
minimum: 1
type: number
x-go-name: Price
product_id:
description: time sale product id
example: UsiJauKa9mAhMsjAnsljMs
type: object
x-go-name: ProductID
product_image:
description: product image
example: https://res-console.cloudinary.com/timiun1/thumbnails/v1/image/upload/v1602505281/YW5kcm9pZF9mY3pmYzg=/preview
type: string
x-go-name: ProductImage
product_name:
description: |-
timesale product name
example; Iphone 12
type: string
x-go-name: ProductName
shop_price:
description: shop price in Naira
example: 300000.89
format: double
minimum: 1
type: number
x-go-name: ShopPrice
start_time:
description: the time the time sale will begin
example: 2020/12/22 20:30:23
format: date-time
type: string
x-go-name: StartTime
status:
description: timesale status
example: available
type: string
x-go-name: Status
time_won:
format: date-time
type: string
x-go-name: TimeWon
views:
description: AddedBy *User `json:"added_by" bson:"added_by,omitempty"`
format: int64
type: integer
x-go-name: Views
winner:
type: object
x-go-name: Winner
winner_fullname:
type: string
x-go-name: WinnerFullName
required:
- product_id
- price
- shop_price
- categories
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
TransferCreditParameter:
properties:
amount:
example: 100.43
format: double
type: number
x-go-name: Amount
password:
example: aPassWorD
type: string
x-go-name: Password
receiver_wallet_address:
example: js8KaiKLajmss9022kmamskaKaiLsjJaksie
type: string
x-go-name: ReceiverWalletAddress
required:
- receiver_wallet_address
- amount
- password
title: TransferCreditParameter format for transfer credit requestBody.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/user
TransferCreditResponse:
properties:
message:
example: Credit transfer successfully !
type: string
x-go-name: Message
status:
example: success
type: string
x-go-name: Status
transferer_wallet_balance:
description: transferer wallet balance after transaction
example: 900.45
format: double
type: number
x-go-name: TransfererWalletBalance
title: TransferCreditResponse response for transfer credit success.
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/user
User:
description: User entity
properties:
address:
example: no 30 didi street, Rivers state
minLength: 10
type: string
x-go-name: Address
bank_account:
$ref: '#/definitions/BankAccount'
campus:
description: user campus if any
example: Rivers State University
type: string
x-go-name: Campus
date_added:
example: 2020/12/22
format: date-time
type: string
x-go-name: DateAdded
email:
example: test@user.com
minLength: 3
type: string
x-go-name: Email
fullname:
example: test user
type: string
x-go-name: FullName
gender:
description: gender of the user cannot be updated
example: female
type: string
x-go-name: Gender
id:
description: id of the user
example: hdxsjksjemdsedede
readOnly: true
type: string
x-go-name: ID
interests:
example:
- fashion
- gadgets
- electronics
items:
type: string
minLength: 1
type: array
x-go-name: Interests
is_activated:
type: boolean
x-go-name: IsActivated
location:
description: user location
example: Gra, port-harcourt rivers state
type: string
x-go-name: Location
merchant:
$ref: '#/definitions/Merchant'
password:
type: string
x-go-name: PurePassword
phone:
example: "040455994858"
type: string
x-go-name: Phone
ref_id:
type: string
x-go-name: RefID
referral_wallet:
$ref: '#/definitions/UserWallet'
referred_by:
description: referrer refId
example: refUser
type: string
x-go-name: ReferredBy
referrer:
$ref: '#/definitions/User'
role:
readOnly: true
type: string
x-go-name: Role
source:
description: |-
where the user registered from;
used for analytics ...
allowed sources : web, android, ios, pc
source cannot be updated later
example: mobile
type: string
x-go-name: Source
wallet:
$ref: '#/definitions/UserWallet'
required:
- fullname
- gender
- email
- phone
- address
- password
- source
- date_added
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
UserWallet:
description: UserWallet entity
properties:
address:
type: string
x-go-name: Address
crypto:
$ref: '#/definitions/CryptoAccount'
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/entity
activationData:
properties:
activation_code:
example: 1234
format: int64
type: integer
x-go-name: ActivationCode
activation_email:
example: hello@test.com
type: string
x-go-name: ActivationEmail
address:
description: user address
type: string
x-go-name: Address
campus:
description: student's campus
example: Rivers State University
type: string
x-go-name: Campus
gender:
example: male
type: string
x-go-name: Gender
interests:
example:
- Fashion
- Clothing
- Electronics
items:
type: string
type: array
x-go-name: Interests
location:
example: Eliozu, Port-harcourt, Rivers State, Nigeria
type: string
x-go-name: Location
referred_by:
description: referrer refId
example: helloWorld
type: string
x-go-name: ReferredBy
required:
- activation_email
- activation_code
- gender
- location
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/registration
addRequestBody:
properties:
product_id:
example: 522idn3ujdkedmed3ee2w2ws
type: string
x-go-name: ProductID
quantity:
example: 2
format: int64
type: integer
x-go-name: Quantity
required:
- product_id
- quantity
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/cart
cartItem:
properties:
product_id:
type: string
x-go-name: ProductID
quantity:
format: int64
type: integer
x-go-name: Quantity
required:
- product_id
- quantity
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/order
categoriesData:
properties:
categories:
description: categories array
example:
- Cosmetic
- Fashion
items:
type: string
type: array
x-go-name: Categories
required:
- categories
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/product
categoriesFilterData:
properties:
categories:
description: categories array
example:
- Fashion
- Electronics
- Men
items:
type: string
minLength: 1
type: array
x-go-name: Categories
status:
description: timesale status
example: available
type: string
x-go-name: Status
required:
- categories
- status
type: object
x-go-package: github.com/Meghee/timiun-time-market-api/controllers/v1/timesale
deleteRequestBody:
properties:
item_id:
example: 53snws832qsjasjasnqsanws2