1
0
mirror of synced 2026-01-09 06:03:17 -05:00
Files
airbyte/airbyte-integrations/connectors/source-mailchimp/source_mailchimp/schemas/shared/emailClientSegment.json
VitaliiMaltsev faa4d9a3c0 🎉 Source Mailchimp: updated Mailchimp schemas (#7975)
* create mailchimp schemas

* remove star import

* refactoring

* resolve merge conflicts

* update mailchimp cdk version

* revert changes from JsonToAvroSchemaConverter

* revert changes from JsonToAvroSchemaConverter

* bump Source Mailchimp

Co-authored-by: vmaltsev <vitalii.maltsev@globallogic.com>
2021-12-13 11:36:01 +02:00

34 lines
958 B
JSON

{
"type": "object",
"title": "Email Client Segment",
"description": "Segment by use of a particular email client.",
"required": ["field", "op", "value"],
"properties": {
"condition_type": {
"type": "string",
"x-value": "EmailClient",
"enum": ["EmailClient"]
},
"field": {
"type": "string",
"enum": ["email_client"],
"title": "Segment Field",
"description": "Segment by use of a particular email client.",
"example": "email_client"
},
"op": {
"type": "string",
"enum": ["client_is", "client_not"],
"title": "Segment Operator",
"description": "The operation to determine whether we select clients that match the value, or clients that do not match the value.",
"example": "client_is"
},
"value": {
"type": "string",
"title": "Segment Data",
"description": "The name of the email client.",
"example": "Gmail"
}
}
}