jsonschema VS pgx

Compare jsonschema vs pgx and see what are their differences.

pgx

Build Postgres Extensions with Rust! [Moved to: https://github.com/tcdi/pgrx] (by tcdi)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
jsonschema pgx
3 19
447 2,376
- -
7.5 9.6
3 days ago about 1 year ago
Rust Rust
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
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.

jsonschema

Posts with mentions or reviews of jsonschema. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-24.
  • web service framework and OpenAPI spec
    2 projects | /r/rust | 24 Mar 2023
    Checkout this crate https://crates.io/crates/jsonschema
  • Show HN: Pg_jsonschema – A Postgres extension for JSON validation
    8 projects | news.ycombinator.com | 21 Jul 2022
    The `jsonschema` crate author here.

    First of all, this is an exciting use case, I didn't even anticipate it when started `jsonschema` (it was my excuse to play with Rust). I am extremely pleased to see such a Postgres extension :)

    At the moment it supports Drafts 4, 6, and 7 + partially supports Draft 2019-09 and 2020-12. It would be really cool if we can collaborate on finishing support for these partially supported drafts! What do you think?

    If you'll have any bug reports on the validation part, feel free to report them to our issue tracker - https://github.com/Stranger6667/jsonschema-rs/issues.

    Re: performance - there are a couple of tricks I've been working on, so if anybody is interested in speeding this up, feel free to join here - https://github.com/Stranger6667/jsonschema-rs/pull/373

    P.S. As for the "Prior Art" section, I think that https://github.com/jefbarn/pgx_json_schema should be mentioned there, as it is also based on `pgx` and `jsonschema`.

  • Need help: Faster JSON Schema validation in Rust
    1 project | /r/rust | 14 Jun 2022
    I've been working on rewriting my jsonschema crate for a while and now I want to ask for help as I don't have much bandwidth to work on it. Here is a WIP pull request with things I have so far:

pgx

Posts with mentions or reviews of pgx. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-05.
  • Write Postgres functions in Rust
    3 projects | /r/rust | 5 Apr 2023
    It uses pgx (https://github.com/tcdi/pgx) which is our more generalized framework for developing Postgres extensions with Rust.
  • Why not Rust for Omnigres?
    2 projects | dev.to | 6 Jan 2023
    It's a great question, considering I've been using Rust for a number of years now, and I generally advocate its use for its rich ecosystem, safety and tooling. I actively contribute to pgx, a library for building Postgres extensions in Rust. Yet, Omnigres appears to be all done in C.
  • Supabase Wrappers: A Framework for Building Postgres Foreign Data Wrappers
    14 projects | news.ycombinator.com | 15 Dec 2022
    Our release today is a framework which extends this functionality to other databases/systems. If you’re familiar with Multicorn[1] or Steampipe[2], then it’s very similar. The framework is written in Rust, using the excellent pgx[3].

    We have developed FDWs for Stripe, Firebase, BigQuery, Clickhouse, and Airtable (all in various “pre-release” states). The plan is to focus on the tools we’re using internally while we stabalize the framework.

    There’s a lot in the blog post into our goals for this release. It’s early, but one of the things I’m most excited about.

    [0] Postgres FDW: [https://www.postgresql.org/docs/current/sql-createforeigndat...

    [1] Multicorn: https://multicorn.org/

    [2] Steampipe: https://steampipe.io/

    [2] pgx: [https://github.com/tcdi/pgx](https://github.com/tcdi/pgx)

  • Apache Age, a PostgreSQL Extension with Graph Database Functionality
    3 projects | news.ycombinator.com | 2 Nov 2022
  • Postgres FTS vs the new wave of search engines
    3 projects | /r/PostgreSQL | 14 Oct 2022
    BTW one nice easter egg is that with pgx there is actually no reason that we can't build even better search solutions inside the database itself.
  • Postgres Full Text Search vs. the Rest
    21 projects | news.ycombinator.com | 14 Oct 2022
    > That thread led me to a project/product idea where you take an existing Postgres instance used for normal products or whatever, replicate it to various read only clusters with a custom search extension loaded and some orchestrator sitting on top (I’ve written most of one in rust that uses 0mq to communicate with it’s nodes) and create drop in search from existing databases with a nice guided web gui for automatic tuning suitable for most business use cases.

    Very interesting idea -- just want to add one thing, write it in rust (with pgx?[0]) :)

    [0]: https://github.com/tcdi/pgx

  • Show HN: pg_idkit, a Postgres extension for generating exotic UUIDs
    3 projects | news.ycombinator.com | 11 Sep 2022
    Hey HN,

    It turns out choosing a good database-optimized UUID (and deciding whether to use serial, etc) isn't quite so simple, and I finally got a chance to do some exploration, write about it[0].

    One of the reasons Postgres is the best open source database out there is it's extensibility -- so I hacked up a small extension for generating some of the more exotic (but crucially, lexicograhically sortable) UUID generation mechanisms:

    https://github.com/t3hmrman/pg_idkit

    This idea has been bumbling around my head for a while, but I finally got a chance to build it while working with Supabase on a post about IDs[0]!

    Most of the heavy lifting is done by pgx[1] which is an amazing framework for building Postgres extensions in Rust. I think we are very early to the trend of amazing postgres extensions built in Rust, and it's yet another reason that it's an exciting time to be all-in on Postgres.

    [0]: https://supabase.com/blog/choosing-a-postgres-primary-key

    [1]: https://github.com/tcdi/pgx

    [0]: https://supabase.com/blog/choosing-a-postgres-primary-key

  • Introducing pg_idkit: an extension for generating lexicographically sortable UUIDs (UUIDv6-8, CUID, Timeflake) in Postgres
    2 projects | /r/PostgreSQL | 9 Sep 2022
    The extension is still WIP but for those of ya'll that like Rust it's built on pgx which has excellent DX. The rust involved isn't complicated -- I'm basically laundering the functionality from other crates that are listed in the README.md.
  • GitHub - supabase/pg_jsonschema: PostgreSQL extension providing JSON Schema validation
    2 projects | /r/PostgreSQL | 23 Jul 2022
    Seems to be using this: https://github.com/tcdi/pgx
  • Show HN: Pg_jsonschema – A Postgres extension for JSON validation
    8 projects | news.ycombinator.com | 21 Jul 2022
    - https://github.com/furstenheim/is_jsonb_valid

    pgx[0] is going to be pretty revolutionary for the postgres ecosystem I think -- there is so much functionality that can be utilized at the database level and I can't think of a language I want to do it with more than Rust.

    [0]: https://github.com/tcdi/pgx

What are some alternatives?

When comparing jsonschema and pgx you can also consider the following projects:

Fast JSON schema for Python - Fast JSON schema validator for Python.

tauri - Build smaller, faster, and more secure desktop applications with a web frontend.

marshmallow - A lightweight library for converting complex objects to and from simple Python datatypes.

code - Source code for the book Rust in Action

lupin is a Python JSON object mapper - Python document object mapper (load python object from JSON and vice-versa)

bevy - A refreshingly simple data-driven game engine built in Rust

RDFLib plugin providing JSON-LD parsing and serialization - JSON-LD parser and serializer plugins for RDFLib

postgrest - REST API for any Postgres database

serpy - ridiculously fast object serialization

supabase-graphql-example - A HackerNews-like clone built with Supabase and pg_graphql

PyValico - Small python wrapper around https://github.com/rustless/valico

feophant - A PostgreSQL inspired SQL database written in Rust.