summaryrefslogtreecommitdiffstats
path: root/tests/modules/yang/sm-extension.yang
blob: 63d164a0051bb7a2d7f0e5935dfa19d2f53c6b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module sm-extension {
  yang-version 1.1;
  namespace "urn:sm-ext";
  prefix "sm-ext";

  list tlist {
    key "name";
    leaf name {
      type uint32;
    }
  }
  container tcont {
    leaf tleaf {
      type uint32;
    }
  }
}