diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2019-04-16 16:05:51 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-16 16:05:51 +0000 |
commit | e5f139e3c865eb429dc11a987ad7a01b759c6692 (patch) | |
tree | 031a1cf40bc502fd8c506204e98bb48d934e7a70 /examples/examples-onap-bbs/src/main/resources/schemas | |
parent | 28e6481e51deef346c00d37631df4b07ebce333c (diff) | |
parent | 5262c350a449c02d91b558976c37850d6340ad81 (diff) |
Merge "ONAP BBS: Apex Nomadic ONT Policy Implementation"
Diffstat (limited to 'examples/examples-onap-bbs/src/main/resources/schemas')
-rw-r--r-- | examples/examples-onap-bbs/src/main/resources/schemas/VCPEClosedLoopStatusType.avsc | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/examples/examples-onap-bbs/src/main/resources/schemas/VCPEClosedLoopStatusType.avsc b/examples/examples-onap-bbs/src/main/resources/schemas/VCPEClosedLoopStatusType.avsc new file mode 100644 index 000000000..5d1b317a8 --- /dev/null +++ b/examples/examples-onap-bbs/src/main/resources/schemas/VCPEClosedLoopStatusType.avsc @@ -0,0 +1,108 @@ +{ + "type": "record", + "name": "VCPEClosedLoopStatus", + "fields": [ + { + "name": "AAI", + "type": { + "type": "record", + "name": "VCPE_AAI_Type", + "namespace": "org.onap.policy.apex.onap.vcpe", + "fields": [ + { + "name": "attachmentPoint", + "type": "string" + }, + { + "name": "service_information_hsia_cfs_service_instance_id", + "type": "string" + }, + { + "name": "cvlan", + "type": "string" + }, + { + "name": "svlan", + "type": "string" + }, + { + "name": "remoteId", + "type": "string" + } + ] + } + }, + { + "name": "closedLoopAlarmStart", + "type": "long" + }, + { + "name": "closedLoopAlarmEnd", + "type": "long" + }, + { + "name": "closedLoopControlName", + "type": "string" + }, + { + "name": "version", + "type": "string" + }, + { + "name": "requestID", + "type": "string" + }, + { + "name": "closedLoopEventClient", + "type": "string" + }, + { + "name": "closedLoopEventStatus", + "type": "string" + }, + { + "name": "target_type", + "type": "string" + }, + { + "name": "target", + "type": "string" + }, + { + "name": "from", + "type": "string" + }, + { + "name": "policyScope", + "type": "string" + }, + { + "name": "policyName", + "type": "string" + }, + { + "name": "policyVersion", + "type": "string" + }, + { + "name": "notification", + "type": "string" + }, + { + "name": "notificationTime", + "type": "long" + }, + { + "name": "result", + "type": "string" + }, + { + "name": "message", + "type": "string" + }, + { + "name": "aai_message", + "type": "string" + } + ] +}
\ No newline at end of file |