openapi-gen 0.3.1

Rust macro to generate client from OpenAPI spec.
Documentation
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
{
  "openapi": "3.0.3",
  "info": {
    "title": "OpenAPI Client Test API",
    "description": "A comprehensive test API designed to validate all features of the openapi-gen crate including various data types, operations, documentation, and edge cases.",
    "version": "2.1.0",
    "contact": {
      "email": "test@example.com"
    },
    "license": {
      "name": "MIT",
      "url": "https://opensource.org/licenses/MIT"
    },
    "termsOfService": "https://example.com/terms"
  },
  "servers": [
    {
      "url": "https://api.test.com/v2",
      "description": "Test server"
    }
  ],
  "paths": {
    "/users": {
      "get": {
        "summary": "List all users",
        "description": "Retrieve a paginated list of all users in the system. Supports filtering and sorting.",
        "operationId": "listUsers",
        "parameters": [
          {
            "name": "limit",
            "in": "query",
            "description": "Maximum number of users to return",
            "schema": {
              "type": "integer",
              "format": "int32",
              "minimum": 1,
              "maximum": 100,
              "default": 20
            }
          },
          {
            "name": "offset",
            "in": "query",
            "description": "Number of users to skip",
            "schema": {
              "type": "integer",
              "format": "int64",
              "minimum": 0
            }
          },
          {
            "name": "type",
            "in": "query",
            "description": "Filter by user type (tests Rust keyword handling)",
            "schema": {
              "type": "string",
              "enum": ["admin", "user", "guest"]
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/UserList"
                }
              }
            }
          },
          "400": {
            "description": "Bad request"
          }
        }
      },
      "post": {
        "summary": "Create a new user",
        "description": "Create a new user account with the provided information.",
        "operationId": "createUser",
        "requestBody": {
          "description": "User information",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateUserRequest"
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "User created successfully",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          },
          "422": {
            "description": "Validation error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/users/{userId}": {
      "get": {
        "summary": "Get user by ID",
        "description": "Retrieve detailed information about a specific user.",
        "operationId": "getUserById",
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "description": "Unique identifier for the user",
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "User found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          },
          "404": {
            "description": "User not found"
          }
        }
      },
      "put": {
        "summary": "Update user",
        "description": "Update an existing user's information.",
        "operationId": "updateUser",
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateUserRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "User updated successfully",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Delete user",
        "description": "Permanently remove a user from the system.",
        "operationId": "deleteUser",
        "parameters": [
          {
            "name": "userId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "User deleted successfully"
          },
          "404": {
            "description": "User not found"
          }
        }
      }
    },
    "/posts/{postId}/comments": {
      "get": {
        "summary": "Get post comments",
        "description": "Retrieve all comments for a specific post.",
        "operationId": "getPostComments",
        "parameters": [
          {
            "name": "postId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "self",
            "in": "query",
            "description": "Filter comments by self (tests Rust keyword)",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Comments retrieved",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Comment"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/data/export": {
      "post": {
        "summary": "Export data",
        "operationId": "r#const",
        "description": "Export system data (operation ID tests Rust keyword handling)",
        "responses": {
          "200": {
            "description": "Export completed"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "User": {
        "type": "object",
        "description": "Represents a user in the system with comprehensive profile information.",
        "required": ["id", "username", "email", "status"],
        "properties": {
          "id": {
            "type": "integer",
            "format": "int64",
            "description": "Unique identifier for the user",
            "example": 12345
          },
          "username": {
            "type": "string",
            "description": "User's chosen username",
            "minLength": 3,
            "maxLength": 50,
            "example": "john_doe"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "User's email address",
            "example": "john@example.com"
          },
          "firstName": {
            "type": "string",
            "description": "User's first name",
            "example": "John"
          },
          "lastName": {
            "type": "string",
            "description": "User's last name",
            "example": "Doe"
          },
          "age": {
            "type": "integer",
            "format": "int32",
            "description": "User's age in years",
            "minimum": 13,
            "maximum": 120
          },
          "height": {
            "type": "number",
            "format": "float",
            "description": "User's height in meters",
            "example": 1.75
          },
          "weight": {
            "type": "number",
            "format": "double",
            "description": "User's weight in kilograms",
            "example": 70.5
          },
          "isActive": {
            "type": "boolean",
            "description": "Whether the user account is active",
            "example": true
          },
          "status": {
            "$ref": "#/components/schemas/UserStatus"
          },
          "type": {
            "type": "string",
            "description": "User type (tests Rust keyword as field name)",
            "enum": ["admin", "user", "guest"],
            "example": "user"
          },
          "tags": {
            "type": "array",
            "description": "List of tags associated with the user",
            "items": {
              "type": "string"
            },
            "example": ["developer", "golang", "rust"]
          },
          "metadata": {
            "type": "object",
            "description": "Additional user metadata",
            "additionalProperties": {
              "type": "string"
            }
          },
          "profile": {
            "$ref": "#/components/schemas/UserProfile"
          },
          "preferences": {
            "$ref": "#/components/schemas/UserPreferences"
          },
          "createdAt": {
            "type": "string",
            "format": "date-time",
            "description": "When the user account was created",
            "example": "2023-01-15T10:30:00Z"
          },
          "lastLogin": {
            "type": "string",
            "format": "date-time",
            "description": "Last login timestamp"
          }
        }
      },
      "UserStatus": {
        "type": "string",
        "description": "Enumeration of possible user account statuses.",
        "enum": ["active", "inactive", "suspended", "pending"],
        "example": "active"
      },
      "UserProfile": {
        "type": "object",
        "description": "Extended user profile information.",
        "properties": {
          "bio": {
            "type": "string",
            "description": "User's biography or description",
            "maxLength": 500
          },
          "website": {
            "type": "string",
            "format": "uri",
            "description": "User's personal website"
          },
          "location": {
            "type": "string",
            "description": "User's location"
          },
          "self": {
            "type": "boolean",
            "description": "Whether this is a self-profile (tests Rust keyword)"
          }
        }
      },
      "UserPreferences": {
        "type": "object",
        "description": "User's application preferences and settings.",
        "properties": {
          "theme": {
            "type": "string",
            "enum": ["light", "dark", "auto"],
            "default": "auto",
            "description": "Preferred UI theme"
          },
          "notifications": {
            "$ref": "#/components/schemas/NotificationSettings"
          },
          "const": {
            "type": "string",
            "description": "Configuration constant (tests Rust keyword as field)"
          }
        }
      },
      "NotificationSettings": {
        "type": "object",
        "description": "User notification preferences.",
        "properties": {
          "email": {
            "type": "boolean",
            "default": true,
            "description": "Enable email notifications"
          },
          "push": {
            "type": "boolean",
            "default": false,
            "description": "Enable push notifications"
          },
          "frequency": {
            "type": "string",
            "enum": ["immediate", "daily", "weekly", "never"],
            "default": "daily",
            "description": "Notification frequency"
          }
        }
      },
      "CreateUserRequest": {
        "type": "object",
        "description": "Request payload for creating a new user.",
        "required": ["username", "email"],
        "properties": {
          "username": {
            "type": "string",
            "minLength": 3,
            "maxLength": 50
          },
          "email": {
            "type": "string",
            "format": "email"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "type": {
            "type": "string",
            "enum": ["admin", "user", "guest"],
            "default": "user"
          }
        }
      },
      "UpdateUserRequest": {
        "type": "object",
        "description": "Request payload for updating user information.",
        "properties": {
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "email": {
            "type": "string",
            "format": "email"
          },
          "profile": {
            "$ref": "#/components/schemas/UserProfile"
          }
        }
      },
      "UserList": {
        "type": "object",
        "description": "Paginated list of users.",
        "required": ["users", "total", "page"],
        "properties": {
          "users": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/User"
            },
            "description": "Array of user objects"
          },
          "total": {
            "type": "integer",
            "format": "int64",
            "description": "Total number of users"
          },
          "page": {
            "type": "integer",
            "format": "int32",
            "description": "Current page number"
          },
          "hasNext": {
            "type": "boolean",
            "description": "Whether there are more pages"
          }
        }
      },
      "Comment": {
        "type": "object",
        "description": "A comment on a post.",
        "required": ["id", "content", "authorId"],
        "properties": {
          "id": {
            "type": "string",
            "description": "Unique comment identifier"
          },
          "content": {
            "type": "string",
            "description": "Comment text content"
          },
          "authorId": {
            "type": "integer",
            "format": "int64",
            "description": "ID of the comment author"
          },
          "createdAt": {
            "type": "string",
            "format": "date-time",
            "description": "When the comment was created"
          },
          "r#type": {
            "type": "string",
            "description": "Comment type (tests raw identifier in schema)"
          }
        }
      },
      "ValidationError": {
        "type": "object",
        "description": "Error response for validation failures.",
        "required": ["message", "errors"],
        "properties": {
          "message": {
            "type": "string",
            "description": "General error message"
          },
          "errors": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/FieldError"
            },
            "description": "List of field-specific errors"
          }
        }
      },
      "FieldError": {
        "type": "object",
        "description": "Error information for a specific field.",
        "required": ["field", "message"],
        "properties": {
          "field": {
            "type": "string",
            "description": "Name of the field with error"
          },
          "message": {
            "type": "string",
            "description": "Error message for this field"
          },
          "code": {
            "type": "string",
            "description": "Error code"
          }
        }
      },
      "SimpleString": {
        "type": "string",
        "description": "A simple string type alias for testing."
      },
      "NumberArray": {
        "type": "array",
        "description": "An array of numbers for testing array type generation.",
        "items": {
          "type": "number",
          "format": "double"
        }
      }
    }
  }
}