python
# context_processors.py
import json

def json_data(request):
    return {'json_data': {'key': 'value', 'array': [1, 2, 3]}}