Merge "Fixed for bug 1168 : Issue while update subnet"
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / resources / cars.yang
1 module cars {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:test:cars";
4     prefix "cars";
5
6     revision "2014-03-13" {
7         description "Initial revision.";
8     }
9
10     container cars {
11         list car {
12             key name;
13             leaf name {
14                 type string;
15             }
16
17             leaf price {
18                 type uint64;
19             }
20         }
21     }
22 }