Skip to content

Commit

Permalink
chore(docs): update api schema files
Browse files Browse the repository at this point in the history
  • Loading branch information
laminne committed Jul 27, 2024
1 parent e2fe514 commit 3f033e2
Showing 1 changed file with 76 additions and 34 deletions.
110 changes: 76 additions & 34 deletions resources/schema.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"openapi": "3.0.0",
"openapi": "3.1.0",
"info": {
"description": "",
"title": "Pulsate API Document",
Expand All @@ -12,6 +12,12 @@
}
],
"components": {
"securitySchemes": {
"bearer": {
"type": "http",
"scheme": "bearer"
}
},
"schemas": {
"CreateAccountResponse": {
"type": "object",
Expand Down Expand Up @@ -606,6 +612,11 @@
"tags": [
"accounts"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -721,6 +732,11 @@
"tags": [
"accounts"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -808,6 +824,11 @@
"tags": [
"accounts"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -1145,6 +1166,11 @@
"tags": [
"accounts"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -1218,6 +1244,11 @@
"tags": [
"accounts"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -1293,6 +1324,11 @@
"tags": [
"accounts"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -1366,6 +1402,11 @@
"tags": [
"accounts"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -1647,6 +1688,11 @@
"tags": [
"notes"
],
"security": [
{
"bearer": []
}
],
"requestBody": {
"content": {
"application/json": {
Expand Down Expand Up @@ -1955,6 +2001,11 @@
"tags": [
"notes"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -2178,6 +2229,11 @@
"tags": [
"bookmark"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -2268,6 +2324,11 @@
"tags": [
"bookmark"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down Expand Up @@ -2314,6 +2375,11 @@
"drive"
],
"summary": "Get uploaded media",
"security": [
{
"bearer": []
}
],
"responses": {
"200": {
"description": "OK",
Expand Down Expand Up @@ -2485,44 +2551,15 @@
}
}
},
"/timeline/": {
"/lists": {
"post": {
"description": "",
"tags": [
"timeline"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"authorId": {
"type": "string"
}
},
"required": [
"id",
"authorId"
]
}
}
}
},
"responses": {
"204": {
"description": "OK"
"security": [
{
"bearer": []
}
}
}
},
"/lists": {
"post": {
"tags": [
"timeline"
],
"requestBody": {
"content": {
Expand Down Expand Up @@ -2571,6 +2608,11 @@
"tags": [
"timeline"
],
"security": [
{
"bearer": []
}
],
"parameters": [
{
"schema": {
Expand Down

0 comments on commit 3f033e2

Please sign in to comment.