OpenAPI Code Generation
Engineering Practices
One schema generates every client. No hand-written wire model is allowed to drift.
Generating client code from an OpenAPI document, so the caller's types come from the same description the server publishes.
How we use it
Every typed client here is generated, never hand-written. A hand-written client passes review because it works today and has no link to the route it mirrors: the next schema change leaves it silently wrong.
13
systems