ToolJet/frontend/src/Editor/DataSourceManager/SourceComponents/Api/Stripe.schema.json

39 lines
750 B
JSON
Raw Normal View History

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