Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Assumptions

Issues & Decisions

...

The following yang model will be used to store the payload information of subscription data

Updated:  

Code Block
languagexml
titleSubscription YANG model
linenumberstrue
module subscription {
    yang-version 1.1;
    namespace "org:onap:ncmp:subscription";

    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;
            }
        }
    }
}



Onboarding via docker container

...