ToolJet/plugins/packages/saphana/lib/manifest.json
Midhun G S 493b0ceb00
Feature - SAP HANA Integration (#2957)
* SAP HANA Integration

* sap hana docs reviewed

* Add private true

Co-authored-by: Shubhendra <withshubh@gmail.com>
2022-05-19 20:54:25 +05:30

75 lines
No EOL
1.4 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "SAP HANA datasource",
"description": "A schema defining SAP HANA datasource",
"type": "database",
"source": {
"name": "SAP HANA",
"kind": "saphana",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"password": {
"encrypted": true
}
}
},
"defaults": {
"host": {
"value": "localhost"
},
"port": {
"value": 443
},
"database": {
"value": ""
},
"username": {
"value": ""
},
"password": {
"value": ""
}
},
"properties": {
"host": {
"label": "Host",
"key": "host",
"type": "text",
"description": "Enter host"
},
"port": {
"label": "Port",
"key": "port",
"type": "text",
"description": "Enter port"
},
"database": {
"label": "Database Name",
"key": "database",
"type": "text",
"description": "Name of the database"
},
"username": {
"label": "Username",
"key": "username",
"type": "text",
"description": "Enter username"
},
"password": {
"label": "Password",
"key": "password",
"type": "password",
"description": "Enter password"
}
},
"required": [
"host",
"port",
"username",
"password"
]
}