Skip to content

Commit

Permalink
Added field for backward compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
this-Aditya committed Mar 13, 2024
1 parent 6c0e919 commit 0ee56a6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions commons/passive/phone/phone_bluetooth_device_scanned.avsc
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
{"name": "timeReceived", "type": "double", "doc": "Device receiver timestamp in UTC (s)."},
{"name": "macAddressHash", "type": ["null", "bytes"], "default": null, "doc":"Hash of Nearby Bluetooth device MAC address."},
{"name": "hashSaltReference", "type": ["null", "int"], "doc": "Random identifier associated with the device or installation of the app. If the app gets reinstalled or installed on another device, it's clear during analysis that the mac addresses between iterations are not comparable.", "default": null},
{"name": "isPaired", "type": ["null","boolean"], "doc": "Whether the bluetooth device is paired. This has been deprecated in favor of pairedState in newer versions.", "default": null},
{"name": "pairedState", "type": ["null", {
"name": "PairedState",
"type": "enum",
"doc": "Represent the bond state of the remote device. \nNOT_PAIRED indicates the remote device is not paired. \nPAIRING indicates pairing is in progress with the remote device. \nPAIRED Indicates the remote device is paired.",
"symbols": ["NOT_PAIRED", "PAIRING", "PAIRED"]
"doc": "Represent the bond state of the remote device. \nNOT_PAIRED indicates the remote device is not paired. \nPAIRING indicates pairing is in progress with the remote device. \nPAIRED Indicates the remote device is paired. \nUNKNOWN indicates the pairing status is not known.",
"symbols": ["NOT_PAIRED", "PAIRING", "PAIRED", "UNKNOWN"]
}], "doc": "Indicates the current paired status of the remote device.", "default": null }
]
}

0 comments on commit 0ee56a6

Please sign in to comment.