Remove executable bits
[mdsal.git] / binding / mdsal-binding-test-model / src / main / yang / bug8903.yang
1 module bug8903 {
2     yang-version 1;
3     namespace "bug8903";
4     prefix "bug8903";
5
6     revision "2017-08-29" {
7     }
8
9     typedef policy-logging-flag {
10         description "false-disable,true-enable";
11         type boolean;
12     }
13
14     container default-policy{
15       leaf action {
16         type boolean;
17       }
18
19       leaf action2 {
20         type policy-logging-flag;
21       }
22
23       leaf action3 {
24         type boolean;
25         default "true";
26       }
27     }
28 }