Media type
In information and communications technology, a media type, content type or MIME type is a two-part identifier for file formats and content formats. Their purpose is comparable to filename extensions and uniform type identifiers, in that they identify the intended data format. They are mainly used by technologies underpinning the Internet, and also used on Linux desktop systems.
The Internet Assigned Numbers Authority is the official authority for the standardization and publication of these classifications. Media types were originally defined in Request for Comments Part One: Format of Internet Message Bodies in November 1996 as a part of the MIME specification, for denoting type of email message content and attachments; hence the original name, MIME type. Media types are also used by other internet protocols such as HTTP, document file formats such as HTML, and the XDG specifications implemented by Linux desktop environments, for similar purposes.
Terminology
Different internet standards or web standards bodies differ on the preferred term for this type of identifier.The IANA and IETF use the term "media type", and consider the term "MIME type" to be obsolete, since media types have become used in contexts unrelated to email, such as HTTP. By contrast, the WHATWG continues to use the term "MIME type" and discourages use of the term "media type" as ambiguous, since it is used with a different meaning in connection with the CSS feature.
The HTTP response header for providing the media type is. The W3C has used as an XML data-type name for a media type. XDG specifications implemented by Linux desktop environments continue to use the term "MIME type".
Structure
A media type consists of a type and a subtype, which is further structured into a tree. A media type can optionally define a suffix and parameters:As an example, an HTML file might be designated. In this example, is the type, is the subtype, and is an optional parameter indicating the character encoding.
Types, subtypes, and parameter names are case-insensitive. Parameter values are usually case-sensitive, but may be interpreted in a case-insensitive fashion depending on the intended use.
Types
The "type" part defines the broad use of the media type. As of November 1996, the registered types were:,,,,, and. By July 2024, the registered types included the foregoing, plus,,, and.An unofficial top-level type in common use is Chemical file format#The Chemical MIME Project|, used for chemical file formats. In the context of Linux desktop environments, the unofficial top-level types , , and are used.
Subtypes
A subtype typically consists of a media format, but it may or must also contain other content, such as a tree prefix, producer, product or suffix, according to the different rules in registration trees.All media types should be registered using the IANA registration procedures. For the efficiency and flexibility of the media type registration process, different structures of subtypes can be registered in registration trees that are distinguished by the use of tree prefixes. Currently, the following trees are created: standard, vendor, personal or vanity, unregistered. These registration trees were first defined in November 1996. New registration trees may be created by IETF Standards Action for external registration and management by well-known permanent organizations.
Standards tree
The standards tree does not use any tree prefix. Examples are,.Registrations in the standards tree must be either associated with IETF specifications approved directly by the IESG, or registered by an IANA recognized standards-related organization.
Vendor tree
The vendor tree includes media types associated with publicly available products. It uses the tree prefix. Examples are:,.The terms "vendor" and "producer" are considered equivalent in the context. Industry consortia as well as non-commercial entities can register media types in the vendor tree. A registration in the vendor tree may be created by anyone who needs to interchange files associated with some software product or set of products. However, the registration belongs to the vendor or organization producing the software that employs the type being registered, and that vendor or organization can at any time elect to assert ownership of a registration done by a third party.
Personal or vanity tree
The personal or vanity tree includes media types associated with non publicly available products or experimental media types. It uses the tree prefix. Examples are,.Unregistered tree
The unregistered tree includes media types intended exclusively for use in private environments and only with the active agreement of the parties exchanging them. It uses the tree prefix. Examples are,. Media types in this tree cannot be registered.This type was originally defined in
Media types that have been widely deployed without being registered, should be, if possible, re-registered with a proper prefixed subtype. If this is not possible, the media type can, after an approval by both the media types reviewer and the IESG, be registered in the standards tree with its unprefixed subtype. is an example of a widely deployed type that ended up registered with the prefix.
Suffix
Suffix is an augmentation to the media type definition to additionally specify the underlying structure of that media type, allowing for generic processing based on that structure and independent of the exact type's particular semantics. Media types that make use of a named structured syntax should use the appropriate IANA registered for that structured syntax when they are registered. Unregistered suffixes should not be used. Structured syntax suffix registration procedures are defined inThe +xml suffix has been defined since January 2001, and was formally included in the initial contents of the Structured Syntax Suffix Registry along with,,,,, and in January 2013. Subsequent additions include,,, and.
Common examples
From the IANA registry:Mailcap
Lines can be comments starting with the # character, or a mime-type followed by how to handle that mime type.
mime.types
An associated file is the mime.types file, which associates filename extensions with a MIME type. If the MIME type is properly set, this is unnecessary, but MIME types may be incorrectly set, or set to a generic type such as, and mime.types allows one to fall back on the extension in these cases. Similarly, since many file systems do not store MIME type information, but instead rely on the filename extension, a mime.types file is frequently used by web servers to determine MIME type.When viewing a file, these two work together as follows: associates an extension with a MIME type, while
mailcap associates a MIME type with a program.In UNIX-type systems, the mime.types file is usually located at
/etc/mime.types and/or $HOME/.mime.types and the format is simply that each line is a space-delimited list of a MIME type, followed by zero or more extensions. For example, the HTML type can be associated with the extensions and by the following line:text/html htm html
Use in Netscape Web browser
The mime.types file dates to Netscape, where it used a different format; it used key–value pairs and a comma-separated list of extensions, together with a standard header consisting of a specific comment that identifies the file as a mime.types file, as follows:#--Netscape Communications Corporation MIME Information
# Do not delete the above line. It is used to identify the file type.
type=text/html exts=htm,html