aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples-onap-vcpe/src/main/resources/schemas/APPCOutputBodyType.avsc
diff options
context:
space:
mode:
Diffstat (limited to 'examples/examples-onap-vcpe/src/main/resources/schemas/APPCOutputBodyType.avsc')
-rw-r--r--examples/examples-onap-vcpe/src/main/resources/schemas/APPCOutputBodyType.avsc55
1 files changed, 55 insertions, 0 deletions
diff --git a/examples/examples-onap-vcpe/src/main/resources/schemas/APPCOutputBodyType.avsc b/examples/examples-onap-vcpe/src/main/resources/schemas/APPCOutputBodyType.avsc
new file mode 100644
index 000000000..2c110170a
--- /dev/null
+++ b/examples/examples-onap-vcpe/src/main/resources/schemas/APPCOutputBodyType.avsc
@@ -0,0 +1,55 @@
+{
+ "type" : "record",
+ "name" : "APPCOutputBody_Type",
+ "namespace" : "org.onap.policy.apex.onap.vcpe",
+ "fields" : [
+ {
+ "name": "output",
+ "type": {
+ "type" : "record",
+ "name" : "OutputRecord",
+ "fields" : [
+ {
+ "name": "status",
+ "type": {
+ "type" : "record",
+ "name" : "StatusRecord",
+ "fields" : [
+ {
+ "name": "code", "type": "int"
+ },
+ {
+ "name": "message", "type": "string"
+ }
+ ]
+ }
+ },
+ {
+ "name": "common_DasH_header",
+ "type": {
+ "type" : "record",
+ "name" : "OutputCommonHeaderRecord",
+ "fields" : [
+ {
+ "name": "request_DasH_id", "type": "string"
+ },
+ {
+ "name": "originator_DasH_id", "type": "string"
+ },
+ {
+ "name": "api_DasH_ver", "type": "string"
+ },
+ {
+ "name": "sub_DasH_request_DasH_id", "type": "string"
+ },
+ {
+ "name": "timestamp", "type": "string"
+ }
+ ]
+ }
+ }
+ ]
+ }
+ }
+ ]
+}