* 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
958 B
JSON
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"
|
|
}
|
|
}
|
|
}
|