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

30 lines
505 B
JSON

{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"first_name": {
"type": ["string", "null"]
},
"email_address": {
"type": ["string", "null"]
},
"state": {
"type": ["string", "null"]
},
"created_at": {
"type": ["string", "null"]
},
"fields": {
"type": ["object", "null"],
"properties": {
"last_name": {
"type": ["string", "null"]
}
}
}
},
"required": ["id"]
}