---
pageClass: is-wide-page
---
# OpenDroneIdBasicId (UORB message)
**TOPICS:** open_drone_id_basic_id
## Fields
| 명칭 | 형식 | Unit [Frame] | Range/Enum | 설명 |
| ----------------------------------------------------------------------------- | ----------- | ---------------------------------------------------------------- | ---------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| timestamp | `uint64` | | | |
| id_or_mac | `uint8[20]` | | | Only used for drone ID data received from other UAs, no null termination, null filled if shorter |
| id_type | `uint8` | | | MAV_ODID_ID_TYPE: indicates the format for the uas_id field |
| ua_type | `uint8` | | | MAV_ODID_UA_TYPE: indicates the type of UA (Unmanned Aircraft) |
| uas_id | `uint8[20]` | | | UAS (Unmanned Aircraft System) ID following the format specified by id_type, no null termination, null filled if shorter |
## Source Message
[Source file (GitHub)](https://github.com/PX4/PX4-Autopilot/blob/main/msg/OpenDroneIdBasicId.msg)
:::details
Click here to see original file
```c
uint64 timestamp
uint8[20] id_or_mac # Only used for drone ID data received from other UAs, no null termination, null filled if shorter
uint8 id_type # MAV_ODID_ID_TYPE: indicates the format for the uas_id field
uint8 ua_type # MAV_ODID_UA_TYPE: indicates the type of UA (Unmanned Aircraft)
uint8[20] uas_id # UAS (Unmanned Aircraft System) ID following the format specified by id_type, no null termination, null filled if shorter
```
:::