You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
462 lines
9.8 KiB
462 lines
9.8 KiB
2 years ago
|
{
|
||
2 years ago
|
"openapi": "3.1.0",
|
||
2 years ago
|
"info": {
|
||
1 year ago
|
"title": "notes",
|
||
1 year ago
|
"version": "4.8.0",
|
||
2 years ago
|
"description": "Distraction-free notes and writing",
|
||
|
"license": {
|
||
2 years ago
|
"name": "agpl",
|
||
2 years ago
|
"identifier": "AGPL-3.0"
|
||
2 years ago
|
}
|
||
|
},
|
||
|
"servers": [
|
||
|
{
|
||
2 years ago
|
"url": "https://{hostname}:{port}",
|
||
2 years ago
|
"variables": {
|
||
|
"hostname": {
|
||
|
"default": "localhost"
|
||
|
},
|
||
|
"port": {
|
||
|
"default": "8080"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"security": [
|
||
|
{
|
||
|
"basic_auth": []
|
||
|
}
|
||
|
],
|
||
|
"components": {
|
||
|
"schemas": {
|
||
2 years ago
|
"OCSMeta": {
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"status",
|
||
2 years ago
|
"statuscode"
|
||
2 years ago
|
],
|
||
|
"properties": {
|
||
|
"status": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"statuscode": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"message": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"totalitems": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"itemsperpage": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
2 years ago
|
"EmptyOCS": {
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"ocs"
|
||
|
],
|
||
|
"properties": {
|
||
|
"ocs": {
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"meta",
|
||
|
"data"
|
||
|
],
|
||
|
"properties": {
|
||
|
"meta": {
|
||
|
"$ref": "#/components/schemas/OCSMeta"
|
||
|
},
|
||
|
"data": {
|
||
|
"type": "array"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
2 years ago
|
"Note": {
|
||
2 years ago
|
"type": "object",
|
||
2 years ago
|
"required": [
|
||
|
"id",
|
||
|
"etag",
|
||
|
"readonly",
|
||
|
"content",
|
||
|
"title",
|
||
|
"category",
|
||
|
"favorite",
|
||
|
"modified",
|
||
|
"error",
|
||
|
"errorType"
|
||
|
],
|
||
2 years ago
|
"properties": {
|
||
|
"id": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"etag": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"readonly": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"content": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"title": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"category": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"favorite": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"modified": {
|
||
|
"type": "integer"
|
||
|
},
|
||
|
"error": {
|
||
|
"type": "boolean"
|
||
|
},
|
||
|
"errorType": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
2 years ago
|
"Settings": {
|
||
2 years ago
|
"type": "object",
|
||
2 years ago
|
"required": [
|
||
|
"notesPath",
|
||
|
"fileSuffix",
|
||
|
"noteMode"
|
||
|
],
|
||
2 years ago
|
"properties": {
|
||
|
"notesPath": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"fileSuffix": {
|
||
|
"type": "string"
|
||
|
},
|
||
|
"noteMode": {
|
||
|
"type": "string",
|
||
|
"enum": [
|
||
|
"edit",
|
||
2 years ago
|
"preview",
|
||
|
"rich"
|
||
2 years ago
|
]
|
||
|
}
|
||
|
}
|
||
2 years ago
|
}
|
||
|
},
|
||
|
"securitySchemes": {
|
||
|
"basic_auth": {
|
||
|
"type": "http",
|
||
|
"scheme": "basic"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
},
|
||
|
"paths": {
|
||
2 years ago
|
"/index.php/apps/notes/api/v1/notes": {
|
||
2 years ago
|
"get": {
|
||
2 years ago
|
"operationId": "get-notes",
|
||
2 years ago
|
"parameters": [
|
||
|
{
|
||
|
"name": "category",
|
||
|
"in": "query",
|
||
2 years ago
|
"required": false,
|
||
2 years ago
|
"schema": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "exclude",
|
||
|
"in": "query",
|
||
2 years ago
|
"required": false,
|
||
2 years ago
|
"schema": {
|
||
2 years ago
|
"type": "string",
|
||
|
"default": ""
|
||
2 years ago
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "pruneBefore",
|
||
|
"in": "query",
|
||
2 years ago
|
"required": false,
|
||
2 years ago
|
"schema": {
|
||
2 years ago
|
"type": "integer",
|
||
|
"default": 0
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "chunkSize",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "integer",
|
||
|
"default": 0
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "chunkCursor",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "string"
|
||
2 years ago
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "If-None-Match",
|
||
|
"in": "header",
|
||
|
"schema": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "",
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"schema": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
2 years ago
|
"$ref": "#/components/schemas/Note"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"post": {
|
||
|
"operationId": "create-note",
|
||
2 years ago
|
"parameters": [
|
||
|
{
|
||
|
"name": "category",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "string",
|
||
|
"default": ""
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "title",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "string",
|
||
|
"default": ""
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "content",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "string",
|
||
|
"default": ""
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "modified",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "integer",
|
||
|
"default": 0
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "favorite",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
2 years ago
|
"type": "integer",
|
||
|
"default": 0
|
||
2 years ago
|
}
|
||
|
}
|
||
2 years ago
|
],
|
||
2 years ago
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "",
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"schema": {
|
||
2 years ago
|
"$ref": "#/components/schemas/Note"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
2 years ago
|
"/index.php/apps/notes/api/v1/notes/{id}": {
|
||
2 years ago
|
"parameters": [
|
||
|
{
|
||
|
"name": "id",
|
||
|
"in": "path",
|
||
|
"required": true,
|
||
|
"schema": {
|
||
|
"type": "integer"
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"get": {
|
||
2 years ago
|
"operationId": "get-note",
|
||
2 years ago
|
"parameters": [
|
||
|
{
|
||
|
"name": "exclude",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "string",
|
||
|
"default": ""
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "If-None-Match",
|
||
|
"in": "header",
|
||
|
"schema": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
],
|
||
2 years ago
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "",
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"schema": {
|
||
2 years ago
|
"$ref": "#/components/schemas/Note"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"put": {
|
||
|
"operationId": "update-note",
|
||
|
"parameters": [
|
||
2 years ago
|
{
|
||
|
"name": "content",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "modified",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "integer"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "title",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "category",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "favorite",
|
||
|
"in": "query",
|
||
|
"required": false,
|
||
|
"schema": {
|
||
2 years ago
|
"type": "integer",
|
||
|
"default": 0
|
||
2 years ago
|
}
|
||
|
},
|
||
2 years ago
|
{
|
||
|
"name": "If-Match",
|
||
|
"in": "header",
|
||
|
"schema": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
],
|
||
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "",
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"schema": {
|
||
2 years ago
|
"$ref": "#/components/schemas/Note"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"delete": {
|
||
|
"operationId": "delete-note",
|
||
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "",
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"schema": {
|
||
|
"type": "string"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
2 years ago
|
"/index.php/apps/notes/api/v1/settings": {
|
||
2 years ago
|
"get": {
|
||
|
"operationId": "get-settings",
|
||
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "",
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"schema": {
|
||
2 years ago
|
"$ref": "#/components/schemas/Settings"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"put": {
|
||
|
"operationId": "update-settings",
|
||
|
"requestBody": {
|
||
|
"required": true,
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"schema": {
|
||
2 years ago
|
"$ref": "#/components/schemas/Settings"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"responses": {
|
||
|
"200": {
|
||
|
"description": "",
|
||
|
"content": {
|
||
|
"application/json": {
|
||
|
"schema": {
|
||
2 years ago
|
"$ref": "#/components/schemas/Settings"
|
||
2 years ago
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|