refactor: move core to monorepo

This commit is contained in:
2023-05-24 14:06:47 +02:00
parent 927f8df900
commit 9aad8eda9a
182 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
{
"errorNames": [],
"instance": {
"action": "add",
"plugin": {
"address": "http://foo.com:1234",
"name": "Foo Plugin",
"requestSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"SCFooPluginRequest": {
"type": "object",
"properties": {
"query": {
"type": "string"
}
},
"required": ["query"],
"additionalProperties": false,
"description": "User query"
}
},
"type": "object",
"properties": {
"query": {
"type": "string"
}
},
"required": ["query"],
"additionalProperties": false,
"description": "User query",
"$id": "https://core.stapps.tu-berlin.de/v0.18.0/lib/schema/SCFooPluginRequest.json"
},
"responseSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"SCFooPluginResponse": {
"type": "object",
"properties": {
"result": {
"type": "array",
"items": {}
}
},
"required": ["result"],
"additionalProperties": false,
"description": "A response to a query"
}
},
"type": "object",
"properties": {
"result": {
"type": "array",
"items": {}
}
},
"required": ["result"],
"additionalProperties": false,
"description": "A response to a query",
"$id": "https://core.stapps.tu-berlin.de/v0.18.0/lib/schema/SCFooPluginResponse.json"
},
"route": "/foo"
}
},
"schema": "SCPluginRegisterRequest"
}