AUniform Type Identifier (UTI) is a text string used on software provided byApple Inc. to uniquely identify a given class or type of item. Apple provides built-in UTIs to identify common system objects – document or image file types, folders and application bundles, streaming data, clipping data, movie data – and allows third party developers to add their own UTIs for application-specific or proprietary uses. Support for UTIs was added in theMac OS X 10.4 operating system, integrated into theSpotlight desktop search technology, which uses UTIs to categorize documents. One of the primary design goals of UTIs was to eliminate the ambiguities and problems associated with inferring a file's content from itsMIME type,filename extension, ortype orcreator code.[1]
UTIs use areverse-DNS naming structure. Names may include theASCII characters A–Z, a–z, 0–9, hyphen ("-"), and period ("."), and allUnicode characters above U+007F.[1] Colons and slashes are prohibited for compatibility with Macintosh andPOSIX file path conventions. UTIs supportmultiple inheritance, allowing files to be identified with any number of relevant types, as appropriate to the contained data. UTIs are case-insensitive.[2]
One of the difficulties in maintaining a user-accessibleoperating system is establishing connections between data types and the applications or processes that can effectively use such data. For example, a file that contains picture data in a particular compression format can only be opened and processed in applications that are capable of handling picture data, and those applications must be able to identify which compression type was used in order to extract and work with that data. In early computer systems, file associations are maintained byfile extensions. The three to four character code following a file name instructs the system to open the file in particular applications.
Beginning withSystem 1,[3]Macintosh operating systems have attachedtype codes andcreator codes as part of the filemetadata. These four-character codes were designed to specify both the application that created the file (the creator code) and the specific type of the file (the type code) so that other applications could easily open and process the file data. However, while type and creator codes extended the flexibility of the system — a particular type of file was not restricted to opening in a particular application — they suffered many of the same problems as file extensions. Type and creator codes could be lost when files were transferred across non-Macintosh systems (such as Unix-based servers), and the plethora of type codes made identification problematic.
In addition, theclassic Mac OS did not recognize file extensions at all, leading to unrecognized file errors when files were transferred from DOS/Windows systems.OPENSTEP, which formed the basis of Mac OS X, used extensions, and early versions of Mac OS X followed suit. This led to some controversy with users and developers coming to OS X from NeXT or Windows origins advocating for continued use of file extensions, and those coming from Classic Mac OS urging Apple to replace or supplement file extensions with type and creators.[4]
Other file identification types exist: for example, MIME types are used for identifying data that is transferred over the web. However, Apple's UTI system was designed to create a flexible file association system that would describe data hierarchically and allow for better categorization and searching, standardize data descriptions across contexts, and provide a uniform method of expanding data types. For instance, thepublic.jpeg andpublic.png UTIs inherit from thepublic.image UTI, allowing users to search narrowly for JPEG images or PNG images or broadly for any kind of image merely by changing the specificity of the UTI used in the search. Further, application developers who design new data types can easily extend the UTIs available. For example, a new image format developed by a company may have a UTI ofcom.company.proprietary-image and be specified to inherit from thepublic.image type.
Apple'smacOS continues to support other forms of file association, and contains utilities for translating between them, but will use UTIs by preference where available.
Apple maintains thepublic.* domain as a set base data types for all UTIs. Other UTIs are associated with these base UTIs byconformance, a system similar to class inheritance. UTIs that conform to other UTIs share a basic types, and in general any application that works with data of a more general UTI should be able to work with data of any UTI that conforms to that general UTI.
The most basic public UTIs in the Apple hierarchy are as follows:
| Identifier | Conforms to | Comment |
|---|---|---|
| public.item | base class in the physical hierarchy | |
| public.content | base class for all document content | |
| public.data | public.item | base class for all files, byte streams, pasteboard, etc. |
| public.image | public.data, public.content | base class for all images |
UTIs are even used to identify other file type identifiers:
| Identifier | Conforms to | Comment |
|---|---|---|
| public.filename-extension | public.case-insensitive-text | Filename extension |
| public.mime-type | public.case-insensitive-text | MIME type |
| com.apple.ostype | public.text | Four-character code (typeOSType) |
| com.apple.nspboard-type | public.text | NSPasteboard type |
Dynamic UTIs can be created as needed by applications; these have the prefixdyn. and take the form of "a UTI-compatible wrapper around an otherwise unknown filename extension, MIME type, OSType, and so on."[1]
Apple provides a large collection ofsystem-declared Uniform Type Identifiers. Third-party applications can add UTIs to the database maintained by macOS by "exporting" UTIs declared within the application package. Because new UTIs can be declared to "conform to" existing system UTIs, and declarations can associate the new UTIs with file extensions, an exported declaration alone can provide the operating system with enough information to enable new functions, such as enablingQuick Look for new file types.
| Description | UTI | Extensions | Conforms to | MIME types | Ref. |
|---|---|---|---|---|---|
| OPML document | org.opml.opml | .opml | public.xml | text/xml,text/x-opml,application/xml | [5] |
| Markdown document | net.daringfireball.markdown[6] | .md, .markdown | public.plain-text | text/markdown | [7] |
| POSIX Paths document | cc.utis.paths-file | .paths | public.utf8-plain-text | not defined | [8] |
| Pasteboard Types | org.nspasteboard.TransientType,org.nspasteboard.ConcealedType,org.nspasteboard.AutoGeneratedType,org.nspasteboard.source | not a file type | N/a | N/a | [9] |
To get the UTI of a given file, use themdls (meta data list, part ofSpotlight) command in theTerminal.
mdls-namekMDItemContentType-namekMDItemContentTypeTree-namekMDItemKindFILE