RIFT OSM R1 Initial Submission
[osm/SO.git] / common / python / rift / mano / yang_translator / test / data / yang_helloworld_invalid.json
1 module helloworld {
2
3     namespace "http://helloworld.com/ns/helloworld";
4
5     prefix "helloworld";
6
7     organization  "helloworld organization";
8
9     description
10       "helloworld module";
11
12     revision 2013-04-02 {
13         description
14             "Initial revision";
15     }
16
17     container helloworld {
18         description
19            "Helloworld example for creating YANG-netconfd SIL modules";
20         leaf message {
21             config false;
22             type string;
23         }
24         leaf invalid {
25           type invalid;
26         }
27     }
28 }