ApplicationText-based
application/vnd.oci.image.manifest.v1+json
OCI Image Manifest
Reference for the OCI container image manifest MIME type, the open standard for container image distribution.
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
HTTP Content-Type Header
HTTP Header
Content-Type: application/vnd.oci.image.manifest.v1+json; charset=utf-8Quick Facts
| MIME Type | application/vnd.oci.image.manifest.v1+json |
| Category | Application |
| Type | Text-based (human-readable) |
Common Usage
The OCI (Open Container Initiative) image manifest is the vendor-neutral standard for describing container images. It is compatible with Docker manifests and used by Kubernetes, Podman, containerd, and all major container registries for multi-platform image distribution.
Code Examples
HTML
<!-- Set MIME type in meta or fetch headers -->
<meta http-equiv="Content-Type" content="application/vnd.oci.image.manifest.v1+json">Node.js
// Express.js
app.get('/file', (req, res) => {
res.type('application/vnd.oci.image.manifest.v1+json');
res.send(data);
});
// Node.js http
res.writeHead(200, { 'Content-Type': 'application/vnd.oci.image.manifest.v1+json' });nginx
# nginx.conf — add to types block or use default
types {
application/vnd.oci.image.manifest.v1+json json;
}
# Or set for a specific location
location /api/ {
default_type application/vnd.oci.image.manifest.v1+json;
}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.