{% extends 'ndr_core/admin_views/base.html' %} {% load crispy_forms_tags %} {% block content %}
Go Back
Example Result JSON — {{ search_config.conf_label }}

Paste a single record from your API response (not the full paginated wrapper, just one { … } object). NDR Core will extract all field paths from this record and use them as hints in the result field editor.

{% if json_error %}
JSON parse error: {{ json_error }}
{% endif %}
{% csrf_token %}
{% if search_config.example_result_json %}
Extracted Field Paths

These paths are available for use in result field expressions as {path} tags.

{% for path in extracted_paths %} {{ path }} {% endfor %}
{% endif %} {% endblock %} {% block page_js %} {% endblock %}