Skip to content

Commit 2e502fb

Browse files
committed
Update oas3-api.json
1 parent 69a94e1 commit 2e502fb

File tree

1 file changed

+43
-1
lines changed

1 file changed

+43
-1
lines changed

oas3-api.json

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,48 @@
486486
]
487487
}
488488
},
489+
"/users/{id}/skins": {
490+
"get": {
491+
"operationId": "getUserSkins",
492+
"parameters": [
493+
{
494+
"name": "id",
495+
"required": true,
496+
"in": "path",
497+
"schema": {
498+
"type": "string"
499+
}
500+
}
501+
],
502+
"responses": {
503+
"200": {
504+
"description": "",
505+
"content": {
506+
"application/json": {
507+
"schema": {
508+
"type": "array",
509+
"items": {
510+
"$ref": "#/components/schemas/Profile"
511+
}
512+
}
513+
}
514+
}
515+
},
516+
"401": {
517+
"description": ""
518+
},
519+
"403": {
520+
"description": ""
521+
},
522+
"404": {
523+
"description": ""
524+
}
525+
},
526+
"tags": [
527+
"Users"
528+
]
529+
}
530+
},
489531
"/users/search/{query}": {
490532
"get": {
491533
"operationId": "search",
@@ -526,7 +568,7 @@
526568
"info": {
527569
"title": "Namet.ag API",
528570
"description": "Namet.ag public API documentation",
529-
"version": "0.0.5",
571+
"version": "0.0.6",
530572
"contact": {}
531573
},
532574
"tags": [],

0 commit comments

Comments
 (0)