-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
96 lines (85 loc) · 4.05 KB
/
about.html
File metadata and controls
96 lines (85 loc) · 4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!doctype html>
<html lang="en">
<head>
<!-- Basic -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>About Schema Doctor | OpenAPI Schema Fixer</title>
<meta name="description" content="Learn what Schema Doctor is, why it exists, and who it helps. An open-source tool to validate, clean, and reduce OpenAPI schemas for automation workflows." />
<!-- Canonical -->
<link rel="canonical" href="https://schemadoctor.com/about.html" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="About Schema Doctor | OpenAPI Schema Fixer" />
<meta property="og:description" content="Open-source tool to validate, clean, and reduce OpenAPI schemas for automation workflows." />
<meta property="og:url" content="https://schemadoctor.com/about.html" />
<meta property="og:image" content="https://schemadoctor.com/assets/schema-doctor-preview.png" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="About Schema Doctor | OpenAPI Schema Fixer" />
<meta name="twitter:description" content="Open-source tool to validate, clean, and reduce OpenAPI schemas for automation workflows." />
<meta name="twitter:image" content="https://schemadoctor.com/assets/schema-doctor-preview.png" />
<!-- Structured data: WebSite + About page -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebSite",
"name": "Schema Doctor",
"url": "https://yourdomain.com/schema-doctor",
"description": "Open-source tool to validate, clean, and reduce OpenAPI schemas for automation and RPA."
},
{
"@type": "AboutPage",
"name": "About Schema Doctor",
"url": "https://yourdomain.com/schema-doctor/about",
"isPartOf": { "@id": "https://yourdomain.com/schema-doctor" },
"description": "Background and purpose of Schema Doctor, an open-source OpenAPI schema fixer."
}
]
}
</script>
<link rel="stylesheet" href="style.css" />
</head>
<body class="theme-dark">
<header class="topbar">
<div class="brand">🩺 Schema Doctor</div>
<div class="actions">
<a href="index.html" class="btn" title="Home">🏠 Home</a>
<a href="faq.html" class="btn" title="FAQ">❓ FAQ</a>
<button id="themeToggle" class="btn" title="Toggle theme">🌗 Theme</button>
</div>
</header>
<main class="pane">
<h1>About Schema Doctor</h1>
<p><strong>Schema Doctor</strong> is an open-source, web-based tool that helps developers and automation engineers
<em>validate, clean, and optimize OpenAPI schemas</em>.</p>
<h2>Why We Built It</h2>
<p>Real-world API schemas often contain issues: missing <code>operationId</code> values, invalid regex patterns, trailing slashes in paths,
empty descriptions, or circular references. These issues cause problems in automation platforms like Rewst, n8n, or Zapier.
Schema Doctor fixes these automatically to make schemas automation-ready.</p>
<h2>Who It’s For</h2>
<ul>
<li>MSPs and automation engineers integrating multiple SaaS platforms</li>
<li>Developers who want clean, consistent API schemas</li>
<li>OpenAPI enthusiasts who need quick validation and repair</li>
</ul>
<h2>Get Started</h2>
<p>
👉 <a href="index.html">Use Schema Doctor Online</a><br />
👉 <a href="https://github.com/shiftnerd/schemadoctor" target="_blank" rel="noopener">View on GitHub</a>
</p>
</main>
<footer class="app-footer">
<div class="footer-content">
<a href="about.html">About</a> · <a href="faq.html">FAQ</a> ·
Other tools:
<a href="https://schemadoctor.com/vector" target="_blank" rel="noopener">Image → SVG</a> |
<a href="https://schemadoctor.com/postman" target="_blank" rel="noopener">Postman → OpenAPI</a>
</div>
</footer>
<!-- Reuse your existing JS (theme toggle, etc.) -->
<script src="app.js" defer></script>
</body>
</html>