Live data from Hacker News

Ask HN: Do you use JSON Schema in production?

news.ycombinator.com

1–3 of 3 posts

Re: Ask HN: Do you use JSON Schema in production?

#2
I use it heavily in all my projects.

- (indirectly) as part of OpenAPI Spec

- storing and versioning schemas for JSONB data in Postgres, which is useful when deserializing

- (indirectly) in my IDE to give me hinting/linting for my JSON-based config files

- for form definitions (JSONForms, React JSON Schema Form)