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
//! # Clawspec Core
//!
//! Generate OpenAPI specifications from your HTTP client test code.
//!
//! This crate provides two main ways to generate OpenAPI documentation:
//! - **[`ApiClient`]** - Direct HTTP client for fine-grained control
//! - **[`TestClient`](test_client::TestClient)** - Test server integration with automatic lifecycle management
//!
//! **New to Clawspec?** Start with the **[Tutorial][_tutorial]** for a step-by-step guide.
//!
//! ## Quick Start
//!
//! ### Using ApiClient directly
//!
//! ```rust,no_run
//! use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct User { id: u32, name: String }
//!
//! # #[tokio::main]
//! # async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let mut client = ApiClient::builder()
//! .with_host("api.example.com")
//! .build()?;
//!
//! // Make requests - schemas are captured automatically
//! let user: User = client
//! .get("/users/123")?
//! .await? // ← Direct await using IntoFuture
//! .as_json() // ← Important: Must consume result for OpenAPI generation!
//! .await?;
//!
//! // Generate OpenAPI specification
//! let spec = client.collected_openapi().await;
//! # Ok(())
//! # }
//! ```
//!
//! ### Using TestClient with a test server
//!
//! For a complete working example, see the [axum example](https://github.com/ilaborie/clawspec/tree/main/examples/axum-example).
//!
//! ```rust,no_run
//! use clawspec_core::test_client::{TestClient, TestServer};
//! use std::net::TcpListener;
//!
//! # #[derive(Debug)]
//! # struct MyServer;
//! # impl TestServer for MyServer {
//! # type Error = std::io::Error;
//! # async fn launch(&self, listener: TcpListener) -> Result<(), Self::Error> {
//! # Ok(())
//! # }
//! # }
//! #[tokio::test]
//! async fn test_api() -> Result<(), Box<dyn std::error::Error>> {
//! let mut client = TestClient::start(MyServer).await?;
//!
//! // Test your API
//! let response = client.get("/users")?.await?.as_json::<serde_json::Value>().await?;
//!
//! // Write OpenAPI spec
//! client.write_openapi("api.yml").await?;
//! Ok(())
//! }
//! ```
//!
//! ## Working with Parameters
//!
//! ```rust
//! use clawspec_core::{ApiClient, CallPath, CallQuery, CallHeaders, CallCookies, ParamValue, ParamStyle};
//!
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! // Path parameters
//! let path = CallPath::from("/users/{id}")
//! .add_param("id", ParamValue::new(123));
//!
//! // Query parameters
//! let query = CallQuery::new()
//! .add_param("page", ParamValue::new(1))
//! .add_param("limit", ParamValue::new(10));
//!
//! // Headers
//! let headers = CallHeaders::new()
//! .add_header("Authorization", "Bearer token");
//!
//! // Cookies
//! let cookies = CallCookies::new()
//! .add_cookie("session_id", "abc123")
//! .add_cookie("user_id", 456);
//!
//! // Direct await with parameters:
//! let response = client
//! .get(path)?
//! .with_query(query)
//! .with_headers(headers)
//! .with_cookies(cookies)
//! .await?; // Direct await using IntoFuture
//! # Ok(())
//! # }
//! ```
//!
//! ## Parameter Styles
//!
//! The library supports OpenAPI 3.1.0 parameter styles. Use [`ParamStyle`] for advanced serialization:
//!
//! ```rust
//! use clawspec_core::{CallPath, CallQuery, ParamValue, ParamStyle};
//!
//! // Path: simple (default), label, matrix
//! let path = CallPath::from("/users/{id}").add_param("id", ParamValue::new(123));
//!
//! // Query: form (default), spaceDelimited, pipeDelimited, deepObject
//! let query = CallQuery::new()
//! .add_param("tags", ParamValue::with_style(vec!["a", "b"], ParamStyle::PipeDelimited));
//! ```
//!
//! See [Chapter 4: Advanced Parameters](crate::_tutorial::chapter_4) for detailed examples.
//!
//! ## Authentication
//!
//! Configure authentication at the client or per-request level:
//!
//! ```rust
//! use clawspec_core::{ApiClient, Authentication};
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let mut client = ApiClient::builder()
//! .with_host("api.example.com")
//! .with_authentication(Authentication::Bearer("token".into()))
//! .build()?;
//!
//! // Override per-request
//! client.get("/admin")?.with_authentication(Authentication::Bearer("admin-token".into())).await?;
//! # Ok(())
//! # }
//! ```
//!
//! Supported types: `Bearer`, `Basic`, `ApiKey`. See [Chapter 4](crate::_tutorial::chapter_4) for details.
//!
//! ## Status Code Validation
//!
//! By default, requests expect status codes in the range 200-499 (inclusive of 200, exclusive of 500).
//! You can customize this behavior:
//!
//! ```rust
//! use clawspec_core::{ApiClient, expected_status_codes};
//!
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! // Single codes
//! client.post("/users")?
//! .with_expected_status_codes(expected_status_codes!(201, 202))
//! .await?;
//!
//! // Ranges
//! client.get("/health")?
//! .with_expected_status_codes(expected_status_codes!(200-299))
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Response Descriptions
//!
//! Add descriptive text to your OpenAPI responses for better documentation:
//!
//! ```rust
//! # // `with_response_description` requires the `redaction` feature; gate the example so
//! # // `cargo test --doc` (default features) still compiles, while it is compile-checked
//! # // under `--features redaction` / `--all-features`.
//! # #[cfg(feature = "redaction")]
//! use clawspec_core::ApiClient;
//!
//! # #[cfg(feature = "redaction")]
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! // Set a description for the actual returned status code
//! client.get("/users/{id}")?
//! .with_response_description("User details if found, or error information")
//! .await?;
//!
//! // The description applies to whatever status code is actually returned
//! client.post("/users")?
//! .with_response_description("User created successfully or validation error")
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ## Response Redaction
//!
//! *Requires the `redaction` feature.*
//!
//! When generating OpenAPI examples from real API responses, dynamic values like UUIDs,
//! timestamps, and tokens make examples unstable across test runs. The redaction feature
//! allows you to replace these dynamic values with stable, predictable ones in the generated
//! OpenAPI specification while preserving the actual values for assertions.
//!
//! This is particularly useful for:
//! - **Snapshot testing**: Generated OpenAPI files remain stable across runs
//! - **Documentation**: Examples show consistent, readable placeholder values
//! - **Security**: Sensitive values can be masked in documentation
//!
//! ### Basic Usage
//!
//! use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//!
//! #[derive(Deserialize, ToSchema)]
//! struct User {
//! id: String, // Dynamic UUID
//! name: String,
//! created_at: String, // Dynamic timestamp
//! }
//!
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! let user: User = client
//! .post("/users")?
//! .json(&serde_json::json!({"name": "Alice"}))?
//! .await?
//! .as_json_redacted()
//! .await?
//! // Replace dynamic UUID with stable value
//! .redact("/id", "00000000-0000-0000-0000-000000000001")?
//! // Replace timestamp with stable value
//! .redact("/created_at", "2024-01-01T00:00:00Z")?
//! .finish()
//! .await
//! .value;
//!
//! // The actual user has real dynamic values for assertions
//! assert!(!user.id.is_empty());
//! // But the OpenAPI example shows the redacted stable values
//! # Ok(())
//! # }
//! ```
//!
//! ### Request Body Redaction
//!
//! The same pattern works for request bodies using `json_redacted()`:
//!
//! use clawspec_core::ApiClient;
//! # use serde::Serialize;
//! # use utoipa::ToSchema;
//!
//! #[derive(Clone, Serialize, ToSchema)]
//! struct LoginRequest {
//! username: String,
//! password: String,
//! }
//!
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! let request = LoginRequest {
//! username: "alice".to_string(),
//! password: "my-secret-password".to_string(),
//! };
//!
//! // The HTTP request contains the real password,
//! // but the OpenAPI example shows "[REDACTED]"
//! client
//! .post("/auth/login")?
//! .json_redacted(&request)?
//! .redact("/password", "[REDACTED]")?
//! .finish()?
//! .await?;
//! # Ok(())
//! # }
//! ```
//!
//! ### Redaction Operations
//!
//! The redaction builder supports two operations using [JSON Pointer (RFC 6901)](https://tools.ietf.org/html/rfc6901)
//! or [JSONPath (RFC 9535)](https://www.rfc-editor.org/rfc/rfc9535):
//!
//! - **`redact(path, redactor)`**: Replace a value at the given path with a stable value or transformation
//! - **`redact_remove(path)`**: Remove a value entirely from the OpenAPI example
//!
//! # use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct Response { token: String, session_id: String, internal_ref: String }
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! let response: Response = client
//! .post("/auth/login")?
//! .json(&serde_json::json!({"username": "test", "password": "secret"}))?
//! .await?
//! .as_json_redacted()
//! .await?
//! .redact("/token", "[REDACTED_TOKEN]")?
//! .redact("/session_id", "session-00000000")?
//! .redact_remove("/internal_ref")? // Remove internal field from docs
//! .finish()
//! .await
//! .value;
//! # Ok(())
//! # }
//! ```
//!
//! ### Path Syntax
//!
//! Paths are auto-detected based on their prefix:
//! - `/...` → JSON Pointer (RFC 6901) - exact paths only
//! - `$...` → JSONPath (RFC 9535) - supports wildcards
//!
//! ### JSON Pointer Syntax
//!
//! JSON Pointers use `/` as a path separator. Special characters are escaped:
//! - `~0` represents `~`
//! - `~1` represents `/`
//!
//! Examples:
//! - `/id` - Top-level field named "id"
//! - `/user/name` - Nested field "name" inside "user"
//! - `/items/0/id` - First element's "id" in an array
//! - `/foo~1bar` - Field named "foo/bar"
//!
//! ### JSONPath Wildcards
//!
//! For arrays, use JSONPath syntax (starting with `$`) to redact all elements:
//!
//! # use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct User { id: String, created_at: String }
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! let users: Vec<User> = client
//! .get("/users")?
//! .await?
//! .as_json_redacted()
//! .await?
//! .redact("$[*].id", "stable-uuid")? // All IDs in array
//! .redact("$[*].created_at", "2024-01-01T00:00:00Z")? // All timestamps
//! .finish()
//! .await
//! .value;
//! # Ok(())
//! # }
//! ```
//!
//! ### Dynamic Transformations
//!
//! Pass a closure for dynamic redaction. The closure receives the concrete
//! JSON Pointer path and current value:
//!
//! # use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use serde_json::Value;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct User { id: String }
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! let users: Vec<User> = client
//! .get("/users")?
//! .await?
//! .as_json_redacted()
//! .await?
//! // Create stable index-based IDs: user-0, user-1, user-2, ...
//! .redact("$[*].id", |path: &str, _val: &Value| {
//! let idx = path.split('/').nth(1).unwrap_or("0");
//! serde_json::json!(format!("user-{idx}"))
//! })?
//! .finish()
//! .await
//! .value;
//! # Ok(())
//! # }
//! ```
//!
//!
//! # use clawspec_core::ApiClient;
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct User { id: String }
//! # async fn example(client: &mut ApiClient) -> Result<(), Box<dyn std::error::Error>> {
//! let result = client
//! .get("/users/123")?
//! .await?
//! .as_json_redacted::<User>()
//! .await?
//! .redact("/id", "user-00000000")?
//! .finish()
//! .await;
//!
//! // Use actual value for test assertions
//! let user = result.value;
//! assert!(!user.id.is_empty());
//!
//! // Access redacted JSON if needed
//! let redacted_json = result.redacted;
//! assert_eq!(redacted_json["id"], "user-00000000");
//! # Ok(())
//! # }
//! ```
//!
//! ## Schema Registration
//!
//! Schemas are **automatically captured** when using `.json()` and `.as_json()` methods,
//! including types nested inside them (fields, `Vec<T>`, `Option<T>`, enum variants, etc.
//! that also derive `ToSchema`) — clawspec walks that graph for you via utoipa's own
//! recursive schema collection.
//!
//! For types that aren't *statically* reachable through a `ToSchema`-deriving field —
//! e.g. an error type only ever constructed dynamically, or a type behind a
//! `serde_json::Value` field — use `register_schemas!` to add them explicitly:
//!
//! ```rust
//! use clawspec_core::{ApiClient, register_schemas};
//! # use serde::Deserialize;
//! # use utoipa::ToSchema;
//! # #[derive(Deserialize, ToSchema)]
//! # struct ApiError { code: String }
//! # #[derive(Deserialize, ToSchema)]
//! # struct ValidationError { field: String }
//!
//! # async fn example(client: &mut ApiClient) {
//! // Error types never returned by an exercised endpoint — not statically reachable.
//! register_schemas!(client, ApiError, ValidationError).await;
//! # }
//! ```
//!
//! **Recursive types**: if a `ToSchema` type is directly or mutually recursive (e.g. a tree
//! node holding `Option<Box<Self>>`, or `Pet` -> `Owner` -> `Pet`), the recursive field
//! *must* be annotated with utoipa's own `#[schema(no_recursion)]` attribute. This is a
//! requirement of utoipa's `ToSchema::schemas()` itself (it has no built-in cycle
//! detection — see [utoipa#1134](https://github.com/juhaku/utoipa/issues/1134)), not
//! something clawspec adds: the same care is needed with `#[derive(OpenApi)]`'s
//! `components(schemas(...))`. Skipping it causes a stack overflow the first time the
//! type is captured.
//!
//! **Collision diagnostics**: when two distinct types resolve to the same schema name with
//! different shapes, clawspec keeps the first and emits a `tracing` warning at `WARN` — it
//! never fails the run. These warnings only surface when a subscriber is installed; note that a
//! `tracing-subscriber` configured with `.with_test_writer()` buffers output and shows it *only
//! on test failure*, so a passing test that generates a spec will not display them. Resolve a
//! reported collision by disambiguating one type with utoipa's `#[schema(as = "module::Type")]`.
//!
//! ## Error Handling
//!
//! The library provides two main error types:
//! - [`ApiClientError`] - HTTP client errors (network, parsing, validation)
//! - [`TestAppError`](test_client::TestAppError) - Test server lifecycle errors
//!
//! ## YAML Serialization
//!
//! *Requires the `yaml` feature.*
//!
//! The library provides YAML serialization support using [serde-saphyr](https://github.com/saphyr-rs/serde_saphyr),
//! the modern replacement for the deprecated `serde_yaml` crate.
//!
//! use clawspec_core::{ApiClient, ToYaml};
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let mut client = ApiClient::builder()
//! .with_host("api.example.com")
//! .build()?;
//!
//! // ... make API calls ...
//!
//! let spec = client.collected_openapi().await;
//! let yaml = spec.to_yaml()?;
//!
//! std::fs::write("openapi.yml", yaml)?;
//! # Ok(())
//! # }
//! ```
//!
//! ## See Also
//!
//! - [`ApiClient`] - HTTP client with OpenAPI collection
//! - [`ApiCall`] - Request builder with parameter support
//! - [`test_client`] - Test server integration module
//! - [`ExpectedStatusCodes`] - Status code validation
//!
//! ## Re-exports
//!
//! All commonly used types are re-exported from the crate root for convenience.
// TODO: Add comprehensive unit tests for all modules - https://github.com/ilaborie/clawspec/issues/30
// Public API - only expose user-facing types and functions
pub use ;
// Re-export external types so users don't need to add these crates to their Cargo.toml.
//
// With these re-exports, users can write:
// use clawspec_core::{ApiClient, OpenApi, ToSchema, StatusCode};
// Instead of:
// use clawspec_core::ApiClient;
// use utoipa::openapi::OpenApi;
// use utoipa::ToSchema;
// use http::StatusCode;
/// OpenAPI types re-exported from utoipa for convenience.
pub use ;
/// The `ToSchema` derive macro for generating OpenAPI schemas.
/// Types used in JSON request/response bodies should derive this trait.
pub use ToSchema;
/// HTTP status codes re-exported from the `http` crate.
pub use StatusCode;
pub use ;
pub use ;
pub use ;
// Convenience macro re-exports are handled by the macro_rules! definitions below
/// Creates an [`ExpectedStatusCodes`] instance with the specified status codes and ranges.
///
/// This macro provides a convenient syntax for defining expected HTTP status codes
/// with support for individual codes, inclusive ranges, and exclusive ranges.
///
/// # Syntax
///
/// - Single codes: `200`, `201`, `404`
/// - Inclusive ranges: `200-299` (includes both endpoints)
/// - Exclusive ranges: `200..300` (excludes 300)
/// - Mixed: `200, 201-204, 400..500`
///
/// # Examples
///
/// ```rust
/// use clawspec_core::expected_status_codes;
///
/// // Single status codes
/// let codes = expected_status_codes!(200, 201, 204);
///
/// // Ranges
/// let success_codes = expected_status_codes!(200-299);
/// let client_errors = expected_status_codes!(400..500);
///
/// // Mixed
/// let mixed = expected_status_codes!(200-204, 301, 302, 400-404);
/// ```
/// Registers multiple schema types with the ApiClient for OpenAPI documentation.
///
/// This macro simplifies the process of registering multiple types that implement
/// [`utoipa::ToSchema`] with an [`ApiClient`] instance.
///
/// # When to Use
///
/// Most JSON request/response schemas are captured automatically when using `.json()` and
/// `.as_json()` methods — including types nested inside them (fields, `Vec<T>`, `Option<T>`,
/// enum variants, etc. that also derive [`utoipa::ToSchema`]), since clawspec walks that graph
/// for you. Use this macro only for types that aren't *statically* reachable through a
/// `ToSchema`-deriving field, such as:
///
/// - **Error Types**: An error response type never returned by any exercised endpoint
/// - **Dynamic Types**: A type reached only through a `serde_json::Value` field or similar
/// type-erased boundary
///
/// # Examples
///
/// ```rust
/// use clawspec_core::{ApiClient, register_schemas};
/// use serde::Deserialize;
/// use utoipa::ToSchema;
///
/// // An error type never returned by any exercised endpoint.
/// #[derive(Deserialize, ToSchema)]
/// struct ApiError {
/// code: String,
/// message: String,
/// }
///
/// // A type only ever reached behind a `serde_json::Value` boundary.
/// #[derive(Deserialize, ToSchema)]
/// struct WebhookPayload {
/// event: String,
/// }
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let mut client = ApiClient::builder().build()?;
///
/// // Register multiple not-statically-reachable schemas at once.
/// register_schemas!(client, ApiError, WebhookPayload).await;
/// # Ok(())
/// # }
/// ```