forked from Pulsefy/Soter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenapi.json
More file actions
37 lines (37 loc) 路 751 Bytes
/
Copy pathopenapi.json
File metadata and controls
37 lines (37 loc) 路 751 Bytes
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
{
"openapi": "3.1.0",
"info": {
"title": "Soter API",
"version": "1.0.0"
},
"paths": {
"/aid/items": {
"get": {
"responses": {
"200": {
"description": "Success",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": { "$ref": "#/components/schemas/AidItem" }
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"AidItem": {
"type": "object",
"properties": {
"id": { "type": "string" },
"status": { "type": "string" }
}
}
}
}
}