From: emaclee Date: Wed, 16 Jul 2025 13:12:14 +0000 (+0100) Subject: Create new data job subscription model X-Git-Tag: 3.7.0~9^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=d308843a564e4401e0f2f59c3b28fda2db110093;p=cps.git Create new data job subscription model Issue-ID: CPS-2890 Change-Id: I9ee477b8d90c5f7cf69439de9b9438dd5947fedc Signed-off-by: emaclee --- diff --git a/cps-ncmp-service/src/main/resources/models/cm-data-job-subscriptions@2025-07-16.yang b/cps-ncmp-service/src/main/resources/models/cm-data-job-subscriptions@2025-07-16.yang new file mode 100644 index 0000000000..940bce1eb0 --- /dev/null +++ b/cps-ncmp-service/src/main/resources/models/cm-data-job-subscriptions@2025-07-16.yang @@ -0,0 +1,20 @@ +module cps-data-job-subscriptions { + yang-version 1.1; + namespace "org:onap:cps:ncmp"; + + prefix cps-djs; + + revision "2025-07-16" { + description + "First release of cm data job (notification) subscriptions model"; + } + + container dataJob { + list subscription { + key "alternateId dataTypeId"; + leaf alternateId { type string; } + leaf dataTypeId { type string; } + leaf-list dataJobId { type string; } + } + } +} \ No newline at end of file