summaryrefslogtreecommitdiffstats
path: root/tests/yanglint/modules/modnotif.yang
blob: a2155a0486594808f46681232b721faf3e38759c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module modnotif {
  yang-version 1.1;
  namespace "urn:yanglint:modnotif";
  prefix mn;

  container con {
    notification nfn {
      leaf lf {
        type string;
      }
    }
  }

  notification nfg {
    leaf lf {
      type string;
    }
  }
}