mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 23:17:38 +00:00
17 lines
395 B
JSON
17 lines
395 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",
|
||
|
|
"properties": {
|
||
|
|
"api_key": {
|
||
|
|
"$label": "API key",
|
||
|
|
"$key": "api_key",
|
||
|
|
"type": "password",
|
||
|
|
"description": "Api key for stripe"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["api_key"]
|
||
|
|
}
|