-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi-specification-example.ts
More file actions
1342 lines (1219 loc) · 37.2 KB
/
openapi-specification-example.ts
File metadata and controls
1342 lines (1219 loc) · 37.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* VEffect OpenAPI Generator Example
*
* This example demonstrates how to use VEffect's registry system to generate
* a complete OpenAPI Specification (OAS) 3.0 document.
*
* Key concepts demonstrated:
* 1. Defining schemas with VEffect's type system
* 2. Using a registry with custom metadata for OpenAPI
* 3. Registering schemas with their API metadata
* 4. Generating a complete OpenAPI specification
* 5. Exporting the spec to JSON/YAML
* 6. Setting up an Express server with Swagger UI
*/
// import {
// string,
// number,
// boolean,
// object,
// array,
// union,
// literal,
// createRegistry,
// registerSchema,
// GlobalMetadata,
// Schema
// } from 'veffect';
// import * as fs from 'fs';
// import * as yaml from 'js-yaml';
// import express, { Request, Response, NextFunction } from 'express';
// import * as swaggerUi from 'swagger-ui-express';
// // =======================================
// // ======= METADATA DEFINITIONS ==========
// // =======================================
// /**
// * Custom metadata interface for OpenAPI endpoints
// * This extends the GlobalMetadata from VEffect with OpenAPI-specific fields
// */
// interface OpenAPIMetadata extends GlobalMetadata {
// // Path operation details
// path: string;
// method: 'get' | 'post' | 'put' | 'patch' | 'delete';
// operationId: string;
// summary: string;
// description?: string;
// tags: string[];
// // Security
// security?: Array<Record<string, string[]>>;
// // Request details
// requestContentType?: string;
// requestDescription?: string;
// requestRequired?: boolean;
// // Response details
// responseSchema?: any;
// responseDescription?: string;
// responseContentType?: string;
// responseExamples?: Record<string, any>;
// // Parameters (path, query, header)
// pathParams?: Record<string, {
// description: string;
// required?: boolean;
// schema: any;
// example?: any;
// }>;
// queryParams?: Record<string, {
// description: string;
// required?: boolean;
// schema: any;
// example?: any;
// }>;
// headerParams?: Record<string, {
// description: string;
// required?: boolean;
// schema: any;
// example?: any;
// }>;
// // Additional OpenAPI fields
// deprecated?: boolean;
// externalDocs?: {
// description: string;
// url: string;
// };
// }
// /**
// * Create a registry specifically for OpenAPI endpoints
// * This registry will store schemas and their associated OpenAPI metadata
// */
// const openAPIRegistry = createRegistry<OpenAPIMetadata>();
// // =======================================
// // ========== COMMON SCHEMAS ============
// // =======================================
// /**
// * Standard error response schema
// * Used for all error responses throughout the API
// */
// const errorResponseSchema = object({
// statusCode: number().integer(),
// error: string(),
// message: string()
// });
// /**
// * Pagination information schema
// * Used for paginated list responses
// */
// const paginationSchema = object({
// page: number().integer(),
// limit: number().integer(),
// totalItems: number().integer(),
// totalPages: number().integer()
// });
// /**
// * Generic paginated response wrapper
// * Creates a container with data array and pagination info
// * @param itemSchema - The schema for items in the data array
// */
// const paginatedResponseSchema = <T extends Schema<unknown, unknown>>(itemSchema: T) => object({
// data: array(itemSchema),
// pagination: paginationSchema
// });
// // =======================================
// // =========== USER SCHEMAS =============
// // =======================================
// /**
// * User entity schema
// * Represents a user in the system with all properties
// */
// const userSchema = object({
// id: number().integer(),
// username: string(),
// email: string(),
// firstName: string(),
// lastName: string(),
// role: string(),
// createdAt: string(),
// updatedAt: string()
// });
// /**
// * User creation schema
// * Used for POST request body when creating users
// */
// const createUserSchema = object({
// username: string(),
// email: string(),
// password: string(),
// firstName: string(),
// lastName: string(),
// role: string()
// });
// /**
// * User update schema
// * Used for PUT request body when updating users
// */
// const updateUserSchema = object({
// username: string(),
// email: string(),
// firstName: string(),
// lastName: string(),
// role: string()
// });
// // =======================================
// // =========== PET SCHEMAS ==============
// // =======================================
// /**
// * Pet status enum schema
// * Defines the possible status values for a pet
// */
// const petStatusSchema = union([
// literal('available'),
// literal('pending'),
// literal('sold')
// ]);
// /**
// * Pet entity schema
// * Represents a pet in the system with all properties
// */
// const petSchema = object({
// id: number().integer(),
// name: string(),
// category: object({
// id: number().integer(),
// name: string()
// }),
// photoUrls: array(string()),
// tags: array(object({
// id: number().integer(),
// name: string()
// })),
// status: petStatusSchema
// });
// /**
// * Pet creation schema
// * Used for POST request body when creating pets
// */
// const createPetSchema = object({
// name: string(),
// category: object({
// id: number().integer(),
// name: string()
// }),
// photoUrls: array(string()),
// tags: array(object({
// id: number().integer(),
// name: string()
// })),
// status: petStatusSchema
// });
// // =======================================
// // =========== ORDER SCHEMAS ============
// // =======================================
// /**
// * Order entity schema
// * Represents an order in the system with all properties
// */
// const orderSchema = object({
// id: number().integer(),
// petId: number().integer(),
// quantity: number().integer(),
// shipDate: string(),
// status: union([
// literal('placed'),
// literal('approved'),
// literal('delivered')
// ]),
// complete: boolean()
// });
// /**
// * Order creation schema
// * Used for POST request body when creating orders
// */
// const createOrderSchema = object({
// petId: number().integer(),
// quantity: number().integer(),
// shipDate: string(),
// status: union([
// literal('placed'),
// literal('approved'),
// literal('delivered')
// ]),
// complete: boolean()
// });
// // =======================================
// // ======== USER API ENDPOINTS ==========
// // =======================================
// /**
// * GET /users - List all users
// *
// * This endpoint demonstrates:
// * - Query parameters for filtering and pagination
// * - Returning a paginated list response
// * - Security requirements (bearerAuth)
// */
// const listUsersRequestSchema = object({
// page: number().integer(),
// limit: number().integer(),
// role: string()
// });
// registerSchema(listUsersRequestSchema, openAPIRegistry, {
// path: '/users',
// method: 'get',
// operationId: 'listUsers',
// summary: 'List all users',
// description: 'Returns a paginated list of users with optional filtering',
// tags: ['Users'],
// security: [{ bearerAuth: [] }],
// queryParams: {
// page: {
// description: 'Page number',
// required: false,
// schema: number().integer(),
// example: 1
// },
// limit: {
// description: 'Items per page',
// required: false,
// schema: number().integer(),
// example: 10
// },
// role: {
// description: 'Filter by user role',
// required: false,
// schema: string(),
// example: 'admin'
// }
// },
// responseSchema: paginatedResponseSchema(userSchema),
// responseDescription: 'A paginated list of users',
// responseContentType: 'application/json',
// responseExamples: {
// 'list-users-example': {
// value: {
// data: [
// {
// id: 1,
// username: 'johndoe',
// email: 'john@example.com',
// firstName: 'John',
// lastName: 'Doe',
// role: 'admin',
// createdAt: '2023-01-01T00:00:00Z',
// updatedAt: '2023-01-01T00:00:00Z'
// },
// {
// id: 2,
// username: 'janedoe',
// email: 'jane@example.com',
// firstName: 'Jane',
// lastName: 'Doe',
// role: 'user',
// createdAt: '2023-01-02T00:00:00Z',
// updatedAt: '2023-01-02T00:00:00Z'
// }
// ],
// pagination: {
// page: 1,
// limit: 10,
// totalItems: 2,
// totalPages: 1
// }
// }
// }
// }
// });
// /**
// * GET /users/{id} - Get a user by ID
// *
// * This endpoint demonstrates:
// * - Path parameters
// * - Returning a single entity
// * - Security requirements (bearerAuth)
// */
// const getUserRequestSchema = object({
// id: number().integer()
// });
// registerSchema(getUserRequestSchema, openAPIRegistry, {
// path: '/users/{id}',
// method: 'get',
// operationId: 'getUserById',
// summary: 'Get user by ID',
// description: 'Returns a user by ID',
// tags: ['Users'],
// security: [{ bearerAuth: [] }],
// pathParams: {
// id: {
// description: 'User ID',
// required: true,
// schema: number().integer(),
// example: 1
// }
// },
// responseSchema: userSchema,
// responseDescription: 'The user',
// responseContentType: 'application/json',
// responseExamples: {
// 'get-user-example': {
// value: {
// id: 1,
// username: 'johndoe',
// email: 'john@example.com',
// firstName: 'John',
// lastName: 'Doe',
// role: 'admin',
// createdAt: '2023-01-01T00:00:00Z',
// updatedAt: '2023-01-01T00:00:00Z'
// }
// }
// }
// });
// /**
// * POST /users - Create a new user
// *
// * This endpoint demonstrates:
// * - Request body for creating a resource
// * - Returning the created entity
// * - Security requirements (bearerAuth)
// */
// registerSchema(createUserSchema, openAPIRegistry, {
// path: '/users',
// method: 'post',
// operationId: 'createUser',
// summary: 'Create a new user',
// description: 'Creates a new user and returns the created user',
// tags: ['Users'],
// security: [{ bearerAuth: [] }],
// requestContentType: 'application/json',
// requestDescription: 'User to create',
// requestRequired: true,
// responseSchema: userSchema,
// responseDescription: 'The created user',
// responseContentType: 'application/json',
// responseExamples: {
// 'create-user-example': {
// value: {
// id: 3,
// username: 'newuser',
// email: 'newuser@example.com',
// firstName: 'New',
// lastName: 'User',
// role: 'user',
// createdAt: '2023-01-03T00:00:00Z',
// updatedAt: '2023-01-03T00:00:00Z'
// }
// }
// }
// });
// // PUT /users/{id} - Update a user
// registerSchema(updateUserSchema, openAPIRegistry, {
// path: '/users/{id}',
// method: 'put',
// operationId: 'updateUser',
// summary: 'Update a user',
// description: 'Updates a user and returns the updated user',
// tags: ['Users'],
// security: [{ bearerAuth: [] }],
// pathParams: {
// id: {
// description: 'User ID',
// required: true,
// schema: number().integer(),
// example: 1
// }
// },
// requestContentType: 'application/json',
// requestDescription: 'User to update',
// requestRequired: true,
// responseSchema: userSchema,
// responseDescription: 'The updated user',
// responseContentType: 'application/json',
// responseExamples: {
// 'update-user-example': {
// value: {
// id: 1,
// username: 'johndoe_updated',
// email: 'john_updated@example.com',
// firstName: 'John',
// lastName: 'Doe',
// role: 'admin',
// createdAt: '2023-01-04T00:00:00Z',
// updatedAt: '2023-01-04T00:00:00Z'
// }
// }
// }
// });
// // DELETE /users/{id} - Delete a user
// const deleteUserRequestSchema = object({
// id: number().integer()
// });
// registerSchema(deleteUserRequestSchema, openAPIRegistry, {
// path: '/users/{id}',
// method: 'delete',
// operationId: 'deleteUser',
// summary: 'Delete a user',
// description: 'Deletes a user',
// tags: ['Users'],
// security: [{ bearerAuth: [] }],
// pathParams: {
// id: {
// description: 'User ID',
// required: true,
// schema: number().integer(),
// example: 1
// }
// },
// responseSchema: object({
// success: boolean(),
// message: string()
// }),
// responseDescription: 'Deletion confirmation',
// responseContentType: 'application/json',
// responseExamples: {
// 'delete-user-example': {
// value: {
// success: true,
// message: 'User deleted successfully'
// }
// }
// }
// });
// // =======================================
// // =========== PET API ENDPOINTS ========
// // =======================================
// // GET /pets - List all pets
// const listPetsRequestSchema = object({
// page: number().integer(),
// limit: number().integer(),
// status: petStatusSchema
// });
// registerSchema(listPetsRequestSchema, openAPIRegistry, {
// path: '/pets',
// method: 'get',
// operationId: 'listPets',
// summary: 'List all pets',
// description: 'Returns a paginated list of pets with optional filtering by status',
// tags: ['Pets'],
// queryParams: {
// page: {
// description: 'Page number',
// required: false,
// schema: number().integer(),
// example: 1
// },
// limit: {
// description: 'Items per page',
// required: false,
// schema: number().integer(),
// example: 10
// },
// status: {
// description: 'Filter by pet status',
// required: false,
// schema: petStatusSchema,
// example: 'available'
// }
// },
// responseSchema: paginatedResponseSchema(petSchema),
// responseDescription: 'A paginated list of pets',
// responseContentType: 'application/json',
// responseExamples: {
// 'list-pets-example': {
// value: {
// data: [
// {
// id: 1,
// name: 'Fluffy',
// category: {
// id: 1,
// name: 'Dog'
// },
// photoUrls: ['https://example.com/photos/1'],
// tags: [
// {
// id: 1,
// name: 'friendly'
// }
// ],
// status: 'available'
// },
// {
// id: 2,
// name: 'Whiskers',
// category: {
// id: 2,
// name: 'Cat'
// },
// photoUrls: ['https://example.com/photos/2'],
// tags: [
// {
// id: 2,
// name: 'playful'
// }
// ],
// status: 'pending'
// }
// ],
// pagination: {
// page: 1,
// limit: 10,
// totalItems: 2,
// totalPages: 1
// }
// }
// }
// }
// });
// // GET /pets/{id} - Get a pet by ID
// const getPetRequestSchema = object({
// id: number().integer()
// });
// registerSchema(getPetRequestSchema, openAPIRegistry, {
// path: '/pets/{id}',
// method: 'get',
// operationId: 'getPetById',
// summary: 'Get pet by ID',
// description: 'Returns a pet by ID',
// tags: ['Pets'],
// pathParams: {
// id: {
// description: 'Pet ID',
// required: true,
// schema: number().integer(),
// example: 1
// }
// },
// responseSchema: petSchema,
// responseDescription: 'The pet',
// responseContentType: 'application/json',
// responseExamples: {
// 'get-pet-example': {
// value: {
// id: 1,
// name: 'Fluffy',
// category: {
// id: 1,
// name: 'Dog'
// },
// photoUrls: ['https://example.com/photos/1'],
// tags: [
// {
// id: 1,
// name: 'friendly'
// }
// ],
// status: 'available'
// }
// }
// }
// });
// // POST /pets - Create a new pet
// registerSchema(createPetSchema, openAPIRegistry, {
// path: '/pets',
// method: 'post',
// operationId: 'createPet',
// summary: 'Create a new pet',
// description: 'Creates a new pet and returns the created pet',
// tags: ['Pets'],
// security: [{ bearerAuth: [] }],
// requestContentType: 'application/json',
// requestDescription: 'Pet to create',
// requestRequired: true,
// responseSchema: petSchema,
// responseDescription: 'The created pet',
// responseContentType: 'application/json',
// responseExamples: {
// 'create-pet-example': {
// value: {
// id: 3,
// name: 'Rex',
// category: {
// id: 1,
// name: 'Dog'
// },
// photoUrls: ['https://example.com/photos/3'],
// tags: [
// {
// id: 3,
// name: 'trained'
// }
// ],
// status: 'available'
// }
// }
// }
// });
// // =======================================
// // ======= ORDER API ENDPOINTS ==========
// // =======================================
// // POST /store/orders - Place an order
// registerSchema(createOrderSchema, openAPIRegistry, {
// path: '/store/orders',
// method: 'post',
// operationId: 'placeOrder',
// summary: 'Place an order for a pet',
// description: 'Places an order for a pet and returns the order details',
// tags: ['Store'],
// security: [{ bearerAuth: [] }],
// requestContentType: 'application/json',
// requestDescription: 'Order to place',
// requestRequired: true,
// responseSchema: orderSchema,
// responseDescription: 'The placed order',
// responseContentType: 'application/json',
// responseExamples: {
// 'place-order-example': {
// value: {
// id: 1,
// petId: 1,
// quantity: 1,
// shipDate: '2023-01-05T00:00:00Z',
// status: 'placed',
// complete: false
// }
// }
// }
// });
// // GET /store/orders/{id} - Get order by ID
// const getOrderRequestSchema = object({
// id: number().integer()
// });
// registerSchema(getOrderRequestSchema, openAPIRegistry, {
// path: '/store/orders/{id}',
// method: 'get',
// operationId: 'getOrderById',
// summary: 'Get order by ID',
// description: 'Returns an order by ID',
// tags: ['Store'],
// security: [{ bearerAuth: [] }],
// pathParams: {
// id: {
// description: 'Order ID',
// required: true,
// schema: number().integer(),
// example: 1
// }
// },
// responseSchema: orderSchema,
// responseDescription: 'The order',
// responseContentType: 'application/json',
// responseExamples: {
// 'get-order-example': {
// value: {
// id: 1,
// petId: 1,
// quantity: 1,
// shipDate: '2023-01-05T00:00:00Z',
// status: 'placed',
// complete: false
// }
// }
// }
// });
// // =======================================
// // === OPENAPI SPEC GENERATION LOGIC ====
// // =======================================
// /**
// * Generates a complete OpenAPI Specification 3.0 document from the registry
// *
// * This function:
// * 1. Creates the paths object from registered endpoints
// * 2. Builds the components schemas section
// * 3. Processes each registry entry to create operations
// * 4. Adds common response codes and security definitions
// * 5. Returns a complete OpenAPI 3.0.3 specification
// *
// * @param registry - The VEffect registry with OpenAPI metadata
// * @returns A complete OpenAPI specification object
// */
// function generateOpenAPISpecification(registry: typeof openAPIRegistry): any {
// // Paths object for OpenAPI
// const paths: Record<string, any> = {};
// // Components object for reusable schemas
// const components: Record<string, any> = {
// schemas: {
// // Convert component schemas to OpenAPI format
// 'ErrorResponse': toOpenAPISchema(errorResponseSchema),
// 'User': toOpenAPISchema(userSchema),
// 'Pet': toOpenAPISchema(petSchema),
// 'Order': toOpenAPISchema(orderSchema),
// 'PaginationInfo': toOpenAPISchema(paginationSchema),
// 'PetStatus': toOpenAPISchema(petStatusSchema)
// },
// securitySchemes: {
// bearerAuth: {
// type: 'http',
// scheme: 'bearer',
// bearerFormat: 'JWT'
// }
// }
// };
// // Process each registry entry
// registry.getAll().forEach(([schema, metadata]) => {
// const { path, method, operationId, summary, description, tags, security,
// pathParams, queryParams, headerParams,
// requestContentType, requestDescription, requestRequired,
// responseSchema, responseDescription, responseContentType, responseExamples,
// deprecated, externalDocs } = metadata;
// // Initialize path if it doesn't exist
// if (!paths[path]) {
// paths[path] = {};
// }
// // Initialize method operation
// const operation: Record<string, any> = {
// operationId,
// summary,
// tags,
// responses: {}
// };
// // Add description if provided
// if (description) {
// operation.description = description;
// }
// // Add security if provided
// if (security) {
// operation.security = security;
// }
// // Add external docs if provided
// if (externalDocs) {
// operation.externalDocs = externalDocs;
// }
// // Add deprecated flag if provided
// if (deprecated) {
// operation.deprecated = deprecated;
// }
// // Process parameters
// const parameters: any[] = [];
// // Path parameters
// if (pathParams) {
// Object.entries(pathParams).forEach(([name, paramInfo]) => {
// parameters.push({
// name,
// in: 'path',
// description: paramInfo.description,
// required: paramInfo.required !== false, // path params are required by default
// schema: toOpenAPISchema(paramInfo.schema),
// example: paramInfo.example
// });
// });
// }
// // Query parameters
// if (queryParams) {
// Object.entries(queryParams).forEach(([name, paramInfo]) => {
// parameters.push({
// name,
// in: 'query',
// description: paramInfo.description,
// required: !!paramInfo.required,
// schema: toOpenAPISchema(paramInfo.schema),
// example: paramInfo.example
// });
// });
// }
// // Header parameters
// if (headerParams) {
// Object.entries(headerParams).forEach(([name, paramInfo]) => {
// parameters.push({
// name,
// in: 'header',
// description: paramInfo.description,
// required: !!paramInfo.required,
// schema: toOpenAPISchema(paramInfo.schema),
// example: paramInfo.example
// });
// });
// }
// // Add parameters if any
// if (parameters.length > 0) {
// operation.parameters = parameters;
// }
// // Request body
// if (method !== 'get' && method !== 'delete') {
// operation.requestBody = {
// description: requestDescription || 'Request payload',
// required: requestRequired !== false,
// content: {
// [requestContentType || 'application/json']: {
// schema: toOpenAPISchema(schema)
// }
// }
// };
// }
// // Success response
// operation.responses['200'] = {
// description: responseDescription || 'Successful operation',
// content: {
// [responseContentType || 'application/json']: {
// schema: responseSchema ? toOpenAPISchema(responseSchema) : {},
// examples: responseExamples || {}
// }
// }
// };
// // Common error responses
// operation.responses['400'] = {
// description: 'Bad request',
// content: {
// 'application/json': {
// schema: components.schemas.ErrorResponse,
// examples: {
// 'bad-request': {
// value: {
// statusCode: 400,
// error: 'Bad Request',
// message: 'Invalid request payload'
// }
// }
// }
// }
// }
// };
// operation.responses['401'] = {
// description: 'Unauthorized',
// content: {
// 'application/json': {
// schema: components.schemas.ErrorResponse,
// examples: {
// 'unauthorized': {
// value: {
// statusCode: 401,
// error: 'Unauthorized',
// message: 'Authentication required'
// }
// }
// }
// }
// }
// };
// operation.responses['404'] = {
// description: 'Not found',
// content: {
// 'application/json': {
// schema: components.schemas.ErrorResponse,
// examples: {
// 'not-found': {
// value: {
// statusCode: 404,
// error: 'Not Found',
// message: 'Resource not found'
// }
// }
// }
// }
// }
// };
// operation.responses['500'] = {
// description: 'Internal server error',
// content: {
// 'application/json': {
// schema: components.schemas.ErrorResponse,
// examples: {
// 'server-error': {
// value: {
// statusCode: 500,
// error: 'Internal Server Error',
// message: 'An unexpected error occurred'
// }