CM Data Subscriptions PoC/Performance test
[cps.git] / integration-test / src / test / resources / data / cm-data-subscriptions / cm-data-subscriptions@2023-09-21.yang
1 module cm-data-subscriptions {
2     yang-version 1.1;
3     namespace "org:onap:cps:ncmp";
4
5     prefix cmds;
6
7     revision "2023-09-21" {
8         description
9         "First release, Proof of Concept & Performance";
10     }
11
12     container datastores {
13
14         list datastore {
15             key "name";
16
17             leaf name {
18                 type string;
19             }
20
21             container cm-handles {
22
23                 list cm-handle {
24                     key "id";
25
26                     leaf id {
27                         type string;
28                     }
29
30                     container filters {
31
32                         list filter {
33                             key "xpath";
34
35                             leaf xpath {
36                                 type string;
37                             }
38
39                             leaf-list subscribers {
40                                 type string;
41                             }
42
43                         }
44                     }
45                 }
46             }
47         }
48     }
49 }