YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / no-revision / module-without-revision.yang
1 module module-without-revision {
2
3     yang-version 1;
4     namespace "urn:simple.demo.test1";
5     prefix "mwr";
6
7     import ietf-inet-types {
8         prefix "inet";
9         revision-date 2010-09-24;
10     }
11
12     organization "opendaylight";
13     contact "WILL-BE-DEFINED-LATER";
14
15     typedef dscp-ext {
16         type inet:dscp {
17             range "min..max";
18         }
19     }
20
21     leaf id {
22         type inet:port-number {
23             range "0..65535";
24         }
25     }
26
27 }