Skip to main content

JSON Schema forms for Django

Project description

https://travis-ci.org/Aristotle-Metadata-Enterprises/django-jsonforms.svg?branch=master

django-jsonforms provides a Django integration of json-editor (https://github.com/json-editor/json-editor). A form field is provided that renders the dynamic form created by json-editor, loading in the provided schema and options along with any initial form data. The field can be rendered in the same way as any other django field and also validates submitted data against your json schema on submission.

Installation

Install with pip pip install django-jsonforms

Add django_jsonforms to your INSTALLED_APPS

Make sure you have APP_DIRS set to True in your TEMPLATES setting. More about the templates setting here: https://docs.djangoproject.com/en/2.0/ref/settings/#templates

Requirements

jQuery is required on the page that will be rendering the form.

Usage

The field can be used like any other Django form field, it has the schema and options attributes which can be either python dictionaries or paths to static files as as shown below

  • The schema parameter is the json schema the field will use

  • The options parameter is passed through to the json-editor object, these options are described here: https://github.com/jdorn/json-editor#options (the schema option is not used)

  • An optional ajax parameter determines whether any files are loaded via ajax on the frontend or loaded in the backend and put into html parameters (defaults to true)

Example:

from django.forms import ModelForm, Form
from django_jsonforms.forms import JSONSchemaField

class RegistrySettingsForm(Form):

    json = JSONSchemaField(
        schema = 'schema/schema.json',
        options = 'schema/options.json'
    )

In this example the schema file would be located in ‘static/schema/schema.json’. You will need to run collectstatic after creating the file

To load the file from a directory other than STATIC_ROOT see the JSONFORMS_SCHEMA_DIR setting below

Example showing all options:

class RegistrySettingsForm(Form):

    json = JSONSchemaField(
        schema = 'schema/schema.json',
        options = {"theme": "bootstrap3"},
        ajax = false
    )

Since it is common to have only one field in this type of form. A form with a single JSONSchemaField named json is also available to use

Form Example:

from django_jsonforms.forms import JSONSchemaForm

form = JSONSchemaForm(schema=... , options=... , ajax=...)

Note:

When rendering the form don’t forget to render the forms media with the template tag {{ form.media }}. This is required for the field to function correctly

The data returned when the field is submitted is in the form of a python dictionary. This may need to be converted before being stored depending on the model field being used

Settings

The JSONFORMS_SCHEMA_DIR setting can be used to specify the file directory to load the schema from. This directory will need to be seving static files for the form to funciton correctly

The JSONFORMS_SCHEMA_VALIDATE settings can be set to False to disable backend validation of the submitted json. This can allow a user to submit any json if the frontend validation is bypassed. This settings should only be used during development

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-jsonforms-1.1.1.tar.gz (10.3 kB view details)

Uploaded Source

Built Distribution

django_jsonforms-1.1.1-py3-none-any.whl (11.1 kB view details)

Uploaded Python 3

File details

Details for the file django-jsonforms-1.1.1.tar.gz.

File metadata

  • Download URL: django-jsonforms-1.1.1.tar.gz
  • Upload date:
  • Size: 10.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.1

File hashes

Hashes for django-jsonforms-1.1.1.tar.gz
Algorithm Hash digest
SHA256 fcc336be40d6354072e39dd23903227310f3b074b2dcc46d518e2e76abeddcea
MD5 1de41ef56cb9b95f3af3dca7a0b6e5b4
BLAKE2b-256 46eb940df83a62af4a571121aa6c0db158cda473f1c6be845400fc6268508a86

See more details on using hashes here.

File details

Details for the file django_jsonforms-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: django_jsonforms-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 11.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.8.1

File hashes

Hashes for django_jsonforms-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 46ecd6ea3f38b4e8464a284fa53300450d350e9333060054447ee8b67dce2d5c
MD5 a7b18f7bfe841cfcc21d9d1e854d973a
BLAKE2b-256 77342d6b7706ed08d80041a0f4d481c3655b00934b8ce4769ada2d0c0f5f552c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page