{% include "user_header.html" %} {% extends "layout.html" %} {% block head %} All Available Rules {% endblock %} {% block body %}

All Available Rules

Evaluator endpoint is {{ evaluator_endpoint }}
To run a test example, use the following shell command:
curl -X POST -H "Content-Type: application/json" -d '{"event_timestamp":23, "event_id":"123", "event_data":{"age": 25, "amount": 9000}}' {{ evaluator_endpoint }}/evaluate
Add Rule Outcomes Lists
{% for rule in rules %} {{ rule.rid }} - {{ rule.description }} {% endfor %}
{% endblock %}