blob: 3c2d893b2a6e4aef1104773bb596c0f751f19d29 [file] [log] [blame]
DylanB95EST31facc82021-08-18 17:12:25 +01001module dmi-registry {
2
3 yang-version 1.1;
4
5 namespace "org:onap:cps:ncmp";
6
7 prefix dmi-reg;
8
9 revision "2021-05-20" {
10 description
11 "Initial Version";
12 }
13
14 container dmi-registry {
15
16 list cm-handles {
17
18 key "id";
19
20 leaf id {
21 type string;
22 }
23
24 leaf dmi-service-name {
25 type string;
26 }
27
28 list additional-properties {
29
30 key "name";
31
32 leaf name {
33 type string;
34 }
35
36 leaf value {
37 type string;
38 }
39 }
40 }
41 }
42}