Blob Blame History Raw
module mod1 {

    prefix abc;
    namespace "urn:cesnet:mod1";

    container ccc {
        typedef my {
            type string {
                length "1..8";
            }
            description test;
        }

        leaf leaf1 {
            type my;
            default "password";
            mandatory true;
        }
    }
}