This guide will walk you through the feed rules and introduce the brand-new comparison operators available for building powerful feed rules. These operators provide greater flexibility and control when filtering and modifying product data.
Introduction to Feed Rules
Feed rules in GoDataFeed act like SQL queries, allowing you to manipulate and optimize your product data before sending it to various shopping channels and marketplaces. Each rule consists of three key components:
- SET field: Defines the new value or transformation to be applied to the target field.
- TO field: Specifies the target field in your feed that you want to modify or populate.
- WHERE condition: Establishes the criteria for which products the rule should be applied to. This is where comparison operators come into play.
Understanding Comparison Operators
Comparison operators are essential for constructing WHERE conditions in feed rules. They allow you to compare values in your feed data and determine which products meet specific criteria. GoDataFeed offers a variety of comparison operators, including:
- Equals (=): Checks if two values are identical.
- Not Equals (<>): Checks if two values are different.
- Greater Than (>): Checks if the left value is greater than the right value.
- Less Than (<): Checks if the left value is less than the right value.
- Greater Than or Equal To (>=): Checks if the left value is greater than or equal to the right value.
- Less Than or Equal To (<=): Checks if the left value is less than or equal to the right value.
Static Text vs. Variables
In GoDataFeed, WHERE conditions can utilize both static text and variables for comparisons.
-
Static Text: This refers to fixed values like numbers (e.g., 100) or text (e.g., "instock").
-
Variables: These are dynamic values represented as
[P].[Name]
, where "P" signifies "Product" and "Name" refers to the specific field in your product data (e.g.,[P].[Price]
or[P].[ImageURL]
).
Using variables allows you to create more flexible and dynamic rules that adapt to the specific values of each product.
New Comparison Operators
The following table summarizes the new comparison operators and their functions:
Operator |
Description |
Example (with variable) |
IMGW< |
Image Width Less Than (pixels) |
|
IMGW> |
Image Width Greater Than (pixels) |
|
IMGW= |
Image Width Equal To (pixels) |
|
IMGH< |
Image Height Less Than (pixels) |
|
IMGH> |
Image Height Greater Than (pixels) |
|
IMGH= |
Image Height Equal To (pixels) |
|
SIZE< |
File Size Less Than (bytes) |
|
SIZE> |
File Size Greater Than (bytes) |
|
SIZE= |
File Size Equal To (bytes) |
|
STAT= |
HTTP Status Code Equal To |
|
STA<> |
HTTP Status Code Not Equal To |
|
LIKN |
Checks if a value matches any word in a list. |
|
NLIKN |
Checks if a value does not match any word in a list. |
|
REGEX |
Checks if a value matches a regular expression pattern. |
|
ALP() |
Checks if a value consists only of alphabetic characters. |
|
NAL() |
Checks if a value contains any non-alphabetic characters. |
|
HAL() |
Checks if a value contains at least one alphabetic character. |
|
NHA() |
Checks if a value contains no alphabetic characters. |
|
NUM() |
Checks if a value consists only of numeric characters. |
|
NNU() |
Checks if a value contains any non-numeric characters. |
|
HNU() |
Checks if a value contains at least one numeric character. |
|
NHN() |
Checks if a value contains no numeric characters. |
|
ALN() |
Checks if a value consists only of alphanumeric characters. |
|
NAN() |
Checks if a value contains any non-alphanumeric characters. |
|
Image Dimension Comparisons
The new IMGW
and IMGH
operators allow you to create rules based on specific image width and height requirements. This is particularly useful for:
-
Ensuring image quality: target products with small images and replace them with higher resolution versions.
-
Meeting marketplace image guidelines: filter out products that don't meet specific image dimension requirements of certain channels.
-
Optimizing image sizes: identify images that are unnecessarily large and resize them for faster loading times.
File Size Comparisons
The SIZE
operators enable you to create rules based on file sizes. This can be helpful for:
-
Managing storage space: identify and remove products with excessively large files.
-
Improving download speeds: target products with large files and compress them for better user experience.
-
Meeting file size limits: filter out products that exceed file size restrictions on certain platforms.
HTTP Status Code Comparisons
The STAT
and STA<>
operators provide the ability to create rules based on HTTP status codes returned when accessing product URLs. This is useful for:
-
Identifying broken links: target products with 404 status codes and update their URLs or remove them from your feed.
-
Monitoring website availability: track product URLs returning 500-level errors and investigate potential server issues.
-
Improving data quality: ensure product URLs are accessible and functioning correctly.
Is Like In List Rules
Name: LIKN
Operator: Is Like In List
Description: Checks if a value matches any word in a list.
Example: [P].[Description] is Like In List Red,Green,Blue
Note: If the description attribute contains "Red," "Green," or "Blue," the rule will be applied.
Name: NLIKN
Operator: Is Not Like In List
Description: Checks if a value does not match any word in a list.
Example: [P].[Description] is Not Like In List Red,Green,Blue
Warning: If the description attribute does not contain "Red," "Green," or "Blue," the rule will be applied.
These rules are beneficial for filtering products based on keywords in attributes like product descriptions or categories:
-
Targeting Specific Products: Identify products with certain keywords (e.g., colors like "Red," "Green," or "Blue").
-
Excluding Irrelevant Items: Exclude products without specific keywords, improving targeting for marketing campaigns.
Example of Use Cases
-
Filtering Products by Color
[P].[Description] Is Like In List "Red", "Green", "Blue"
-
Excluding Non-Eco-Friendly Products
[P].[Description] Is Not Like In List "Plastic", "Synthetic"
Regex Rules
Name: REGEX
Operator: Matches Regex
Description: Checks if a value matches a regular expression pattern.
Example: [P].[SKU] Matches Regex ^[A-Z]{3}\\d{4}$
Note: If the SKU matches the pattern of three letters followed by four digits, the rule will be applied.
Regex-based rules provide powerful flexibility for enforcing specific formats:
-
SKU Format Validation: Ensure product SKUs follow a specific pattern (e.g., "ELE1234").
-
Data Integrity: Use regular expressions to validate structured data (e.g., phone numbers, postal codes).
Example of Use Cases
-
SKU Format Validation for Electronics
[P].[SKU] Matches Regex ^[A-Z]{3}\\d{4}$
-
Validate ISBN for Books
[P].[ISBN] Matches Regex ^\d{13}$
Alphanumeric Rules
Name: ALP()
Operator: Is Alpha
Description: Checks if a value consists only of alphabetic characters.
Example: [P].[Title] Is Alpha
Note: If the Title consists only of letters, the rule will be applied.
Name: NAL()
Operator: Is Not Alpha
Description: Checks if a value contains any non-alphabetic characters.
Example: [P].[SKU] Is Not Alpha
Warning: If the SKU contains any non-letter characters, the rule will be applied.
Alphanumeric checks are crucial in maintaining data consistency, especially for fields like product titles, SKUs, and pricing:
-
Validation of Product Titles and Codes: Ensure proper formatting for fields like product titles or SKUs.
-
Detect Anomalies: Identify products with incorrectly formatted data.
-
Search and Filter Efficiency: Consistent formatting allows easy search and filtering for specific product attributes.
Example of Use Cases
-
Validating Product Title for Alphabetic Characters
[P].[Title] Is Alpha
-
Validating Product Code for Alphanumeric Format
[P].[Code] Is AlphaNumeric
Additional Tips
-
Combine multiple conditions: Use AND/OR operators to create more complex WHERE clauses.
-
Use parentheses for clarity: Group conditions within parentheses to define the order of evaluation.
-
Test your rules: Always test your rules before applying them to your entire feed to ensure they work as intended. You can use the rule preview, or feed preview feature to do so.
-
Explore other operators: GoDataFeed offers a variety of other comparison and logical operators to further refine your feed rules.
Related to
Comments
0 comments
Article is closed for comments.