Condition Negation
All matches can be negated (inverting from "must match" to "must not match") by adding a "negated": true attribute to the match condition. For example, if you want to apply behaviors to all paths that are neither in "/path1/*" nor "/path2/*" then you could use the following negated match condition:
"matches": [
{
"name": "url-path",
"value": "path1 path2",
"negated": true
}
]