What does HackerNews think of react-jsonschema-form?

A React component for building Web forms from JSON Schema.

Language: TypeScript

#7 in JSON
#10 in React
Additional schema languages maybe worth supporting: Arrow, JSONschema, SHACL, json-ld-schema

react-jsonschem-form https://github.com/rjsf-team/react-jsonschema-form

google/react-schemaorg: https://github.com/google/react-schemaorg : Type-checked Schema.org JSON-LD for React

pydantic_schemaorg: https://github.com/lexiq-legal/pydantic_schemaorg

"RDFJS"

YAML-LD (application/ld+yaml) round-trips to JSON-LD (application/ld+json) which round trips to RDF; W3C Linked Data Signatures / W3C Verified Claims cryptographic signatures verify regardless of graph representation.

YAML-LD > 3.1 JSON vs YAML comparison: https://json-ld.github.io/yaml-ld/spec/#json-vs-yaml

These exist, such as: https://github.com/rjsf-team/react-jsonschema-form

We also built one from scratch and used it in client-facing production applications (Angular + React Native). The biggest hurdle is that JSON schema is great at describing the shape of the form data but not a great job at describing how the form looks. We ended up creating a separate "presentation" schema which handled things like order of the form, rows/columns, widgets to use, and much more.

To be honest, i used json schema for auto generating layouts.

Eg. https://github.com/rjsf-team/react-jsonschema-form

I built something like that when I needed expose config changes to non-technical peers using https://github.com/rjsf-team/react-jsonschema-form + one POST function that checkouts git and commit a change
There's a few people trying to build libraries (https://github.com/rjsf-team/react-jsonschema-form) but there ain't any magic bullet. For this project (https://github.com/mickael-kerjean/filestash), I built my very own as no other library would work for what I wanted