1
0
mirror of synced 2026-01-31 10:02:01 -05:00
Files
airbyte/airbyte-integrations/connectors/source-convertkit/source_convertkit/schemas/forms.json
Eugene a4ea907094 Fixed checkstyle by running the "./gradlew --no-daemon format --scan". NO changes in logic (#19214)
* Fixed checkstyle by running the "./gradlew --no-daemon format --scan". NO changes in logic
2022-11-09 19:36:37 +02:00

46 lines
810 B
JSON

{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"uid": {
"type": ["string", "null"]
},
"name": {
"type": ["string", "null"]
},
"created_at": {
"type": ["string", "null"]
},
"archived": {
"type": ["boolean", "null"]
},
"type": {
"type": ["string", "null"]
},
"url": {
"type": ["string", "null"]
},
"embed_js": {
"type": ["string", "null"]
},
"embed_url": {
"type": ["string", "null"]
},
"title": {
"type": ["string", "null"]
},
"description": {
"type": ["string", "null"]
},
"sign_up_button_text": {
"type": ["string", "null"]
},
"success_message": {
"type": ["string", "null"]
}
},
"required": ["id"]
}