1
0
mirror of synced 2026-01-08 21:05:13 -05:00
Files
airbyte/airbyte-integrations/connectors/source-mailchimp/source_mailchimp/schemas/shared/fuzzySegment.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
924 B
JSON

{
"type": "object",
"title": "Similar Subscribers Segment Member Segment",
"description": "Segment by similar subscribers.",
"required": ["field", "op", "value"],
"properties": {
"condition_type": {
"type": "string",
"x-value": "FuzzySegment",
"enum": ["FuzzySegment"]
},
"field": {
"type": "string",
"enum": ["fuzzy_segment"],
"title": "Segment Field",
"description": "Segment by similar subscribers.",
"example": "fuzzy_segment"
},
"op": {
"type": "string",
"enum": ["fuzzy_is", "fuzzy_not"],
"title": "Segment Operator",
"description": "Members who are/are not apart of a 'similar subscribers' segment.",
"example": "fuzzy_is"
},
"value": {
"type": "number",
"title": "Segment Operator",
"description": "The id for the 'similar subscribers' segment.",
"example": 48433
}
}
}