aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples-pcvs/src/main/resources/org/onap/policy/apex/examples/pcvs/vpnsla/avro/problems.avsc
blob: c633c129da5341b23b0fdcadb9d234ffba89c120 (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
{
    "type" : "record",
    "name" : "Problem",
    "fields" : [
        {"name": "edge",       "type": "string"},
        {"name": "startTime",  "type": "long"},
        {"name": "lastUpdate", "type": "long"},
        {"name": "endTime",    "type": "long"},
        {
            "name": "status",
            "doc": "problem status",
            "type": {
                "type": "enum",
                "name": "statusEnum",
                "symbols" : [
                    "NONE",
                    "STILL",
                    "SOLVED",
                    "NEW"
                ]
            }
        },
        {
            "name": "edgeUsedBy",
            "doc": "customers using the edge",
            "type": {"type" : "array", "items" : "string"}
        },
        {
            "name": "impededLast",
            "doc": "customers last impeded",
            "type": {"type" : "array", "items" : "string"}
        }
    ]
}