blob: 6adce57ccc9682120f306ba92d7918ec2f8ec0b2 [file] [log] [blame]
rajendrajaiswal6a61ad82019-12-16 14:24:02 +00001module pnf-subscriptions {
2 namespace "http://onap.org/pnf-subscriptions";
3 prefix subscriptions;
4
5 revision "2019-11-22" {
6 description
7 "initial version";
8 }
9 container subscriptions {
10 list configuration{
11 key "subscriptionName";
12 leaf subscriptionName {
13 type string;
14 }
15 leaf administrativeState {
16 type string;
17 }
18 leaf fileBasedGP {
19 type int16;
20 }
21 leaf fileLocation {
22 type string;
23 }
24 list measurementGroups {
25 key "id";
26 leaf id{
27 type int16;
28 }
29 container measurementGroup {
30 list measurementTypes {
31 key "measurementType";
32 leaf measurementType {
33 type string;
34 }
35 }
36 list managedObjectDNsBasic {
37 key "DN";
38 leaf DN {
39 type string;
40 }
41 }
42 }
43
44 }
45 }
46 }
47}