<!--
{
  "availability" : [
    "macOS: 10.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "BundleResources",
  "identifier" : "/documentation/BundleResources/Information-Property-List/IOKitPersonalities",
  "metadataVersion" : "0.1.0",
  "role" : "Property List Key",
  "symbol" : {
    "kind" : "Property List Key",
    "modules" : [
      "Bundle Resources"
    ],
    "preciseIdentifier" : "plist:Information_Property_List.IOKitPersonalities"
  },
  "title" : "IOKitPersonalities"
}
-->

# IOKitPersonalities

One or more groups of attributes that tell the system about the devices your driver supports.

## Discussion

This key contains a dictionary of driver *personalities*, each of which specifies how to pair the driver to a device. Each key in the dictionary is a string you designate as the name of a specific personality, and the system doesn’t use your key names internally. The value of each key is a dictionary of attributes that describe the specific device to match with the driver. Thus, each key and dictionary combination represents a single personality of the driver. The system uses these personalities to match the driver to an attached device.

During the matching process, the system compares the attributes in each personality dictionary to data it obtained from the attached device. For example, if the personality dictionary includes the `VendorID` key, the system compares that key to the vendor information from the device. The system picks the driver that is compatible with the device and provides the best overall match. It then uses additional information from the personality dictionary to load and run the driver.

All personality dictionaries must include the following keys:

- [`CFBundleIdentifier`](/documentation/BundleResources/Information-Property-List/CFBundleIdentifier)
- [`IOProviderClass`](/documentation/BundleResources/Information-Property-List/IOProviderClass)
- [`IOClass`](/documentation/BundleResources/Information-Property-List/IOClass)

Include any of the following keys in your personality dictionary to customize the match criteria:

- [`IOPropertyMatch`](/documentation/BundleResources/Information-Property-List/IOPropertyMatch)
- [`IONameMatch`](/documentation/BundleResources/Information-Property-List/IONameMatch)
- [`IOResourceMatch`](/documentation/BundleResources/Information-Property-List/IOResourceMatch)
- `IOParentMatch`
- `IOPathMatch`
- `IOMatchCategory`
- Device-specific keys, such as `DeviceUsagePairs`, `VendorID`, or `ProductID`. See a specific <doc://com.apple.documentation/documentation/DriverKit/IOService> subclass for information about the keys it supports.

Include one of more of the following keys to specify how to load your driver’s code:

- [`IOUserClass`](/documentation/BundleResources/Information-Property-List/IOUserClass)
- [`IOUserServerName`](/documentation/BundleResources/Information-Property-List/IOUserServerName)
- [`IOUserClientClass`](/documentation/BundleResources/Information-Property-List/IOUserClientClass)

Use the following keys to further customize your driver’s behavior:

- `IOMatchDefer`. Set the value of this key to `true` to defer the matching process until after `kextd` starts.
- `IOUserServerOneProcess`. Set the value of this key to `true` to run your DriverKit services in one process. If the key is missing or its value is `false`, the system creates a separate process for each service.

## Topics

### Driver Classes

[`IOUserClass`](/documentation/BundleResources/Information-Property-List/IOUserClass)

The name of your driver’s main class, which is the entry point for interacting with your driver’s code.

[`IOProviderClass`](/documentation/BundleResources/Information-Property-List/IOProviderClass)

The name of the class that your driver expects to provide the implementation for its provider object.

[`IOClass`](/documentation/BundleResources/Information-Property-List/IOClass)

The name of the class to instantiate from your driver.

[`IOUserClientClass`](/documentation/BundleResources/Information-Property-List/IOUserClientClass)

The name of the class to instantiate when the system requires a client connection to the driver.

[`IOUserServerName`](/documentation/BundleResources/Information-Property-List/IOUserServerName)

The name that the system uses to facilitate communication between your driver and other clients.

### Advanced Match Criteria

[`IOPropertyMatch`](/documentation/BundleResources/Information-Property-List/IOPropertyMatch)

The device-specific keys the system must match in order to use your driver.

[`IONameMatch`](/documentation/BundleResources/Information-Property-List/IONameMatch)

One or more strings that contain the names of possible provider objects in the system registry.

[`IOResourceMatch`](/documentation/BundleResources/Information-Property-List/IOResourceMatch)

One or more system-specific or device-specific resources that your driver requires.

[`IOParentMatch`](/documentation/BundleResources/Information-Property-List/IOParentMatch)

[`IOPathMatch`](/documentation/BundleResources/Information-Property-List/IOPathMatch)

[`IOMatchCategory`](/documentation/BundleResources/Information-Property-List/IOMatchCategory)



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)