blob: ad358445b2ae76316b8e976f24351799e85be48a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
module subscription {
yang-version 1.1;
namespace "org:onap:ncmp:subscription";
prefix subs;
revision "2022-10-12" {
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;
}
leaf-list dmi-service-names {
type string;
}
}
}
}
|