Merge "creating a default subnet"
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / resources / yang-to-json-conversion / simple-yang-types / simple-yang-types.yang
1 module simple-yang-types {
2   namespace "simple:yang:types";  
3
4   prefix "smptp";
5    revision 2013-11-5 {
6     description  "Initial revision.";
7   }
8   
9   container cont1 {
10           leaf lf11 {
11                 type string;
12           }
13           leaf-list lflst11 {
14                 type int32;
15           }
16           leaf-list lflst12 {
17                 type string;
18           }
19           list lst11 {
20                 key lf111;
21                 leaf lf111 {
22                         type uint8;
23                 }
24                 leaf lf112 {
25                         type string;
26                 }               
27                 container cont111 {
28                         leaf lf1111 {
29                                 type string;
30                         }
31                         leaf-list lflst1111 {
32                                 type int32;
33                         }
34                         list lst1111 {
35                                 leaf lf1111A {
36                                         type string;
37                                 }
38                                 leaf lf1111B {
39                                         type uint8;
40                                 }
41                         }
42                 }
43           }
44           
45   }
46
47 }