{ "$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json", "title": "Postgresql datasource", "description": "A schema defining postgresql datasource", "type": "database", "source": { "name": "PostgreSQL", "kind": "postgresql", "options": { "host": { "type": "string" }, "port": { "type": "string" }, "database": { "type": "string" }, "username": { "type": "string" }, "password": { "type": "string", "encrypted": true } }, "exposedVariables": { "isLoading": {}, "data": {}, "rawData": {} } }, "defaults": { "host": { "value": "localhost" }, "port": { "value": 5432 }, "database": { "value": "" }, "username": { "value": "" }, "password": { "value": "" }, "ssl_enabled": { "value": true } }, "properties": { "host": { "label": "Host", "key": "host", "type": "text", "description": "Enter host" }, "port": { "label": "Port", "key": "port", "type": "text", "description": "Enter port" }, "ssl_enabled": { "label": "SSL", "key": "ssl_enabled", "type": "toggle", "description": "Toggle for ssl_enabled" }, "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", "database", "password" ] }