I didn't claim it. These are the instructions from the first page:
"TASK 5 - Invoking this “Network Resource”
The final task is how to activate this functionality you created. The way you do that is via an ISY program. I’m not going to go into too much detail about that…unless someone requests it. The short answer is, there is a programmatic “action” called “Networking”. You can then either select “Wake on LAN” or “Resource”. If you select “Resource” a pop-up menu appears of all the Network Resources you created.
For example, I have a program running in the background that monitors whether I have turned a particular Insteon-device scene on. If the scene turns on, the ISY will trigger the Network Resource “LIGHT 1 ON”. When the scene turns off, another program triggers a second Network Resource to turn the light off. Yes, you need to create an entirely new resource to turn a light off. So to turn my light on, I have something like this in the Body field:
{"on":true, "bri":255, "sat":255, "hue":255, "transitiontime":5}
To create a second Network Resource to turn the light off, everything is the same expect I have JUST this in the Body field...
{"on”:false}
You don’t need all those other parameters if you are just turning a light off."
I followed the directions exactly and the light turns on when I run the on:true but does not turn off when I run the on:false.