FILE FORMAT GUIDE
ODT File (.ODT): Package Structure & Safe Inspection
An ODT file is an OpenDocument Text package. It combines document XML, styles, metadata and optional embedded resources in a ZIP-based package with a defined media type.
Check supported header evidence locally. Identification is not file validation or a malware scan.
Analyze a file locallyQuick facts
- Extension
- .odt
- Format
- OpenDocument Text
- Category
- document
- MIME type
- application/vnd.oasis.opendocument.text
- Standard / developer
- OASIS Open
- Open with
- Python zipfile
What is ODT?
A conforming OpenDocument package places an uncompressed mimetype entry first and includes META-INF/manifest.xml. For ODT, the package media type is application/vnd.oasis.opendocument.text.
- Store an editable word-processing document using the OpenDocument standard
How to open ODT
Package listing checks structure only; it does not validate OpenDocument semantics, visual fidelity or embedded-content safety.
Python zipfileCommand-line tool and standard library
Run python -m zipfile -l document.odt to inspect package entries without rendering embedded content. Confirm that mimetype and META-INF/manifest.xml are present before using an office application.
Technical details
- Signature
- 50 4B 03 04 at offset 0; mimetype at offset 30; application/vnd.oasis.opendocument.text at offset 38
- Encoding
- Not applicable
- Container
- OpenDocument ZIP package with META-INF/manifest.xml
- Compression
- The leading mimetype entry is stored without compression; other package entries may use ZIP compression
Things to check
- A valid package structure does not guarantee identical layout or feature support in every office application.
Related formats
- Portable Document Format
PDF is commonly used as a fixed-layout final document, while ODT preserves an editable OpenDocument package.
- XML Paper Specification Document
XPS is a fixed-layout package; ODT stores editable text-document content and resources under OpenDocument rules.
- EPUB Publication
Both use ZIP-based packages with a leading mimetype entry, but EPUB targets publication reading systems and ODT targets office documents.
Sources & review
Fact review: 2026-09-19. Unknown fields are not inferred from the file extension.