You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the auto inferring of types is cool, it makes mistakes. This is logical since there are some things it just cannot know. For instance in json: What's the type of an empty list? What to do with undefined properties?
OpenApi Swagger could solve this. It exists for many APIs and essentially describes the structure of the JSON that will be expected. Generating Dataschemas from those should be a breeze.
The text was updated successfully, but these errors were encountered:
https://openapi-generator.tech/docs/generators/kotlin might actually be cool if this could be extended with dataframes as optional output type option. I'll try and see if I can create a template to generate DataSchema's
might be easier to use our own json data inference, using openapi for help. A generator might be too advanced, just a library that can understand openapi might already suffice, checkout https://openapi.tools/, otherwise just do it ourselves.
While the auto inferring of types is cool, it makes mistakes. This is logical since there are some things it just cannot know. For instance in json: What's the type of an empty list? What to do with undefined properties?
OpenApi Swagger could solve this. It exists for many APIs and essentially describes the structure of the JSON that will be expected. Generating Dataschemas from those should be a breeze.
The text was updated successfully, but these errors were encountered: