1keynote-version: 2 2authorizer: "Key5" 3licensees: "Key6" 4# this assertion will evaluate to "false" because of the conditions field value 5conditions: app_domain == "testing" && request == "test" && 6 variable == "no" -> "true"; # this clause won't match 7 app_domain == "testing" -> { 8 app_domain == "testing" -> "false"; # this will match 9 var == "no" -> { foo == "bar" -> 10 "false"; # this won't match 11 }; 12 }; 13