...
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;
}
} |
...