BrainGrid Controller
Workflow Builder
Events
Formula Event

Formula Event

The Formula Event allows users to define a series of formula-based transformations. Each row consists of:

  • Title: A descriptive name for the formula row.
  • Formula (Predefined): A selection of predefined formulas.
  • Formula Block: Inputs that can be defined using:
    • Static values
    • Variables
    • Output from previous formula blocks
    • Output from previous event nodes in the workflow
  • Actions: Options to add, delete, and duplicate formula rows.

Predefined Formulas

Users can select from various predefined formulas and use a combination of them to derive desired outputs. The available categories and functions include:

String Functions

String functions allow manipulation and transformation of text data.

FunctionParametersRequiredTypeOutput TypeDescription
lowerstringYesStringStringConverts a string to lowercase
upperstringYesStringStringConverts a string to uppercase
capitalizestringYesStringStringCapitalizes the first character of a string
titlestringYesStringStringConverts string to title case (capitalizes first letter of each word)
stripstring
chars
Yes
No
String
String
StringRemoves leading and trailing characters (spaces by default)
lstripstring
chars
Yes
No
String
String
StringRemoves leading characters (spaces by default)
rstripstring
chars
Yes
No
String
String
StringRemoves trailing characters (spaces by default)
splitstring
sep
maxsplit
Yes
No
No
String
String
Integer
List of StringsSplits a string by separator into a list of strings
replacestring
old
new
count
Yes
Yes
Yes
No
String
String
String
Integer
StringReplaces occurrences of a substring with another
countstring
sub
start
end
Yes
Yes
No
No
String
String
Integer
Integer
IntegerCounts occurrences of a substring
startswithstring
prefix
start
end
Yes
Yes
No
No
String
String
Integer
Integer
BooleanChecks if string starts with the specified prefix
endswithstring
suffix
start
end
Yes
Yes
No
No
String
String
Integer
Integer
BooleanChecks if string ends with the specified suffix
findstring
sub
start
end
Yes
Yes
No
No
String
String
Integer
Integer
IntegerReturns the lowest index of substring
joinseparator
iterable
Yes
Yes
String
List
StringJoins elements of an iterable with a separator
concatx
y
Yes
Yes
String
String
StringConcatenates two strings
generate_wordlengthNoIntegerStringGenerates a random word of specified length
dynamic_seqseq_iter
seq_length
Yes
Yes
List
Integer
StringCreates a dynamic sequence

Digital Logic Functions

Digital logic functions perform boolean operations.

FunctionParametersRequiredTypeOutput TypeDescription
andx
y
Yes
Yes
Boolean
Boolean
BooleanReturns True if both x and y are True
orx
y
Yes
Yes
Boolean
Boolean
BooleanReturns True if either x or y is True
notxYesBooleanBooleanReturns the opposite boolean value
nandx
y
Yes
Yes
Boolean
Boolean
BooleanReturns True if not both x and y are True
norx
y
Yes
Yes
Boolean
Boolean
BooleanReturns True if neither x nor y is True
xorx
y
Yes
Yes
Boolean
Boolean
BooleanReturns True if x and y have different boolean values
xnorx
y
Yes
Yes
Boolean
Boolean
BooleanReturns True if x and y have the same boolean value
impliesx
y
Yes
Yes
Boolean
Boolean
BooleanReturns True if x implies y (if x then y)
equivalencex
y
Yes
Yes
Boolean
Boolean
BooleanReturns True if x and y are equivalent

DateTime Functions

DateTime functions handle date and time operations.

