summaryrefslogtreecommitdiffstats
path: root/netconf/restconf/restconf-nb-bierman02/src/test/resources/json-to-nn/simple-list-yang/4/array-with-null.yang
blob: 869e40655552e9f851fac542fa2ae3762935d94b (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
25
26
module array-with-null-yang {
  namespace "array:with:null:yang";  

  prefix "arwnlyn";
  revision 2013-11-12 {    
  }
  
  container cont{
      leaf lf{
          type empty;
      }
      leaf lf1{
          type string;
      }
      leaf lf2{
          type string;
      }
      leaf-list lflst1{
          type empty;
      }
      
      leaf-list lflst2{
          type string;
      }
  }
}