ToolJet/frontend/src/Editor/DataSourceManager/SourceComponents/Api/Stripe.schema.json
Navaneeth Pk 3477f7ff15
Support for running JavaScript as a query ( client-side execution ) (#1507)
* Custom js feature

* Disable transformations

* Fix

* Fix

* Fix

* Icon

* Rename variable OthetSources to OtherSources

* Fix

* Fix

Co-authored-by: Sherfin Shamsudeen <sherfin94@gmail.com>
2021-12-08 13:03:08 +05:30

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"
]
}