module notif-example { namespace "http://netconfcentral.org/ns/notif-example"; prefix "notif-example"; contact "Andy Bierman "; revision 2019-01-01 { description "Notification test module in progress."; } grouping resource { container resource { choice resource { case circuit-pack { leaf circuit-pack-name { type string; } } case port { container port { leaf port-name { type string; } } } case connection { leaf connection-name { type string; } } } } list target { leaf target-name { type instance-identifier; } } // list edit } notification restart-notification { uses resource; } rpc test-notif { description "Trigger notification, test that they are working"; } }