1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- module ttt {
- namespace "urn:ttt";
- prefix t;
- leaf topleaf {
- type string;
- }
- leaf topleaf2 {
- type string;
- }
- leaf topempty {
- type empty;
- }
- container test {
- list iface {
- key "name";
- leaf name {
- type string;
- }
- leaf comment {
- type string;
- }
- leaf-list multi {
- type string;
- }
- leaf type {
- type enumeration {
- enum ethernet;
- enum ppp;
- enum dummy;
- }
- }
- leaf empty {
- type empty;
- }
- }
- }
- }
|