Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
module test1 {
    yang-version 1.1;
 
    namespace "org:onap:cps:test1";
    revision "2020-01-01";
    prefix "base";
 
	    leaf name {
            type string;
        }
        leaf description {
            type string;
        }
}

data:
{
	name: "abs",
	description: "cde"
}

---
module test2 {
    yang-version 1.1;
 
    namespace "org:onap:cps:test2";
    revision "2020-01-01";
    prefix "base";
 
	    leaf name {
            type string;
        }
        leaf description {
            type string;
        }
}

...