postgres-json-schema icon indicating copy to clipboard operation
postgres-json-schema copied to clipboard

JSON Schema validation for PostgreSQL

Results 7 postgres-json-schema issues
Sort by recently updated
recently updated
newest added

This allows one to use and resolve ids in json schema ```sql SELECT json_schema_resolve_refs('{ "$id": "http://localhost:1234/root", "allOf": [{ "$ref": "http://localhost:1234/nested.json#foo" }], "definitions": { "A": { "$id": "nested.json", "definitions": { "B":...

Is there any documentation for building this project on Windows? Any guidance would be appreciated.

Hello from the JSON Schema specification team! Does this project intend to update to more recent drafts? We have published some [release migration notes](http://json-schema.org/specification.html#migrating-from-older-drafts) and are happy to answer any...

I don't see any performance numbers so I thought I'd throw this up as reference. **No validation:** ```sql CREATE TABLE test ( json jsonb NOT NULL ); ``` ```sql INSERT...

My understanding is that at the moment this extension allows you to get answer if validation failed or succeeded. But would be great if you could also error messages. Possible...

I'm using this handy extension to test stored procedures which return JSON objects and, while it's already easy enough to install by cloning the repository and running make, I was...