mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 15:07:23 +00:00
34 lines
882 B
JSON
34 lines
882 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json-schema.org/",
|
||
|
|
"$id": "https://tooljet.io/Sendgrid.schema.json",
|
||
|
|
"title": "Sendgrid datasource",
|
||
|
|
"description": "A schema defining SendGrid datasource",
|
||
|
|
"type": "object",
|
||
|
|
"source": {
|
||
|
|
"name": "SendGrid",
|
||
|
|
"kind": "sendgrid",
|
||
|
|
"exposedVariables": {
|
||
|
|
"isLoading": {},
|
||
|
|
"data": {},
|
||
|
|
"rawData": {}
|
||
|
|
},
|
||
|
|
"options": {
|
||
|
|
"api_key": { "type": "string", "encrypted": true }
|
||
|
|
},
|
||
|
|
"customTesting": true
|
||
|
|
},
|
||
|
|
"defaults": {
|
||
|
|
"api_key": { "value": "" }
|
||
|
|
},
|
||
|
|
"properties": {
|
||
|
|
"api_key": {
|
||
|
|
"$label": "API key",
|
||
|
|
"$key": "api_key",
|
||
|
|
"type": "password",
|
||
|
|
"description": "Api key for SendGrid",
|
||
|
|
"helpText": "For generating API key, visit: <a href='https://app.sendgrid.com/settings/api_keys' target='_blank' rel='noreferrer'>SendGrid Account</a>"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["api_key"]
|
||
|
|
}
|