FunctionParametersRequiredTypeOutput TypeDescription
now---StringReturns the current date and time
today---StringReturns the current date
yesterday---StringReturns yesterday's date
tomorrow---StringReturns tomorrow's date
fromtimestamptimestampYesInteger/FloatStringConverts a timestamp to a date string
utcnow---StringReturns the current UTC time
strptimedate_string
format
Yes
Yes
String
String
StringParses a string into a datetime
strftimeinput_date
format
Yes
Yes
String
String
StringFormats a datetime into a string
date_replaceinput_date
year
month
day
hour
minute
second
microsecond
Yes
No
No
No
No
No
No
No
String
Integer
Integer
Integer
Integer
Integer
Integer
Integer
StringReplaces components of a date
add_timedeltainput_date
days
seconds
microseconds
milliseconds
minutes
hours
weeks
Yes
No
No
No
No
No
No
No
String
Integer
Integer
Integer
Integer
Integer
Integer
Integer
StringAdds a time delta to a date
isoformatinput_dateYesStringStringReturns ISO 8601 formatted date
timestampinput_dateYesStringFloatReturns POSIX timestamp
weekdaydate_stringYesStringIntegerReturns weekday (0-6, Monday is 0)
isoweekdaydate_stringYesStringIntegerReturns ISO weekday (1-7, Monday is 1)
str_weekdaydate_stringYesStringStringReturns weekday name
str_isoweekdaydate_stringYesStringStringReturns ISO weekday name
get_dateinput_dateYesStringStringExtracts date part
get_datetimeinput_dateYesStringStringReturns datetime
get_timeinput_dateYesStringStringExtracts time part
get_dayinput_dateYesStringIntegerExtracts day of month
get_monthinput_dateYesStringIntegerExtracts month (1-12)
get_yearinput_dateYesStringIntegerExtracts year
get_date_differenceinput_date1
input_date2
Yes
Yes
String
String
IntegerCalculates difference between dates
convert_timezoneinput_date
target_timezone
Yes
Yes
String
String
StringConverts date to target timezone

Info/Utility Functions

Info functions provide utility operations for type checking and conversions.

FunctionParametersRequiredTypeOutput TypeDescription
is_evenxYesIntegerBooleanChecks if a number is even
is_oddxYesIntegerBooleanChecks if a number is odd
type_checkx
expected_type
Yes
Yes
Any
String
BooleanChecks if x matches expected type
convert_typex
target_type
Yes
Yes
Any
String
AnyConverts x to target type
round_offx
precision
Yes
No
Number
Integer
FloatRounds a number to specified precision
round_tox
precision
Yes
No
Number
Integer
FloatRounds a number to specified precision
is_positivexYesNumberBooleanChecks if a number is positive
is_negativexYesNumberBooleanChecks if a number is negative
absolutexYesNumberNumberReturns absolute value
is_integerxYesAnyBooleanChecks if x is an integer
is_floatxYesAnyBooleanChecks if x is a float
to_stringxYesNumber/BooleanStringConverts to string
to_intxYesString/Float/BooleanIntegerConverts to integer
to_floatxYesString/Integer/BooleanFloatConverts to float
to_boolxYesString/NumberBooleanConverts to boolean

Regex Functions

Regex functions perform regular expression operations.

FunctionParametersRequiredTypeOutput TypeDescription
findallpattern
string
Yes
Yes
String
String
ListFinds all occurrences of pattern
subpattern
replacement
string
Yes
Yes
Yes
String
String
String
StringReplaces pattern matches with replacement
re_splitpattern
string
Yes
Yes
String
String
ListSplits string by pattern
subnpattern
replacement
string
Yes
Yes
Yes
String
String
String
DictionaryReturns modified string and count of replacements

Statistics Functions

Statistics functions perform statistical operations on numeric data.

FunctionParametersRequiredTypeOutput TypeDescription
minnumbersYesList of NumbersNumberReturns minimum value
maxnumbersYesList of NumbersNumberReturns maximum value
meannumbersYesList of NumbersNumberCalculates average value
mediannumbersYesList of NumbersNumberFinds the median value
modenumbersYesList of NumbersList of NumbersFinds the most common value(s)
rangenumbersYesList of NumbersNumberCalculates range (max-min)
variancenumbersYesList of NumbersNumberCalculates variance
standard_deviationnumbersYesList of NumbersNumberCalculates standard deviation
percentilenumbers
percent
Yes
Yes
List of Numbers
Number
NumberCalculates percentile value
quantilesnumbers
num_quantiles
Yes
Yes
List of Numbers
Integer
List of NumbersCalculates quantile values
array_lengthnumbersYesList of NumbersIntegerReturns count of items
generate_numbervalue
top
bottom
Yes
No
No
Integer
Integer
Integer
IntegerGenerates a number

Arithmetic Functions

Arithmetic functions perform basic mathematical operations.

FunctionParametersRequiredTypeOutput TypeDescription
sumnumbersYesList of NumbersNumberCalculates sum of numbers
productnumbersYesList of NumbersNumberCalculates product of numbers
subtractx
y
Yes
Yes
Number
Number
NumberSubtracts y from x
addx
y
Yes
Yes
Number
Number
NumberAdds x and y
dividex
y
Yes
Yes
Number
Number
FloatDivides x by y
modulox
y
Yes
Yes
Integer
Integer
IntegerReturns remainder of x divided by y
absxYesNumberNumberReturns absolute value
squarexYesNumberNumberReturns x squared
cubexYesNumberNumberReturns x cubed
powerx
y
Yes
Yes
Number
Number
NumberReturns x raised to power y
sqrtxYesNumberFloatReturns square root of x
factorialxYesIntegerIntegerReturns factorial of x

