How to read context variable in request flow to match condition

Hi, I am setting a variable in context using the java callout policy. I need to use that variable in request flow to match a condition. If the condition match then I need to raise a raise-fault else not. Currenlt I am setting this condition but its not working and it always raise this raise-fault even jsv_valid is true.
Here is my condition:
<Flow name="flow1">
            <Request>
                <Step>
                    <Name>Raise-Fault-1</Name>
                </Step>
                <Condition>({jsv_valid} = "false")</Condition>
            </Request>

        </Flow>

0 1 122
1 REPLY 1

I got the answer. Condition will be like:
<Step>
     <Name>Raise-Fault-1</Name>

     <Condition>( jsv_valid equals "false")</Condition>
 </Step>