---
title: Font
framework: devicemanagement
role: symbol
role_heading: Device Management Profile
path: devicemanagement/font
---

# Font

The payload that configures fonts.

## Declaration

```data
object Font
```

## Properties

Font: The contents of the font file. Name: The user-visible name for the font. This field is replaced by the actual name of the font after installation. Each payload must contain exactly one font file in trueType (.ttf) or OpenType (.otf) format. Collection formats (.ttc or .otc) are not supported. Fonts are identified by their embedded PostScript names. Two fonts with the same PostScript name are considered to be the same font even if their contents differ. Installing two different fonts with the same PostScript name isn’t supported, and the resulting behavior is undefined.

## Discussion

Discussion Specify com.apple.font as the payload type. In iPadOS 18 and later, the font profile is available on the user channel for Shared iPad. Profile availability  |   |   |   |   |   |   |   |  Profile example <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0">     <dict>         <key>PayloadContent</key>         <array>             <dict>                 <key>Font</key>                 <data>YmFzZTY0ZW5jb2RlZGRhdGEK</data>                 <key>Name</key>                 <string>Font.ttf</string>                 <key>PayloadIdentifier</key>                 <string>com.example.myfontpayload</string>                 <key>PayloadType</key>                 <string>com.apple.font</string>                 <key>PayloadUUID</key>                 <string>99659c06-bbbf-45aa-9674-06b378ec2cd5</string>                 <key>PayloadVersion</key>                 <integer>1</integer>             </dict>         </array>         <key>PayloadDisplayName</key>         <string>Fonts</string>         <key>PayloadIdentifier</key>         <string>com.example.myprofile</string>         <key>PayloadType</key>         <string>Configuration</string>         <key>PayloadUUID</key>         <string>9800ea91-30c4-4212-8033-d21cad4fe99a</string>         <key>PayloadVersion</key>         <integer>1</integer>     </dict> </plist>

## See Also

### System configuration

- [Declarations](devicemanagement/declarations.md)
- [EnergySaver](devicemanagement/energysaver.md)
- [FileProvider](devicemanagement/fileprovider.md)
- [LockScreenMessage](devicemanagement/lockscreenmessage.md)
- [Screensaver](devicemanagement/screensaver.md)
- [SystemExtensions](devicemanagement/systemextensions.md)
- [TimeServer](devicemanagement/timeserver.md)
