aboutsummaryrefslogtreecommitdiffstats
path: root/examples/examples-pcvs/src/main/resources/org/onap/policy/apex/examples/pcvs/vpnsla/avro/customers.avsc
blob: eca3836a32b95eb12ea2502ad1cdc4fe041f9277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "type" : "record",
    "name" : "Customer",
    "fields" : [
        {"name" : "customerName", "type" : "string"},
        {"name" : "dtSLA"       , "type" : "int"},
        {"name" : "dtYTD"       , "type" : "int"},
        {"name" : "priority"    , "type" : "boolean"},
        {"name" : "satisfaction", "type" : "int"},
        {
            "name": "links",
            "doc": "Links used by this customer",
            "type": {"type"  : "array", "items" : "string"}
        }
    ]
}