sql >> Database teknologi >  >> RDS >> PostgreSQL

django postgresql json feltskemavalidering

Jeg skrev en tilpasset validator ved hjælp af jsonschema for at gøre dette.

project/validators.py

import django
from django.core.validators import BaseValidator
import jsonschema
    

class JSONSchemaValidator(BaseValidator):
    def compare(self, value, schema):
        try:
            jsonschema.validate(value, schema)
        except jsonschema.exceptions.ValidationError:
            raise django.core.exceptions.ValidationError(
                '%(value)s failed JSON schema check', params={'value': value}
            )

project/app/models.py

from django.db import models

from project.validators import JSONSchemaValidator

MY_JSON_FIELD_SCHEMA = {
    'schema': 'http://json-schema.org/draft-07/schema#',
    'type': 'object',
    'properties': {
        'my_key': {
            'type': 'string'
        }
    },
    'required': ['my_key']
}

class MyModel(models.Model):
    my_json_field = models.JSONField(
        default=dict,
        validators=[JSONSchemaValidator(limit_value=MY_JSON_FIELD_SCHEMA)]
    )


  1. Find datakilden for en bestemt tabel - ORACLE

  2. Tjek om en streng indeholder tal

  3. Indsættelse af en simpel liste i MySQL-tabel (php)

  4. Skinner:Fejl ved installation af pg gem