According to Spinnaker Doc, a context value for attribute X can be referenced as ${#stage("Deploy to Prod")["X"]}. In my case, X may not exist. The value returned when X does not exist is the SpEL expression itself "${#stage("Deploy to Prod")["X"]}". I was expecting to get a null or empty string. Is there a way to get the SpEL expression return None or '' when the attribute does not exist in the context map?