-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
314 lines (287 loc) · 8.68 KB
/
index.html
File metadata and controls
314 lines (287 loc) · 8.68 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>FlowSynx Schema Explorer</title>
<link rel="icon" type="image/png" href="img/favicon.ico" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
<style>
:root {
--bs-primary: #008b8b;
--bs-primary-light: #e6f4f4;
}
body {
background-color: #ffffff;
font-family: "Inter", "Segoe UI", Arial, sans-serif;
color: #212529;
transition: background-color 0.3s, color 0.3s;
}
a {
color: var(--bs-primary);
text-decoration: none;
transition: color 0.2s;
}
a:hover {
color: #005f5f;
text-decoration: underline;
}
.navbar {
background-color: #ffffff !important;
border-bottom: 1px solid #dee2e6;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s;
}
.navbar-brand {
color: var(--bs-primary) !important;
font-weight: 600;
font-size: 1.25rem;
}
.navbar-brand img {
height: 36px;
margin-right: 10px;
}
h1 {
color: var(--bs-primary);
}
.table-container {
background-color: #f8f9fa;
border-radius: 8px;
padding: 1.5rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s;
}
.btn-primary {
color: #fff !important;
background-color: #008b8b !important;
border-color: #007575 !important;
transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.btn-primary:hover {
color: #fff !important;
background-color: #007575 !important;
border-color: #006565 !important;
}
.btn-primary:focus,
.btn-primary.focus {
box-shadow: 0 0 0 0.25rem rgba(0, 139, 139, 0.25);
}
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
color: #fff !important;
background-color: #006565 !important;
border-color: #005555 !important;
}
.btn-primary:active:focus {
color: #fff !important;
background-color: #006565 !important;
border-color: #005555 !important;
}
.btn-primary:disabled,
.btn-primary.disabled {
color: #fff !important;
background-color: #008b8b !important;
border-color: #007575 !important;
opacity: 0.65;
}
.btn-outline-primary {
color: #008b8b !important;
border-color: #008b8b !important;
transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}
.btn-outline-primary:hover {
color: #fff !important;
background-color: #008b8b !important;
border-color: #008b8b !important;
}
.btn-outline-primary:focus,
.btn-outline-primary.focus {
color: #fff !important;
background-color: #008b8b !important;
border-color: #008b8b !important;
}
.btn-outline-primary:active,
.btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
color: #fff !important;
background-color: #007575 !important;
border-color: #006565 !important;
}
.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
color: #008b8b !important;
background-color: transparent !important;
opacity: 0.65 !important;
}
.footer {
color: #6c757d;
font-size: 0.9rem;
margin-top: 4rem;
padding: 1.5rem 0;
border-top: 1px solid #dee2e6;
text-align: center;
transition: background-color 0.3s, color 0.3s;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg mb-4">
<div class="container d-flex justify-content-between">
<a class="navbar-brand d-flex align-items-center" href="index.html">
<img src="img/logo.png" alt="FlowSynx Logo" />
<span>FlowSynx Schema Explorer</span>
</a>
</div>
</nav>
<main class="container">
<header class="content-header text-center">
<h1 class="fw-bold">Available Workflow Schemas</h1>
<p class="text-muted mb-0">Browse and explore JSON schema definitions for FlowSynx workflows.</p>
</header>
<div class="table-container bg-white rounded-3 mt-4">
<table class="table table-hover align-middle mb-0">
<thead>
<tr>
<th scope="col" style="width: 20%;">Version</th>
<th scope="col">Generated Date</th>
<th scope="col">Updated Date</th>
<th scope="col" style="width: 20%;">Schema Variants</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>v1.2.1</strong></td>
<td data-date="2025-12-22"></td>
<td data-date="2025-12-22"></td>
<td>
<a href="workflows/v1.2.1/schema.camel.json"
class="btn btn-outline-primary btn-sm"
title="Canonical schema (camelCase)">
<i class="fas fa-code"></i> Camel Case
</a>
<a href="workflows/v1.2.1/schema.flat.json"
class="btn btn-outline-primary btn-sm"
title="Lowercase flat schema (no internal capitalization)">
<i class="fas fa-code"></i> Flat
</a>
</td>
</tr>
<tr>
<td><strong>v1.2.0</strong></td>
<td data-date="2025-11-29"></td>
<td data-date="2025-11-29"></td>
<td>
<a href="workflows/v1.2.0/schema.camel.json"
class="btn btn-outline-primary btn-sm"
title="Canonical schema (camelCase)">
<i class="fas fa-code"></i> Camel Case
</a>
<a href="workflows/v1.2.0/schema.flat.json"
class="btn btn-outline-primary btn-sm"
title="Lowercase flat schema (no internal capitalization)">
<i class="fas fa-code"></i> Flat
</a>
</td>
</tr>
<tr>
<td><strong>v1.1.0</strong></td>
<td data-date="2025-10-30"></td>
<td data-date="2025-10-30"></td>
<td>
<a href="workflows/v1.1.0/schema.camel.json"
class="btn btn-outline-primary btn-sm"
title="Canonical schema (camelCase)">
<i class="fas fa-code"></i> Camel Case
</a>
<a href="workflows/v1.1.0/schema.flat.json"
class="btn btn-outline-primary btn-sm"
title="Lowercase flat schema (no internal capitalization)">
<i class="fas fa-code"></i> Flat
</a>
</td>
</tr>
<tr>
<td><strong>v1.0.0</strong></td>
<td data-date="2025-09-27"></td>
<td data-date="2025-09-27"></td>
<td>
<a href="workflows/v1.0.0/schema.camel.json"
class="btn btn-outline-primary btn-sm"
title="Canonical schema (camelCase)">
<i class="fas fa-code"></i> Camel Case
</a>
<a href="workflows/v1.0.0/schema.flat.json"
class="btn btn-outline-primary btn-sm"
title="Lowercase flat schema (no internal capitalization)">
<i class="fas fa-code"></i> Flat
</a>
</td>
</tr>
</tbody>
</table>
</div>
</main>
<section class="mt-5">
<div class="container">
<h2 class="text-center fw-bold">Learn More About FlowSynx Schemas</h2>
<p class="text-muted text-center">
FlowSynx schemas are designed to provide a structured and consistent way to define workflows.
Each schema version introduces new features and improvements to enhance compatibility and usability.
</p>
<div class="row mt-4">
<div class="col-md-4">
<div class="card shadow-sm">
<div class="card-body">
<a href="https://flowsynx.io/docs/concepts/json-schema-validation" target="_blank"><h5 class="card-title">What is a Schema?</h5></a>
<p class="card-text">
A schema defines the structure of data, ensuring that workflows are validated and processed correctly.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card shadow-sm">
<div class="card-body">
<h5 class="card-title">Why Use Schemas?</h5>
<p class="card-text">
Schemas help maintain consistency, reduce errors, and improve collaboration between teams.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card shadow-sm">
<div class="card-body">
<h5 class="card-title">Getting Started</h5>
<p class="card-text">
Explore the available schemas and integrate them into your workflows to streamline your processes.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container text-center">
© FlowSynx Schema Explorer — Powered by GitHub Pages
</div>
</footer>
<script>
// Function to format ISO date
function formatDate(isoDate) {
const dateObj = new Date(isoDate);
const options = { year: 'numeric', month: 'long', day: 'numeric' };
const readableDate = dateObj.toLocaleDateString('en-US', options);
return `${isoDate} | ${readableDate}`;
}
// Apply function to all table cells with data-date
const dateCells = document.querySelectorAll('td[data-date]');
dateCells.forEach(td => {
const isoDate = td.getAttribute('data-date');
td.textContent = formatDate(isoDate);
});
</script>
</body>