1
0
mirror of synced 2026-01-08 12:03:02 -05:00
Files
airbyte/airbyte-integrations/connectors/source-mailchimp/source_mailchimp/schemas/shared/segmentationOptions.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

28 lines
917 B
JSON

{
"type": "object",
"title": "Segment Options",
"description": "An object representing all segmentation options. This object should contain a `saved_segment_id` to use an existing segment, or you can create a new segment by including both `match` and `conditions` options.",
"properties": {
"saved_segment_id": {
"type": "integer",
"title": "Saved Segment ID",
"description": "The id for an existing saved segment."
},
"prebuilt_segment_id": {
"type": "string",
"title": "Prebuilt Segment Id",
"description": "The prebuilt segment id, if a prebuilt segment has been designated for this campaign.",
"example": "subscribers-female"
},
"match": {
"type": "string",
"title": "Match Type",
"description": "Segment match type.",
"enum": ["any", "all"]
},
"conditions": {
"$ref": "segmentCondition.json"
}
}
}