blob: 2d4b207e17ffa7e9695f0c31638978f9cdc1e015 [file] [log] [blame]
module subscription {
yang-version 1.1;
namespace "org:onap:ncmp:subscription";
prefix subs;
revision "2023-21-03" {
description
"NCMP subscription model";
}
container subscription-registry {
list subscription {
key "clientID clientName";
leaf clientID {
type string;
}
leaf clientName {
type string;
}
leaf topic {
type string;
}
leaf isTagged {
type boolean;
}
container predicates {
list targetCmHandles {
key "cmHandleId";
leaf cmHandleId {
type string;
}
leaf status {
type string;
}
}
leaf datastore {
type string;
}
}
}
}
}