summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/json-to-nn/simple-list-yang/3/multiple-items.yang
blob: dcc17d53aa08e783b5210d19e576ec2e11ef08f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module multiple-items-yang {
  namespace "multiple:items:yang";  

  prefix "mltitmsyg";
  revision 2013-11-12 {    
  }
  
  list lst {
    list lst1 {
        leaf lf11{
            type string;
        }
        leaf-list lflst11{
            type string;
        }
        container cont11{
            
        }
        list lst11{
            
        }
    }
  }
}