Results 13 comments of Hammerbot

I admit I don't understand quite well all the mechanisms, but I guess I'll be waiting that this gets implemented! Thanks for taking the time to respond :) I'll try...

Facing the same issue, did you find a workaround to support recursive types?

I ended up overwriting type with the `.openapi` method like this: ``` BaseSearchOrdersFiltersSchema.extend({ oneOf: z .lazy(() => SearchOrdersFiltersSchema.array().optional()) .openapi({ type: "array", items: { type: "object", }, }), ``` I'm sure...