-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathopenapi.json
More file actions
353 lines (353 loc) · 10.1 KB
/
Copy pathopenapi.json
File metadata and controls
353 lines (353 loc) · 10.1 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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
{
"openapi": "3.1.0",
"info": {
"title": "Yellowstone Sound Atlas Static Resources",
"summary": "Read-only description of public static resources served by Yellowstone Sound Atlas.",
"description": "This OpenAPI document describes public GET resources exposed by the static Yellowstone Sound Atlas website. It does not describe private accounts, write operations, OAuth, MCP, A2A, payments, webhooks, or server-side actions because those services do not exist for this project.",
"version": "1.0.0",
"contact": {
"name": "YSL issues",
"url": "https://github.com/rosuH/YSL/issues"
},
"license": {
"name": "Project license",
"url": "https://github.com/rosuH/YSL/blob/master/LICENSE"
}
},
"servers": [
{
"url": "https://ysl.rosuh.me",
"description": "Production static site"
}
],
"tags": [
{
"name": "Atlas",
"description": "Interactive and machine-readable atlas resources."
},
{
"name": "Agent discovery",
"description": "Documentation files intended for AI agents and search crawlers."
},
{
"name": "Trust and policy",
"description": "Free access, attribution, privacy, and contact resources."
}
],
"paths": {
"/": {
"get": {
"operationId": "getHomepage",
"tags": ["Atlas"],
"summary": "Get the crawler-readable homepage",
"description": "Returns the static homepage describing the public listening atlas, route scope, links, JSON-LD structured data, and agent discovery resources.",
"responses": {
"200": {
"description": "HTML homepage",
"content": {
"text/html": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/atlas/": {
"get": {
"operationId": "getInteractiveAtlas",
"tags": ["Atlas"],
"summary": "Get the interactive atlas",
"description": "Returns the browser-based specimen player for listening to the route.",
"responses": {
"200": {
"description": "HTML atlas app",
"content": {
"text/html": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/atlas/dawn-to-night.json": {
"get": {
"operationId": "getAtlasRoute",
"tags": ["Atlas"],
"summary": "Get the route manifest",
"description": "Returns the canonical list of 61 Yellowstone sound specimens with metadata and relative asset paths.",
"responses": {
"200": {
"description": "Route manifest",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RouteStop"
}
}
}
}
}
}
}
},
"/index.md": {
"get": {
"operationId": "getMarkdownOverview",
"tags": ["Agent discovery"],
"summary": "Get the Markdown overview",
"description": "Returns a compact Markdown overview of the project and its truth boundary.",
"responses": {
"200": {
"description": "Markdown overview",
"content": {
"text/markdown": {
"schema": {
"type": "string"
}
},
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/llms.txt": {
"get": {
"operationId": "getLlmsTxt",
"tags": ["Agent discovery"],
"summary": "Get the short LLM summary",
"description": "Returns a short agent-readable summary with primary URLs, capabilities, and limitations.",
"responses": {
"200": {
"description": "LLMs summary",
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/llms-full.txt": {
"get": {
"operationId": "getLlmsFullTxt",
"tags": ["Agent discovery"],
"summary": "Get full agent documentation",
"description": "Returns detailed agent-readable documentation including examples, route JSON shape, access model, and limitations.",
"responses": {
"200": {
"description": "Full LLM documentation",
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/pricing.md": {
"get": {
"operationId": "getPricingMarkdown",
"tags": ["Trust and policy"],
"summary": "Get machine-readable pricing",
"description": "Returns the free access statement for the public static archive.",
"responses": {
"200": {
"description": "Pricing markdown",
"content": {
"text/markdown": {
"schema": {
"type": "string"
}
},
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/.well-known/agent.json": {
"get": {
"operationId": "getAgentDiscovery",
"tags": ["Agent discovery"],
"summary": "Get the agent discovery manifest",
"description": "Returns a JSON manifest describing the static archive resources and explicitly stating unsupported service capabilities.",
"responses": {
"200": {
"description": "Agent discovery manifest",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AgentDiscovery"
}
}
}
}
}
}
},
"/.well-known/api-catalog": {
"get": {
"operationId": "getApiCatalog",
"tags": ["Agent discovery"],
"summary": "Get the API catalog linkset",
"description": "Returns an RFC 9727-style JSON linkset for public static resource discovery.",
"responses": {
"200": {
"description": "API catalog linkset",
"content": {
"application/linkset+json": {
"schema": {
"type": "object"
}
},
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
}
},
"/data/catalog.jsonld": {
"get": {
"operationId": "getJsonLdCatalog",
"tags": ["Agent discovery"],
"summary": "Get the JSON-LD data catalog",
"description": "Returns a JSON-LD description of the dataset and public distributions.",
"responses": {
"200": {
"description": "JSON-LD catalog",
"content": {
"application/ld+json": {
"schema": {
"type": "object"
}
},
"application/json": {
"schema": {
"type": "object"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"RouteStop": {
"type": "object",
"required": [
"id",
"title",
"timeOfDay",
"theme",
"zoneLabel",
"audioPath",
"description",
"credit"
],
"properties": {
"id": {
"type": "string",
"description": "Stable URL-safe specimen id used in hash links and share pages.",
"examples": ["american-coots"]
},
"title": {
"type": "string",
"description": "Human-readable specimen title.",
"examples": ["American Coots"]
},
"timeOfDay": {
"type": "string",
"description": "Listening route time-of-day grouping.",
"examples": ["Dawn"]
},
"theme": {
"type": "string",
"description": "Theme grouping used by the atlas UI.",
"examples": ["Birds"]
},
"zoneLabel": {
"type": "string",
"description": "Short habitat, place, or scene label.",
"examples": ["Wetland margin"]
},
"audioPath": {
"type": "string",
"description": "Relative path to the public MP3 file.",
"examples": ["American Coots/American Coots.mp3"]
},
"description": {
"type": "string",
"description": "Short public description of the specimen."
},
"credit": {
"type": "string",
"description": "Source credit text."
},
"imagePath": {
"type": "string",
"description": "Optional relative path to source image material."
},
"fieldNote": {
"type": "string",
"description": "Optional longer field-note copy shown in the atlas UI."
}
},
"additionalProperties": true
},
"AgentDiscovery": {
"type": "object",
"required": ["name", "url", "description", "capabilities", "limitations"],
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"description": {
"type": "string"
},
"capabilities": {
"type": "array",
"items": {
"type": "object"
}
},
"limitations": {
"type": "object"
}
}
}
}
}
}