aboutsummaryrefslogtreecommitdiffstats
path: root/cps-service/src/test/resources/multipleDataTree.yang
blob: 15fd04246af4a3a3d4e7783b905bded239d65f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module multipleDataTree {
    yang-version 1.1;
    namespace "org:onap:ccsdk:multiDataTree";

    prefix multiple-data-tree;

    revision "2020-09-15" {
        description
        "Sample Model for multiple data tree";
    }

    container first-container {
        leaf a-leaf {
            type string;
        }
    }

    container last-container {
        leaf x-leaf {
            type string;
        }
    }
}