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