Set the Input for a Ruleset
Introduction
This guide explains how to create the input for a ruleset.
Inputs are the raw materials of rulesets because the ruleset acts upon them. If the ruleset is a calculation, then the inputs are the values that go into the calculation.
Basic and advanced settings for an input
Each input has basic settings like Name
and Type
, and advanced settings like Required
. Furthermore, the settings for an input vary according to its type.
Before you begin
If you want to create an input based on an entity, you must create the corresponding entity first.
General procedure
Open the ruleset where you want to create the input or create a new ruleset.
Click the + sign behind Input from the left menu. ↳ The Input details page opens.
In the Name field, enter the name for the input.
In the Type list, select the input type. ↳ Rulecube shows the settings that apply to the chosen type.
If you need additional settings for the input, enter them in the corresponding fields.
If you need advanced settings, click Advanced settings, then enter the settings you need.
If you're done, click Save.
Specific procedures
Let's look at examples for creating enum
and array
inputs because of the settings variations of input types.
Create an enum
input
enum
inputLet's assume that you want an input that must be one of the values: north
, east
, south
, west
.
Open the ruleset where you want to create the input.
Click the + sign behind Input from the left menu. ↳ The Input details page opens.
In the Name field, enter
CustomerArea
.In the Type list, select enum. ↳ Rulecube adds the Possible values setting to the details page.
In the Possible values field, enter
north
,east
,south
,west
.Click Advanced settings and select the Required checkbox.
In the Label field, enter
The area where the customer is based
.Click Save.
Try out the ruleset. Note that the possible values are collected in a list box.
Optional: call the ruleset via its API to simulate an error
Call the ruleset API from Postman or JavaScript and supply an invalid value for CustomerArea
to see how the API responds.
Create an array
input
array
inputLet's say you need to process a sequence of 6 test scores for each participant in a course.
Open the ruleset where you want to create the input.
Click the + sign behind Input from the left menu. ↳ The Input details page opens.
In the Name field, enter
TestScores
.In the Type list, select array. ↳ Rulecube adds the Sub type setting to the details page.
Leave the Sub type list to number.
Click Advanced settings and select the Required checkbox.
In the Min. length field, enter
6
. And do the same for Max. length.Select the Strict checkbox. ↳ Now the array requires exactly 6 test scores (elements).
Click Save.
How to address an array element
You can select a specific array element by its index, like in the following example:
Be aware that the array index starts at 0
for the first element. So, the example selects the third score from the array.
Additional resources
How-to Guide: Create a Rule.