Is it possible to append a keyword to leaf in show commands?

Hi,

Is it possible to append a keyword to leaf in show commands ?

module mname {
    container defintion {
        list brief {
            tailf:callpoint show_def_brief
            key "name"
            leaf name {
                tailf:info "Name";
                type string;
            }
            list detailf {
            tailf:callpoint show_def_brief
            key "name"
            leaf name {
                tailf:info "Name";
                type string;
            }
    }
}

When i compile this, this spit-outs a tag value as “mname_name” for both brief and detail list. Is it possible to add keyword to leaf on this list ?

You can use “tailf:code-name” (see “man tailf_yang_extensions”) for a leaf, and set explicit/unique hash name for elements where you need it…