It would be great if there were a logical if schema in the vein of and/or/not. It could look like
{ "if": [ conditional, consequent ] }
whose semantics would be exactly equivalent to:
{ "or": [ { "not": conditional },
{ "and": [ conditional, consequent ] } ] }
Thank you!