ToolJet/plugins/_templates/plugin/new/manifest.ejs.t
Gandharv 27c91a008a
Add json schema for vscode autocomplete (#1962)
* add json schema

* update schema

* update link
2022-01-27 10:55:16 +05:30

25 lines
No EOL
597 B
Perl

---
to: <%= plugins_path %>/packages/<%= name %>/lib/manifest.json
---
<%
Display_name = display_name.toUpperCase()
%>
{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "<%= Name %> datasource",
"description": "A schema defining <%= name %> datasource",
"type": "api",
"source": {
"name": "<%= Display_name %>",
"kind": "<%= name %>",
"exposedVariables": {
"isLoading": {},
"data": {},
"rawData": {}
},
"options": {}
},
"defaults": {},
"properties": {},
"required": []
}