Would like to tailor a config cli command

Yang Model Subtree:
+++++++++++++++
container group {
presence “”;
description
“Enter the group configuration mode”;
choice group {
description
“choice”;
case group-id {
container group-id {
description
“container group-id.”;
leaf group-id {
type uint8 {
range “1…7”;
}
mandatory true;
description
“Specify a group id”;
}
leaf description {
type string;
description
“Enter the description for this group Describe
the purpose of this group in brief”;
}
}
}
case group-name {
container group-name {
description
“container group-name.”;
leaf group-name {
type string;
mandatory true;
description
“Specify a group name”;
}
leaf description {
type empty;
mandatory true;
description
“Enter the description for this group”;
}
}
}
}
}

The corresponding cli config command is:
group group-id group-id description

I want the command to look like:
group group-id description

Please share your suggestion.

You can use tailf:cli-drop-node-name to suppress the name of the container named group-id from appearing in the auto-rendered CLI, such as follows:

  container group-id {
    tailf:cli-drop-node-name;