searchspring_code_validator
Validate Searchspring implementation code for search, autocomplete, recommendations, and tracking. Identify and troubleshoot errors to ensure proper integration with e-commerce platforms like Shopify and BigCommerce.
Instructions
Validate and troubleshoot Searchspring implementation code
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | JavaScript/HTML code to validate | |
codeType | Yes | Type of Searchspring implementation being validated | |
issue | No | Specific issue or error message you're experiencing (optional) | |
platform | No | E-commerce platform (optional) |
Input Schema (JSON Schema)
{
"properties": {
"code": {
"description": "JavaScript/HTML code to validate",
"type": "string"
},
"codeType": {
"description": "Type of Searchspring implementation being validated",
"enum": [
"search",
"autocomplete",
"suggest",
"trending",
"recommendations",
"finder",
"beacon",
"bulk-index",
"tracking"
],
"type": "string"
},
"issue": {
"description": "Specific issue or error message you're experiencing (optional)",
"type": "string"
},
"platform": {
"description": "E-commerce platform (optional)",
"enum": [
"shopify",
"bigcommerce",
"magento2",
"custom",
"other"
],
"type": "string"
}
},
"required": [
"code",
"codeType"
],
"type": "object"
}