Math Functions

Math functions provide advanced mathematical operations.

FunctionParametersRequiredTypeOutput TypeDescription
gcda
b
Yes
Yes
Integer
Integer
IntegerFinds greatest common divisor
logx
base
Yes
No
Number
Number
FloatCalculates logarithm
log10xYesNumberFloatCalculates base-10 logarithm
sinxYesNumberFloatCalculates sine of x (radians)
cosxYesNumberFloatCalculates cosine of x (radians)
tanxYesNumberFloatCalculates tangent of x (radians)
degreesxYesNumberFloatConverts radians to degrees
radiansxYesNumberFloatConverts degrees to radians
hypotx
y
Yes
Yes
Number
Number
FloatCalculates hypotenuse length

Array Functions

Array functions manipulate lists and arrays.

FunctionParametersRequiredTypeOutput TypeDescription
appendarray
item
Yes
Yes
List
Any
ListAdds item to end of array
extendarray
iterable
Yes
Yes
List
List
ListExtends array with another iterable
insertarray
index
item
Yes
Yes
Yes
List
Integer
Any
ListInserts item at specified index
removearray
item
Yes
Yes
List
Any
ListRemoves first occurrence of item
poparray
index
Yes
No
List
Integer
AnyRemoves and returns item at index
cleararrayYesListEmpty ListRemoves all items from array
indexarray
item
start
end
Yes
Yes
No
No
List
Any
Integer
Integer
IntegerReturns first index of item
array_countarray
item
Yes
Yes
List
Any
IntegerCounts occurrences of item
array_sortarray
reverse
Yes
No
List
Boolean
ListSorts array in place
array_reversearrayYesListListReverses array in place
array_lenarrayYesListIntegerReturns length of array
array_maxarrayYesListAnyReturns maximum element
array_minarrayYesListAnyReturns minimum element
array_sumarrayYesList of NumbersNumberReturns sum of elements
array_slicearray
top
bottom
step
Yes
No
No
No
List
Integer
Integer
Integer
ListReturns a slice of the array

Dictionary Functions

Dictionary functions manipulate key-value pairs.

FunctionParametersRequiredTypeOutput TypeDescription
dict_getdictionary
key
default
Yes
Yes
No
Dictionary
Any
Any
AnyGets value for key or default
dict_setdictionary
key
value
Yes
Yes
Yes
Dictionary
Any
Any
DictionarySets key to value in dictionary
dict_popdictionary
key
default
Yes
Yes
No
Dictionary
Any
Any
AnyRemoves key and returns value
dict_popitemdictionaryYesDictionaryDictionaryRemoves and returns last key-value pair
dict_keysdictionaryYesDictionaryListReturns list of keys
dict_valuesdictionaryYesDictionaryListReturns list of values
dict_itemsdictionaryYesDictionaryListReturns list of key-value pairs
dict_cleardictionaryYesDictionaryEmpty DictionaryRemoves all items
dict_updatedictionary
other
Yes
Yes
Dictionary
Dictionary
DictionaryUpdates dictionary with another
dict_copydictionaryYesDictionaryDictionaryCreates a shallow copy
dict_fromkeysiterable
value
Yes
No
List
Any
DictionaryCreates dictionary from keys with value
dict_lendictionaryYesDictionaryIntegerReturns number of items
dict_containsdictionary
key
Yes
Yes
Dictionary
Any
BooleanChecks if key exists
jmespath_searchjmespath_query
input_json
default_empty_result
return_input_on_empty
Yes
Yes
No
No
String
Dictionary/List
String
Boolean
AnyQueries JSON using JMESPath
json_contract_validationinput_json
json_schema
Yes
Yes
Dictionary
Dictionary
BooleanValidates JSON against schema

Example Usage

  1. Select a formula category (e.g., String, Arithmetic, Statistics).
  2. Choose a formula from the predefined options.
  3. Provide the required inputs.
  4. The formula executes within the workflow, using defined inputs.
  5. The resulting output can be used in subsequent steps.

Actions

  • Add: Insert a new formula row.
  • Delete: Remove an existing formula row.
  • Duplicate: Copy a formula row for reuse.

This feature enables dynamic computation and transformation of data within workflows.