All Downloads are FREE. Search and download functionalities are using the official Maven repository.

avro.user_profile.avsc Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
[
  {
    "namespace": "com.datawizards.model",
    "type": "record",
    "name": "DeviceUsage",
    "fields": [
      {"name": "device", "type": "string"},
      {"name": "actions_count", "type": "long", "default": 0}
    ]
  },
  {
    "namespace": "com.datawizards.model",
    "type": "record",
    "name": "UserProfile",
    "fields": [
      {"name": "user_id", "type": "string"},
      {"name": "actions_count", "type": "long", "default": 0},
      {"name": "last_action", "type": { "type" : "long", "logicalType" : "timestamp-millis" }, "default": 0},
      {"name": "favourite_device", "type": ["null", "string"], "default": null},
      {"name": "device_usage", "type": {"type": "array", "items": "com.datawizards.model.DeviceUsage"}, "default": []}
    ]
  }
]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy