summaryrefslogtreecommitdiffstats
path: root/tools/lint/examples/sm-mod.yang
blob: 79d1a503fde36f4ad4d1d51be1f1474b0bc67254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module sm-mod {
    yang-version 1.1;
    namespace "urn:yanglint:sm-mod";
    prefix "sm-mod";

    revision 2017-01-26 {
      description
        "initial";
      reference
        "";
    }

    container not-compiled {
        leaf first {
            type string;
        }
        leaf second {
            type string;
        }
    }
}