Remove unused model imports
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / model / src / main / yang / car-people.yang
1 module car-people {
2   yang-version 1;
3
4   namespace "urn:opendaylight:params:xml:ns:yang:controller:config:sal-clustering-it:car-people";
5
6   prefix car;
7
8   import car { prefix "c"; revision-date 2014-08-18; }
9   import people { prefix "people"; revision-date 2014-08-18; }
10
11   organization "Netconf Central";
12
13   contact
14     "Harman Singh <harmasin@cisco.com>";
15
16   description
17     "YANG model for car for test application";
18
19   revision "2014-08-18" {
20     description
21       "Clustering sample app";
22   }
23
24   container car-people {
25     description
26      "Top-level container for all people car map";
27
28     list car-person {
29       key "car-id person-id";
30       description "A mapping of cars and people.";
31       leaf car-id {
32         type c:car-id;
33       }
34
35       leaf person-id {
36         type people:person-id;
37       }
38     }
39   }
40 }