VelocAI logo Bluetooth Explorer Documentation

Bluetooth GATT Characteristic Reference

Object Type (0x2ABF)

org.bluetooth.characteristic.object_type

Object Type is defined in the Bluetooth GATT XML specification with type org.bluetooth.characteristic.object_type and UUID 0x2ABF.

Quick Summary

Payload length ranges from 2 to 16 bytes depending on UUID width or variable fields. This page is generated from official GATT XML and presented as implementation-ready guidance.

At a Glance

Key reference details for BLE implementation, interoperability testing, and AI-assisted troubleshooting.

PropertyValue
NameObject Type
UUID0x2ABF
Typeorg.bluetooth.characteristic.object_type
XML RootCharacteristic
Source Fileorg.bluetooth.characteristic.object_type.xml
Field Count1

Field Specification

Parsed field definitions from the source XML value structure.

Field Requirement Format Unit Exponent Notes
Object TypeMandatorygatt_uuid-0Refer to note below for 16-bit values

Byte Layout and Decode

Payload length ranges from 2 to 16 bytes depending on UUID width or variable fields.

function decodePayload(dataView, offset = 0) {
  const object_typeRaw = new Uint8Array(dataView.buffer, dataView.byteOffset + offset + 0);
  const object_type = object_typeRaw.length === 2
    ? `0x${object_typeRaw[0].toString(16).padStart(2, "0")}${object_typeRaw[1].toString(16).padStart(2, "0")}`
    : Array.from(object_typeRaw).map((b) => b.toString(16).padStart(2, "0")).join("");
  // UUID width can be 2 bytes (16-bit) or 16 bytes (128-bit).
  return { object_type };
}

Use Cases and Integration Notes

BLE Telemetry

Map characteristic values into dashboards and alerts for device observability.

Firmware Regression

Compare decoded fields across builds to detect protocol or scaling changes.

App Integration

Build stable parsing paths that convert raw payloads into typed app models.

Implementation Checklist

  • Validate payload length and mandatory fields before decode.
  • Decode with Bluetooth-specified signedness, unit, and exponent handling.
  • Convert units at presentation boundaries to avoid drift in business logic.
  • Persist raw packets and decoded values for reproducible troubleshooting.

FAQ

What is Object Type in Bluetooth GATT?

Object Type is defined as a Bluetooth GATT characteristic entry with type org.bluetooth.characteristic.object_type and UUID 0x2ABF.

What UUID identifies Object Type?

The UUID for Object Type is 0x2ABF.

How should I parse Object Type?

Payload length ranges from 2 to 16 bytes depending on UUID width or variable fields.

Where does this definition come from?

This page is generated from the Bluetooth SIG mirror XML in the oesmith/gatt-xml repository.

How does this page support BLE implementation?

The page combines structured tables, practical Q&A, and JSON-LD metadata to help teams validate integrations and troubleshoot consistently.