Skip to content

Instantly share code, notes, and snippets.

@wwarne
wwarne / json_schemed_field.py
Last active September 23, 2021 18:55 — forked from Bahus/json_schemed_field.py
Django JSONField with Pydantic schema support
from functools import partial
import pydantic
import logging
from django.contrib.postgres.fields import JSONField
from typing import Type, Union, Tuple
from django.core.serializers.json import DjangoJSONEncoder