* 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>
34 lines
924 B
JSON
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
|
|
}
|
|
}
|
|
}
|