Knowledge check

Time to check your knowledge! Answer the following questions to check your understanding of the concepts covered in this module. Don't worry; these don't count towards your exam grade at the end of the learning path.

Question

You're building a story that processes security alerts. You have an upstream action called fetch_alerts that returns data like this:
{
"alerts": [
{"id": "A-001", "severity": "high", "status": "open"},
{"id": "A-002", "severity": "low", "status": "closed"},
{"id": "A-003", "severity": "high", "status": "open"}
]
}

You need to create a formula that extracts only the IDs of high-severity alerts that are still open, and returns them as a comma-separated string like "A-001, A-003". Which prompt would be most effective for auto generate to create this formula?

Question

You used auto generate to create a formula that extracts a user's first name from a full name field. The prompt you used was: "Extract the first name from getuser.body.fullname"

Auto generate created this formula: SPLIT(getuser.body.fullname, " ")[0]

You tested it with one sample event where full_name was "John Smith" and it returned "John" correctly. What steps should you do next before considering this formula complete?

Was this page helpful?

Built by you,
powered by Tines

Already have an account? Log in.