blob: 6adce57ccc9682120f306ba92d7918ec2f8ec0b2 [file] [log] [blame]
module pnf-subscriptions {
namespace "http://onap.org/pnf-subscriptions";
prefix subscriptions;
revision "2019-11-22" {
description
"initial version";
}
container subscriptions {
list configuration{
key "subscriptionName";
leaf subscriptionName {
type string;
}
leaf administrativeState {
type string;
}
leaf fileBasedGP {
type int16;
}
leaf fileLocation {
type string;
}
list measurementGroups {
key "id";
leaf id{
type int16;
}
container measurementGroup {
list measurementTypes {
key "measurementType";
leaf measurementType {
type string;
}
}
list managedObjectDNsBasic {
key "DN";
leaf DN {
type string;
}
}
}
}
}
}
}