1
0
mirror of synced 2026-01-04 18:04:31 -05:00
Files
airbyte/airbyte-integrations/connectors/source-convertkit/source_convertkit/schemas/sequences.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

22 lines
336 B
JSON

{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": ["string", "null"]
},
"hold": {
"type": ["boolean", "null"]
},
"repeat": {
"type": ["boolean", "null"]
},
"created_at": {
"type": ["string", "null"]
}
},
"required": ["id"]
}