aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples-onap-vcpe/src/main/resources/schemas/APPCOutputBodyType.avsc
blob: 2c110170ac240385a7bf9dc5b9fa15c8b718f3d9 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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"
                                }
                                ]
                        }
                    }
                    ]
            }
        }
        ]
}