This is a bit of hack, but basically, it adds a schema that is equivalent to "any value" `SchemaType::Value` indicates any generic JSON value.
| 709 | // This is a bit of hack, but basically, it adds a schema that is equivalent to "any value" |
| 710 | // `SchemaType::Value` indicates any generic JSON value. |
| 711 | struct Any; |
| 712 | |
| 713 | impl ToSchema<'_> for Any { |
| 714 | fn schema() -> (&'static str, RefOr<Schema>) { |
no outgoing calls