json-editor
openapi-generator
json-editor | openapi-generator | |
---|---|---|
9 | 257 | |
4,772 | 24,676 | |
0.7% | 1.2% | |
2.5 | 9.9 | |
about 1 month ago | 7 days ago | |
JavaScript | Java | |
MIT License | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
json-editor
- JSON Schema Based Editor
- JSON-editor: generate forms and edit JSON documents using JSON schema
-
What are the real cons of using jenkins?
Combined with the fact that the parameter UI is highly dynamic through plugins(like how the extended choice parameters plugin supports defining complex input forms using json-editor means you can use Jenkins as an interface to run any kind of job that requires almost any type of input.
-
Ask HN: Do you use JSON Schema? Help us shape its future stability guarantees
I use JSON schema to generate JSON-editing forms via json-editor: https://github.com/json-editor/json-editor
Then I can use the same schema in the backend to validate the data, both sent in via the form and directly with the application/json content-type. It's a pretty smooth flow, and reduces a lot of redundancy.
-
[TASK] 50$ - App to fill JSON
I have found stuff similar to this, for example json-editor.
-
Repeating form builder
JSON Editor takes a JSON Schema and uses it to generate an HTML form.
-
FormKit — Vue 3 Forms, Supercharged
Some project followed that way like json-editor
-
Suggestions on web interface for inserting values into a YAML document
json-editor is a really easy way to build complex forms. The resulting schema is returned as json which you can just convert to yaml. I use this in Jenkins for complex parameters.
-
Looking for UI for building yaml by schema
https://github.com/json-editor/json-editor was used in the backbone.js version of swagger-ui to generate input forms from json-schema.
openapi-generator
-
Always Up-to-Date API Docs Are Real (And No, It’s Not AI)
Generate TypeScript clients automatically
-
Type safe web stack with Rust and TypeScript
> Ideally I'd like to be able to write types in typescript, and write python types, then verify that the types are compatible (not identical)
Have a look at https://fastapi.tiangolo.com/
FastAPI allows you to define your types in Python using Pydantic for stronger type guarantees. FastAPI also generates an OpenAPI.json file for your backend and then you can feed this OpenAPI.json document into https://github.com/OpenAPITools/openapi-generator to generate a typescript library that contains all the types. Then you don't need to verify your types, because the typescript types will be directly generated from your Python types. The generated typescript library also contains methods for each of your REST endpoints, so that you don't have to think about network requests.
-
How and Why to Use Patches
Patches are also useful if we're making manual modifications to any codebase that is being auto-generated, i.e. if we're using openapi-generator off of an OpenAPI spec to create clients and scaffolded server codebases. We would want to maintain the patch as a way to ensure that subsequent re-generations of the code don't wipe out any manual changes we have to make in-between.
-
How To Introduce a New API Quickly Using Micronaut
The beta version was able to generate the expected Quote model object, but I ran into issues trying to generate an interface or abstract class that my controllers could extend. So I decided to create an issue in the openapi-generator library (link for those who are interested in the details) and pivot toward another approach.
-
Revolutionize Your API Development: Unleash the True Power of OpenAPI Generator!
Step 1: Locate the Right Template For Spring-based projects, navigate to: JavaSpring/ Key templates to modify: model.mustache → Handles imports pojo.mustache → Defines annotation
-
Programming in D: Tutorial and Reference
It would be great if D supported something like OpenAPI generator https://github.com/OpenAPITools/openapi-generator
Maybe it exists and I am just ignorant but it doesn't seem to be in the list of supported languages.
-
API-First Development in Scala
various openapi-generator plugins
-
Generate JAVA code from OpenAPI specification
OpenAPI Generator Gradle Plugin
-
Show HN: FastOpenAPI – automated docs for many Python frameworks
I'm also really happy with spec first. We're using openapi-generator[1] to generate types from a yaml schema (inverting the more standard approach of generating the yaml) in our Typescript (mostly Nest.js) backends, and export those types as packages for use in our frontends.
[1] https://github.com/OpenAPITools/openapi-generator
-
openapi-generator VS lapidary-render - a user suggested alternative
2 projects | 16 Mar 2025
What are some alternatives?
alt-schema - Flat JSON Schema specification and basic utility methods
NSwag - The Swagger/OpenAPI toolchain for .NET, ASP.NET Core and TypeScript.
formkit - Vue Forms ⚡️ Supercharged
kiota - OpenAPI based HTTP Client code generator
schema-dts - JSON-LD TypeScript types for Schema.org vocabulary
swagger-petstore - swagger-codegen contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI / Swagger definition.