ttt.yang 263 B

12345678910111213141516171819
  1. module ttt {
  2. namespace "urn:ttt";
  3. prefix t;
  4. container test {
  5. list acl {
  6. key "name";
  7. leaf name {
  8. type string;
  9. }
  10. leaf comment {
  11. type string;
  12. }
  13. leaf-list multi {
  14. type string;
  15. }
  16. }
  17. }
  18. }