ApplicationText-based

application/schema+json

JSON Schema

Reference for application/schema+json, the MIME type for JSON Schema documents that define the structure of JSON data.

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/schema+json; charset=utf-8

Quick Facts

MIME Typeapplication/schema+json
CategoryApplication
TypeText-based (human-readable)

Common Usage

JSON Schema defines the structure, constraints, and documentation for JSON data. It is used for API request/response validation, form generation, configuration file validation, code generation, and editor autocompletion.

Supported by tools like Ajv, OpenAPI, and VS Code.

Code Examples

HTML
<!-- Set MIME type in meta or fetch headers -->
<meta http-equiv="Content-Type" content="application/schema+json">
Node.js
// Express.js
app.get('/file', (req, res) => {
  res.type('application/schema+json');
  res.send(data);
});

// Node.js http
res.writeHead(200, { 'Content-Type': 'application/schema+json' });
nginx
# nginx.conf — add to types block or use default
types {
    application/schema+json  json;
}

# Or set for a specific location
location /api/ {
    default_type application/schema+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.