mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-25 15:37:37 +00:00
* Custom js feature * Disable transformations * Fix * Fix * Fix * Icon * Rename variable OthetSources to OtherSources * Fix * Fix Co-authored-by: Sherfin Shamsudeen <sherfin94@gmail.com>
39 lines
No EOL
750 B
JSON
39 lines
No EOL
750 B
JSON
{
|
|
"$schema": "https://json-schema.org/",
|
|
"$id": "https://tooljet.io/Stripe.schema.json",
|
|
"title": "Stripe datasource",
|
|
"description": "A schema defining stripe datasource",
|
|
"type": "object",
|
|
"source": {
|
|
"name": "Stripe",
|
|
"kind": "stripe",
|
|
"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 stripe"
|
|
}
|
|
},
|
|
"required": [
|
|
"api_key"
|
|
]
|
|
} |