Skip to content

Instantly share code, notes, and snippets.

@Bahus
Bahus / json_schemed_field.py
Last active February 28, 2025 10:07
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