List attributes not showing up

My yang model looks like as follows:

container xyz {
  config false;
  leaf p;
  list abc{
     leaf q;
     uses groupingA;
     leaf r; 
  } 
}

When I do a ‘xyz abc ?’ in confd cli, I don’t see any attributes defined under list abc? What could be the reason for this behavior?

Maybe it’s just to avoid “unnecessary” stuff, but your model is not correct, leaves need to have types. Also, the command line xyz abc ? looks strange since xyz is config false, maybe you wanted show xyz abc ? - with that you should get the list of possible completions.