ApplicationBinary
application/vnd.oasis.opendocument.text
OpenDocument Text
Reference for application/vnd.oasis.opendocument.text, the MIME type for ODF text documents used by LibreOffice and OpenOffice.
MIME Type Detector
Drop a file to detect its MIME type — no upload, runs in your browser
📄
Drop any file here or click to choose
Expected extensions: .odt
HTTP Content-Type Header
HTTP Header
Content-Type: application/vnd.oasis.opendocument.textAssociated File Extensions
.odt
Quick Facts
| MIME Type | application/vnd.oasis.opendocument.text |
| Category | Application |
| Type | Binary |
| Extensions | .odt |
Common Usage
ODT is the open standard document format used by LibreOffice Writer, Apache OpenOffice, and other office suites. It is an ISO-standardized format preferred by governments and organizations that require vendor-neutral document formats.
Code Examples
HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.odt" type="application/vnd.oasis.opendocument.text">
<!-- Or for script/media elements -->
<script type="application/vnd.oasis.opendocument.text" src="file.odt"></script>Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('application/vnd.oasis.opendocument.text');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'application/vnd.oasis.opendocument.text' });nginx
# nginx.conf — add to types block or use default
types {
application/vnd.oasis.opendocument.text odt;
}
# Or set for a specific location
location /api/ {
default_type application/vnd.oasis.opendocument.text;
}Related MIME Types
More Application MIME Types
Other application types in the Application family
Related Tools
Explore More MIME Types
Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.