{"info":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","description":"<html><head></head><body><p>Welcome to the Catsy API Documentation</p>\n<h1 id=\"what-is-catsy\"><strong>What is Catsy?</strong></h1>\n<p>Catsy is a Product Information Management (PIM) and Digital Asset Management (DAM) platform designed to simplify how teams manage, enrich, and distribute product content across multiple channels. From a centralized hub, you can streamline content workflows, ensure data consistency, and speed up time-to-market.</p>\n<hr>\n<h1 id=\"what-is-the-catsy-api-for\">What is the Catsy API for?</h1>\n<p>The Catsy REST API empowers you to seamlessly integrate your product content with other systems in your tech stack. Use it to automate updates, sync product data, and build custom workflows tailored to your business needs.</p>\n<p>This guide provides a breakdown of available endpoints, usage examples, and best practices to help you get the most out of the API.</p>\n<hr>\n<h1 id=\"authentication\">Authentication</h1>\n<p>All API requests require authentication using a Bearer Token. This token must be included in the header of each request.</p>\n<p>To obtain your API Bearer Token, inside Catsy, navigate to:<br>More &gt; Administration &gt; Users &amp; Roles.</p>\n<ol>\n<li><p>Add a new role called 'Web API'</p>\n</li>\n<li><p>Add a user under this role. You can give a random email address.</p>\n</li>\n<li><p>Click on username and open the popup. Copy the API key.</p>\n</li>\n<li><p>Set attributes you want this role to have access to by going to <em>Admin &gt; Attribute Access</em></p>\n</li>\n</ol>\n<hr>\n<h1 id=\"testing-the-api-in-postman\">Testing the API in Postman</h1>\n<p>You can quickly explore and test Catsy’s API using Postman. Here’s how:</p>\n<h3 id=\"1-run-in-postman\"><strong>1. Run in Postman</strong></h3>\n<ul>\n<li>Click the <strong>\"Run in Postman\"</strong> button at the top-right of the documentation page.</li>\n</ul>\n<h3 id=\"2-fork-the-collection\"><strong>2. Fork the Collection</strong></h3>\n<ul>\n<li><p>In the window that opens, select <strong>\"Postman Web\"</strong>.</p>\n</li>\n<li><p>Sign in to your Postman account (or register if you don’t have one).</p>\n</li>\n<li><p>Choose a workspace (or create a new one).</p>\n</li>\n<li><p>Click <strong>\"Fork Collection\"</strong>.</p>\n</li>\n</ul>\n<h3 id=\"3-set-your-api-key\"><strong>3. Set Your API Key</strong></h3>\n<ul>\n<li><p>Once forked, you’ll land on the <strong>collection overview page</strong>.</p>\n</li>\n<li><p>Click the <strong>“Variables”</strong> tab.</p>\n</li>\n<li><p>In the <code>API_KEY</code> row, enter your <strong>Bearer Token</strong> under <strong>Current Value</strong>.</p>\n</li>\n</ul>\n<h3 id=\"4-browse-and-test-endpoints\"><strong>4. Browse and Test Endpoints</strong></h3>\n<ul>\n<li><p>Use the sidebar to explore different folders and find the endpoint you want to test.</p>\n</li>\n<li><p>Click a request to open it.</p>\n</li>\n</ul>\n<h3 id=\"5-understand--edit-the-request\"><strong>5. Understand &amp; Edit the Request</strong></h3>\n<ul>\n<li><p>Under the <strong>Params</strong> tab, check for any <strong>required parameters</strong>.</p>\n</li>\n<li><p>Under the <strong>Body</strong> tab, customize the request body as needed for your test.</p>\n</li>\n</ul>\n<h3 id=\"6-send-and-view-response\"><strong>6. Send and View Response</strong></h3>\n<ul>\n<li><p>Once ready, click <strong>Send</strong>.</p>\n</li>\n<li><p>The <strong>API response</strong> will appear in the lower panel with status code, headers, and data.</p>\n</li>\n</ul>\n<hr>\n<h1 id=\"resources\">Resources</h1>\n<p>The Catsy API is organized around <strong>RESTful principles</strong>, allowing clients to manage product information, digital assets, relationships, and custom entities with predictable, structured endpoints. Each <strong>resource</strong> represents a data object or collection, with clearly defined operations, attributes, and relationships.</p>\n<p>This documentation outlines all available <strong>resources</strong> and their supported operations (e.g., create, retrieve, update, delete). Individual sections provide specific details on formats, expected parameters, filtering, sorting, pagination, and usage examples.</p>\n<h3 id=\"request--response-format\">Request &amp; Response Format</h3>\n<p>All Catsy API interactions must be performed using <strong><code>application/json</code></strong> format for both requests and responses. This ensures consistency, reliability, and compatibility across systems.</p>\n<h3 id=\"rate-limiting\">Rate Limiting</h3>\n<p>Catsy’s API enforces rate limiting using the <strong>token bucket algorithm</strong> to ensure fair usage and system stability.</p>\n<ul>\n<li><p>Clients are allowed <strong>2 requests per second</strong>, with a <strong>maximum burst capacity of 10 requests</strong>.</p>\n</li>\n<li><p>The bucket refills at a rate of <strong>2 tokens per second</strong>, up to the 10-request limit.</p>\n</li>\n<li><p>If a client exceeds the available token count, the server responds with a <strong>429 Too Many Requests</strong> status.</p>\n</li>\n</ul>\n<h4 id=\"recommendations-for-clients\"><strong>Recommendations for Clients</strong></h4>\n<ul>\n<li><p>Handle 429 responses gracefully by implementing retry logic with exponential backoff.</p>\n</li>\n<li><p>Monitor your request rates to ensure you’re staying within limits.</p>\n</li>\n<li><p>Where possible, batch requests or reduce frequency to avoid hitting rate limits.</p>\n</li>\n</ul>\n<p>This rate-limiting strategy helps balance performance and resource availability across all API users.</p>\n<h3 id=\"required-headers\">Required Headers</h3>\n<p>To authenticate and properly format your requests, always include the following headers:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">Content-Type: application/json\nAccept: application/json\nAuthorization: Bearer {{your_access_token}}\n\n</code></pre>\n<h3 id=\"http-status-codes\">HTTP Status Codes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status Code</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>200</strong></td>\n<td>OK – Everything is working</td>\n</tr>\n<tr>\n<td><strong>201</strong></td>\n<td>OK – New resource has been created</td>\n</tr>\n<tr>\n<td><strong>204</strong></td>\n<td>OK – The resource was successfully deleted</td>\n</tr>\n<tr>\n<td><strong>304</strong></td>\n<td>Not Modified – The client can use cached data</td>\n</tr>\n<tr>\n<td><strong>400</strong></td>\n<td>Bad Request – The request was invalid or cannot be served. Error details should be provided.</td>\n</tr>\n<tr>\n<td><strong>401</strong></td>\n<td>Unauthorized – The request requires user authentication</td>\n</tr>\n<tr>\n<td><strong>403</strong></td>\n<td>Forbidden – The server understood the request but refuses to authorize it</td>\n</tr>\n<tr>\n<td><strong>404</strong></td>\n<td>Not Found – There is no resource behind the requested URI</td>\n</tr>\n<tr>\n<td><strong>422</strong></td>\n<td>Unprocessable Entity – The server cannot process the request (e.g., missing required attributes)</td>\n</tr>\n<tr>\n<td><strong>500</strong></td>\n<td>Internal Server Error – A catch-all error; stack trace should be logged, not returned</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"filtered-searches\">Filtered Searches</h3>\n<p>To authenticate and properly format your requests, always include the following headers:</p>\n<h3 id=\"simple-filter\">Simple Filter</h3>\n<p>A simple filter requires:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n<th>Required</th>\n<th>Type</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>attributeKey</td>\n<td>The field to filter on</td>\n<td>✅</td>\n<td><code>string</code></td>\n</tr>\n<tr>\n<td>operator</td>\n<td>Operation to perform</td>\n<td>✅</td>\n<td><code>string</code></td>\n</tr>\n<tr>\n<td>value</td>\n<td>Value(s) to filter with</td>\n<td>⚠️ Only required for some</td>\n<td><code>string</code> / <code>array</code> / <code>object</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example--products-with-status-equal-to-active\">Example – Products with <code>status</code> equal to \"Active\":</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"attributeKey\": \"status\",\n  \"operator\": \"is\",\n  \"value\": \"Active\"\n}\n\n</code></pre>\n<h3 id=\"compound-filter-and-conditions\">Compound Filter (AND conditions)</h3>\n<p>A compound filter is an array of simple filters. All filters must be true.</p>\n<h4 id=\"example--products-with-status--active-and-capacity-containing-13\">Example – Products with <code>status</code> = Active AND <code>capacity</code> containing \"13\":</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">[\n  {\n    \"attributeKey\": \"status\",\n    \"operator\": \"is\",\n    \"value\": \"Active\"\n  },\n  {\n    \"attributeKey\": \"capacity\",\n    \"operator\": \"contains\",\n    \"value\": \"13\"\n  }\n]\n\n</code></pre>\n<h3 id=\"supported-operators\">Supported Operators:</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Operator</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Operator</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>is</code></td>\n<td>Equal to (case-insensitive for strings)</td>\n<td><code>not</code></td>\n<td>Not equal to</td>\n</tr>\n<tr>\n<td><code>contains</code></td>\n<td>Value contains substring</td>\n<td><code>does not contain</code></td>\n<td>Value does not contain substring</td>\n</tr>\n<tr>\n<td><code>is empty</code></td>\n<td>True when the attribute has no value or is null</td>\n<td><code>is not empty</code></td>\n<td>True when the attribute has any value</td>\n</tr>\n<tr>\n<td><code>starts with</code></td>\n<td>Value starts with a given string</td>\n<td><code>does not start with</code></td>\n<td>Value does not start with a given string</td>\n</tr>\n<tr>\n<td><code>ends with</code></td>\n<td>Value ends with a given string</td>\n<td><code>does not end with</code></td>\n<td>Value does not end with a given string</td>\n</tr>\n<tr>\n<td><code>between</code></td>\n<td>Range check using <code>lowerBoundValue</code> and <code>upperBoundValue</code></td>\n<td><code>is exactly bulk</code></td>\n<td>Multiline match (newline-delimited string list)</td>\n</tr>\n<tr>\n<td><code>&gt;</code></td>\n<td>Greater than (use with <code>lowerBoundValue</code>)</td>\n<td><code>&gt;=</code></td>\n<td>Greater than or equal (use with <code>lowerBoundValue</code>)</td>\n</tr>\n<tr>\n<td><code>&lt;</code></td>\n<td>Less than (use with <code>upperBoundValue</code>)</td>\n<td><code>&lt;=</code></td>\n<td>Less than or equal (use with <code>upperBoundValue</code>)</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"python-sdk\">Python SDK</h1>\n<p>Easily integrate with the Catsy API using our official Python SDK. Watch the quick overview below to get started. You can download the latest Python SDK as a ZIP file by logging into Catsy.</p>\n<p><video src=\"https://player.vimeo.com/video/1078958299\" width=\"665\" height=\"389\"></video></p>\n<h1 id=\"javascript-sdk\">JavaScript SDK</h1>\n<p>Use the Catsy JavaScript SDK to connect your applications seamlessly to the Catsy API. Watch the quick walkthrough below. The JavaScript SDK is available for download as a ZIP file inside Catsy.</p>\n<p><video src=\"https://player.vimeo.com/video/1078958356\" width=\"653\" height=\"424\"></video></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"What is Catsy?","slug":"what-is-catsy"},{"content":"What is the Catsy API for?","slug":"what-is-the-catsy-api-for"},{"content":"Authentication","slug":"authentication"},{"content":"Testing the API in Postman","slug":"testing-the-api-in-postman"},{"content":"Resources","slug":"resources"},{"content":"Python SDK","slug":"python-sdk"},{"content":"JavaScript SDK","slug":"javascript-sdk"}],"owner":"43566738","collectionId":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","publishedId":"2sB2cd5JSd","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-08-07T18:43:44.000Z"},"item":[{"name":"Products","item":[{"name":"Create Product","id":"c65c5eb3-d363-4b2c-9ab4-f508b0acd03d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"number\": \"HS-SL48199\",\r\n  \"name\": \"High Strength Sealant\",\r\n  \"long_description\": \"A premium-grade, fire-resistant sealant ideal for use in high-temperature environments and industrial applications.\",\r\n  \"main_image\": \"CRS_RT210CVN_MAIN.jpg\",\r\n  \"list_price\": \"29.99\",\r\n  \"category\": \"Tools > Flooring\"\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products","description":"<p>Use this endpoint to create a new product in your Catsy catalog.</p>\n<p>⚠️ Only the <code>number</code> (unique product identifier) is required to create a product.</p>\n<p><strong>Note:</strong><br />This endpoint is for linking existing data only. You cannot create new attributes, categories, or assets using this method.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"1f70e7a8-bc6e-4155-b20f-2727919b98b8","name":"Create Product","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"number\": \"HS-SL48199\",\r\n    \"name\": \"High Strength Sealant\",\r\n    \"long_description\": \"A premium-grade, fire-resistant sealant ideal for use in high-temperature environments and industrial applications.\",\r\n    \"main_image\": \"CRS_RT210CVN_MAIN.jpg\",\r\n    \"list_price\": \"29.99\",\r\n    \"category\": \"Tools > Flooring\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 26 Apr 2025 16:21:52 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"Set-Cookie","value":"JSESSIONID=NTIzOTE0MjMtMzk0NS00OTZkLWJlMTYtMzM2ZTI2N2NlNmRm; Path=/; Secure; HttpOnly; SameSite=None"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=39pTh%2FuqgJQvYegGgVPyBLjKvCnEpDprcymkUjOZs%2FRicpBBYI9ZYoWyQOmTXQd0WTJxX3SCogz9ChHGdX2gxAW5xqEYfsjah17YyOv95EyJh%2BLaCZn2HrQcyOR9%2BVY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"93676a63ce45c95a-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2313&min_rtt=2201&rtt_var=905&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2816&recv_bytes=1136&delivery_rate=1315765&cwnd=251&unsent_bytes=0&cid=c8b64302f6d64966&ts=1468&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 21654147,\n    \"assets\": [\n        {\n            \"id\": 4072398992,\n            \"size\": 20705,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_RT210CVN_MAIN.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_RT210CVN_MAIN.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1743520509291,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398992/CRS_RT210CVN_MAIN.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398992/CRS_RT210CVN_MAIN.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398992/CRS_RT210CVN_MAIN.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398992/CRS_RT210CVN_MAIN.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398992/CRS_RT210CVN_MAIN.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398992/CRS_RT210CVN_MAIN.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398992/CRS_RT210CVN_MAIN.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398992/CRS_RT210CVN_MAIN.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398992/CRS_RT210CVN_MAIN.png\"\n            },\n            \"personna\": \"DIY\",\n            \"marketing_campaigns\": [\n                \"Instagram abc\",\n                \"YouTube\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Rubber Grip - new\",\n            \"tags\": [\n                \"smoke pipe\",\n                \"device\",\n                \"pliers\",\n                \"brown\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"b2bindustrialpreliminarydemo804_alt_text\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"czqWS3fKkyZvSAZdJg4RfenJaB37z.wB\",\n            \"publish_date\": null,\n            \"b2bindustrialpreliminarydemo804_url\": null\n        }\n    ],\n    \"create_date\": 1745684511782,\n    \"update_date\": 1745684511832,\n    \"create_user_id\": 4018007130,\n    \"update_user_id\": 4018007130,\n    \"create_user_name\": \"Catsy Administrator\",\n    \"update_user_name\": \"Catsy Administrator\",\n    \"collections\": [],\n    \"completeness_score\": 50,\n    \"catsy$attribute_group_scores\": {\n        \"marketing\": 0,\n        \"core\": 100,\n        \"digital_assets\": 100,\n        \"asset_gallery\": 100,\n        \"deep_research\": 100,\n        \"logistics\": 100,\n        \"pricing\": 100\n    },\n    \"amps\": null,\n    \"generated_description\": null,\n    \"warranty_language\": null,\n    \"action_shot\": null,\n    \"sell_pack_desc\": null,\n    \"sellpack_width\": null,\n    \"rich_description\": null,\n    \"map_price\": null,\n    \"number\": \"HS-SL48199\",\n    \"sellpack_height\": null,\n    \"coverage_length\": null,\n    \"warranty\": null,\n    \"brand\": null,\n    \"additional_images\": null,\n    \"inner_pack_height\": null,\n    \"variant_price\": null,\n    \"country_of_origin\": null,\n    \"master_pack_qty\": null,\n    \"ship_pack_qty\": null,\n    \"upc\": null,\n    \"net_price\": null,\n    \"coverage_description_it\": null,\n    \"multi_category\": null,\n    \"safety_data_sheet\": null,\n    \"power_drills_json\": null,\n    \"case_pack_upcean\": null,\n    \"grade\": \"D\",\n    \"inner_pack_length\": null,\n    \"short_name\": null,\n    \"ship_pack_width\": null,\n    \"status\": null,\n    \"main_material\": null,\n    \"masterpack_length\": null,\n    \"short_description\": null,\n    \"ship_pack_weight\": null,\n    \"auto_linked_image\": null,\n    \"assembly_instructions\": null,\n    \"case_pack_weight\": null,\n    \"complementary_products\": null,\n    \"used_with\": null,\n    \"sell_pack_qty\": null,\n    \"generate_technical_attributes\": null,\n    \"vendor\": null,\n    \"recommended_products\": null,\n    \"website\": null,\n    \"care_wash_and_usage_instructions\": null,\n    \"case_pack_width\": null,\n    \"masterpack_width\": null,\n    \"selling_weight\": null,\n    \"parent_sku\": null,\n    \"list_price\": \"29.99\",\n    \"long_description\": \"A premium-grade, fire-resistant sealant ideal for use in high-temperature environments and industrial applications.\",\n    \"coverage_level\": null,\n    \"sale_price\": null,\n    \"mkt_comp\": 0,\n    \"coverage_description_de\": null,\n    \"certification_date\": null,\n    \"user_manual\": null,\n    \"ship_pack_height\": null,\n    \"computed_price\": null,\n    \"sell_sheet\": null,\n    \"coverage_description_fr\": null,\n    \"case_pack_packaging_description\": null,\n    \"benefit_6\": null,\n    \"keyword_tags\": null,\n    \"masterpack_weight\": null,\n    \"benefit_4\": null,\n    \"video_2\": null,\n    \"benefit_5\": null,\n    \"benefit_2\": null,\n    \"case_pack_height\": null,\n    \"benefit_3\": null,\n    \"benefit_1\": null,\n    \"ship_pack_length\": null,\n    \"coverage_description_es\": null,\n    \"repair_policy\": null,\n    \"marketplace_category\": null,\n    \"coverage_description_en\": null,\n    \"b2b_industrial_preliminary_demo_gid\": null,\n    \"product_type_1\": null,\n    \"long_name_for_ebay\": null,\n    \"extra_long_name_for_website\": null,\n    \"spec_sheet\": null,\n    \"name\": \"High Strength Sealant\",\n    \"image_3\": null,\n    \"image_2\": null,\n    \"main_image\": 4072398992,\n    \"action_photo\": null,\n    \"lifestyle_image\": null,\n    \"video\": null,\n    \"regular_price\": null,\n    \"purchasing_completeness\": 0,\n    \"priority_accessories\": null,\n    \"accessory_product\": null,\n    \"case_pack_quantity\": null,\n    \"cost\": null,\n    \"master_pack_desc\": null,\n    \"inner_pack_width\": null,\n    \"ship_pack_desc\": null,\n    \"selling_length\": null,\n    \"inner_pack_weight\": null,\n    \"product_type\": null,\n    \"application\": null,\n    \"publish_to_b2b_website\": null,\n    \"material\": null,\n    \"coverage_description_pt\": null,\n    \"marking_code\": null,\n    \"current_price\": null,\n    \"category\": {\n        \"level_1\": \"Tools\",\n        \"level_2\": \"Flooring\"\n    },\n    \"case_pack_length\": null,\n    \"masterpack_height\": null\n}"}],"_postman_id":"c65c5eb3-d363-4b2c-9ab4-f508b0acd03d"},{"name":"Delete Product(s)","id":"6abcbb81-fbcc-4a0f-8b93-c04d0d4a922e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\r\n    13696233,\r\n    13696234\r\n]","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products?include_variants=false","description":"<p>Deletes one or more products from the system by providing their product IDs in the request body.</p>\n<p>You may optionally include the <code>include_variants</code> query parameter to control whether associated variant records are deleted as well.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products"],"host":["https://api.catsy.com/v4"],"query":[{"description":{"content":"<p>If set to true, all variants associated with the specified product(s) will also be deleted.\nIf omitted or set to false, only the main product records will be deleted, and variants will remain intact.</p>\n","type":"text/plain"},"key":"include_variants","value":"false"}],"variable":[]}},"response":[{"id":"d490f879-d398-4d9f-8aee-588db388fde2","name":"Delete Product(s)","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"[\r\n    13696233,\r\n    13696234\r\n]","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products?include_variants=false","host":["https://api.catsy.com/v4"],"path":["products"],"query":[{"key":"include_variants","value":"false","description":"If set to true, all variants associated with the specified product(s) will also be deleted.\nIf omitted or set to false, only the main product records will be deleted, and variants will remain intact."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 20 Apr 2025 15:06:28 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=sbva7%2F7lQPphi1FfXzHwLjyXvnjqNsrZi5WkOqlQlKFECkmOzUf5FJJ1YCiySktyPCCjL3O2tX9VOKv%2B1GCL%2BGQcmiMoBYWx5BqeqKOFzeveLE0UZBWlHtgiNNyIxmw%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"93358bb62c235a51-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2234&min_rtt=2088&rtt_var=887&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1204&delivery_rate=693486&cwnd=243&unsent_bytes=0&cid=e22969a8d7d2bd14&ts=224&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"note\": \"Deleted products successfully!\"\n}"}],"_postman_id":"6abcbb81-fbcc-4a0f-8b93-c04d0d4a922e"},{"name":"Update Product(s)","id":"fb1f3484-bcf3-4e99-953f-eecbb785d932","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"number\": \"HS-SL48199\",\r\n    \"name\": \"Updated Product Name\",\r\n    \"list_price\": \"34.99\",\r\n    \"category\": \"Tools > Flooring\"\r\n  },\r\n  {\r\n    \"number\": \"HS-SL48198\",\r\n    \"name\": \"Updated Product Name\",\r\n    \"list_price\": \"37.99\",\r\n    \"category\": \"Tools > Saws\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products","description":"<p>Updates multiple products in bulk by matching each product by its <code>number</code> or <code>id</code>.</p>\n<p>Only the fields provided in each product object will be updated — all other data remains unchanged.</p>\n<ul>\n<li><p><strong>Request Body</strong>: An array of product objects, each containing:</p>\n<ul>\n<li><p>Either <code>id</code> or <code>number</code> (required for identifying the product)</p>\n</li>\n<li><p>One or more fields to update (e.g., <code>name</code>, <code>list_price</code>, <code>category</code>, etc.)</p>\n</li>\n</ul>\n</li>\n</ul>\n<blockquote>\n<p>⚠️ Products that cannot be matched by id or number will be created as new products</p>\n</blockquote>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"1076b305-4090-4ab9-9811-07f38aaef669","name":"Update Product(s)","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"number\": \"HS-SL48199\",\r\n    \"name\": \"Updated Product Name\",\r\n    \"list_price\": \"34.99\",\r\n    \"category\": \"Tools > Flooring\"\r\n  },\r\n  {\r\n    \"number\": \"HS-SL48198\",\r\n    \"name\": \"Updated Product Name\",\r\n    \"list_price\": \"37.99\",\r\n    \"category\": \"Tools > Saws\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 20 Apr 2025 16:37:35 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=lh0EQVD2FSroZUFJMeom1P%2BVFy3sNpbsR7Yl9XYMdPCPaNSM%2BGLvA9vr%2BFWLfA4MPFTicsFGCyB1ZmPW5bzGinBZN2VYk5iqSz%2BL3CAoVVAdHyUy2vP4mQWjTfWx9hA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"9336112f0c9bd6f9-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1879&min_rtt=1815&rtt_var=727&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1421&delivery_rate=797796&cwnd=246&unsent_bytes=0&cid=835485d1d427643b&ts=514&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 21604021,\n        \"assets\": [],\n        \"create_date\": 1745161747785,\n        \"update_date\": 1745167055399,\n        \"create_user_id\": 4018007920,\n        \"update_user_id\": 4018007920,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_user_name\": \"Catsy Administrator\",\n        \"collections\": [],\n        \"completeness_score\": 100,\n        \"catsy$attribute_group_scores\": {\n            \"core\": 100\n        },\n        \"name\": \"Updated Product Name\",\n        \"number\": \"HS-SL48199\",\n        \"list_price\": \"34.99\",\n        \"category\": {\n            \"level_1\": \"Services\",\n            \"level_2\": \"Shipping\"\n        }\n    },\n    {\n        \"id\": 21604022,\n        \"assets\": [],\n        \"create_date\": 1745166934844,\n        \"update_date\": 1745167055399,\n        \"create_user_id\": 4018007920,\n        \"update_user_id\": 4018007920,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_user_name\": \"Catsy Administrator\",\n        \"collections\": [],\n        \"completeness_score\": 100,\n        \"catsy$attribute_group_scores\": {\n            \"core\": 100\n        },\n        \"name\": \"Updated Product Name\",\n        \"number\": \"HS-SL48198\",\n        \"list_price\": \"37.99\",\n        \"category\": {\n            \"level_1\": \"Services\",\n            \"level_2\": \"Shipping\"\n        }\n    }\n]"}],"_postman_id":"fb1f3484-bcf3-4e99-953f-eecbb785d932"},{"name":"Product by ID","id":"95a3fd64-468a-41b8-8912-2418a3f2fcf6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/products/:product_id","description":"<h3 id=\"retrieve-product-details\">Retrieve Product Details</h3>\n<p>This endpoint retrieves details of a specific product based on the provided product ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products",":product_id"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>One or more attribute group IDs to filter by. Pass each as a separate value.</p>\n","type":"text/plain"},"key":"attribute_group_ids","value":""},{"disabled":true,"description":{"content":"<p>ID of the second attribute group</p>\n","type":"text/plain"},"key":"attribute_group_ids","value":""},{"disabled":true,"description":{"content":"<p>ID of the third attribute group</p>\n","type":"text/plain"},"key":"attribute_group_ids","value":""}],"variable":[{"description":{"content":"<p>Internal Product ID</p>\n","type":"text/plain"},"type":"any","value":"{product_id}","key":"product_id"}]}},"response":[{"id":"c6201aa7-7e48-4424-86b8-8e176c913641","name":"Retrieve Product by ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/products/:product_id","host":["https://api.catsy.com/v4"],"path":["products",":product_id"],"query":[{"key":"attribute_group_ids","value":null,"description":"One or more attribute group IDs to filter by. Pass each as a separate value.","disabled":true},{"key":"attribute_group_ids","value":null,"description":"ID of the second attribute group","disabled":true},{"key":"attribute_group_ids","value":null,"description":"ID of the third attribute group","disabled":true}],"variable":[{"key":"product_id","value":"21604022"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 20 Apr 2025 16:44:53 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=0dzuIoTurztJ8Yj9JxGJTU8%2BEAEYj8oAH8voX5hQLtGxFTCl%2BVAeZiAIKNKsj5QGxv6Kw%2Feiis%2FgfEhWbzGbWKwg2PMasxeUWTU6fG7UWYxrN%2FJnnONLXqR%2Bn0qPF%2Fc%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"93361be08dde8238-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2090&min_rtt=2027&rtt_var=805&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1102&delivery_rate=714356&cwnd=246&unsent_bytes=0&cid=75226bf8678ffb74&ts=264&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 21604022,\n    \"assets\": [\n        {\n            \"id\": 4072595550,\n            \"size\": 106103,\n            \"width\": 650,\n            \"height\": 975,\n            \"filename\": \"191082_1.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/191082_1.jpg\",\n            \"create_user_id\": 4018007921,\n            \"create_date\": 1744991804658,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007921,\n            \"update_date\": 1745004592905,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072595550/191082_1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": 0.67,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072595550/191082_1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072595550/191082_1.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_xl/4072595550/191082_1.jpg\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072595550/191082_1.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072595550/191082_1.jpg\"\n            },\n            \"description_a\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"title\": null,\n            \"s3_version\": \"yDHbbQHjyhRxhvo5Wrq9TV35O0tJco2_\",\n            \"version\": 1,\n            \"tags\": null\n        }\n    ],\n    \"create_date\": 1745166934844,\n    \"update_date\": 1745167055399,\n    \"create_user_id\": 4018007920,\n    \"update_user_id\": 4018007920,\n    \"create_user_name\": \"Catsy Administrator\",\n    \"update_user_name\": \"Catsy Administrator\",\n    \"collections\": [],\n    \"completeness_score\": 100,\n    \"catsy$attribute_group_scores\": {\n        \"core\": 100\n    },\n    \"number\": \"HS-SL48198\",\n    \"main_image\": 4072595550,\n    \"parent_sku\": null,\n    \"name\": \"Updated Product Name\",\n    \"brand_name\": null,\n    \"list_price\": \"37.99\",\n    \"long_description\": \"A premium-grade, fire-resistant sealant ideal for use in high-temperature environments and industrial applications.\",\n    \"category\": {\n        \"level_1\": \"Services\",\n        \"level_2\": \"Shipping\"\n    }\n}"}],"_postman_id":"95a3fd64-468a-41b8-8912-2418a3f2fcf6"},{"name":"List Collections for Product","id":"15e25e39-17db-4499-b464-84a68968721e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/products/:product_id/collections","description":"<h3 id=\"get-product-collections\">Get Product Collections</h3>\n<p>This endpoint retrieves collections associated with a specific product.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products",":product_id","collections"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Product ID</p>\n","type":"text/plain"},"type":"any","value":"{product_id}","key":"product_id"}]}},"response":[{"id":"536b3df1-3a46-4a89-a544-f38aa0dad398","name":"List Collections for Product","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/products/:product_id/collections","host":["https://api.catsy.com/v4"],"path":["products",":product_id","collections"],"variable":[{"key":"product_id","value":"13460161","description":"Internal Product ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Apr 2025 21:20:12 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=xOU5W0pBQydb%2FWf2RvhP6g%2FPdi626egsG6dNfcCvB1ezMdCo7L06To82vqaUr9MztQTQWX%2BryBWHe%2F%2FpEnsQU84E%2BotHEo3vpD%2FanIAUKccgwo6FTxWYBKbC6VSlHpI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"934829eaaec50e4c-AMS","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=83398&min_rtt=83181&rtt_var=31348&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2817&recv_bytes=859&delivery_rate=34815&cwnd=32&unsent_bytes=0&cid=ed2891adeb56b250&ts=625&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 4004667334,\n        \"number\": \"4004667334\",\n        \"name\": \"Air Compressors\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1627649420838,\n        \"create_user_name\": \"Peter V\",\n        \"update_date\": 1627649420838,\n        \"update_user_name\": \"Peter V\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20640187,\n            20586296,\n            20640184,\n            20586297,\n            20586300,\n            20640188,\n            20586290,\n            20640178,\n            20586291,\n            20640176,\n            20586289,\n            20640177,\n            20586294,\n            20640182,\n            20586295,\n            20586292,\n            20640180,\n            20624144,\n            20626039,\n            20626037,\n            20626154,\n            20586347,\n            20626152,\n            20626153,\n            20626146,\n            20586336,\n            20626144,\n            20626148,\n            20586330,\n            20586334,\n            20626142,\n            20586335,\n            20626140,\n            20586333,\n            20586323,\n            20635091,\n            20586324,\n            20586325,\n            20640203,\n            20586318,\n            20586319,\n            20640207,\n            20640204,\n            20640205,\n            20640195,\n            20640193,\n            20640199,\n            20640197\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663064,\n        \"number\": \"4004663064\",\n        \"name\": \"Acme Catalog\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000008166,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1743023295016,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20586296,\n            20586297,\n            20586300,\n            20586290,\n            20586291,\n            20586288,\n            20615472,\n            20586289,\n            20586294,\n            20586295,\n            20586292,\n            20586293,\n            20615470,\n            20615468,\n            20926107,\n            20613778,\n            20613779,\n            20624144,\n            20621591,\n            20621589,\n            20626056,\n            20626057,\n            20613775,\n            20626048,\n            20626054,\n            20626052,\n            20626053,\n            20626043,\n            20626045,\n            20613746,\n            20613747,\n            20613751,\n            20626039,\n            20613749,\n            20614901,\n            20626037,\n            20626154,\n            20586347,\n            20626152,\n            20586345,\n            20626153,\n            20613743,\n            20613741,\n            20586338,\n            20626146,\n            20586339,\n            20586336,\n            20626144,\n            20586343,\n            20586340,\n            20626148,\n            20586341,\n            20586330,\n            20586331,\n            20586328,\n            20586329,\n            20586334,\n            20626142,\n            20586335,\n            20586332,\n            20626140,\n            20586333,\n            20586322,\n            20586323,\n            20635091,\n            20586320,\n            20586321,\n            20586326,\n            20586327,\n            20586324,\n            20586325,\n            20586314,\n            20586315,\n            20586312,\n            20586313,\n            20586318,\n            20586319,\n            20586316,\n            20629708,\n            20586317,\n            20586306,\n            20586310,\n            20743105,\n            21027389,\n            20586308,\n            20586309\n        ],\n        \"default\": true\n    },\n    {\n        \"id\": 4004676842,\n        \"number\": \"4004676842\",\n        \"name\": \"ToolDen Export\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1706625136440,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1707466248619,\n        \"update_user_name\": \"Super Admin\",\n        \"query_id\": \"8ba99a70-6f4a-42da-acba-f503641f9c40\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    }\n]"}],"_postman_id":"15e25e39-17db-4499-b464-84a68968721e"},{"name":"Update Product","id":"51017112-fef7-4298-8035-646a34653534","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"High Strength Sealant\",\r\n    \"number\":\"12345\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/:product_id/values","description":"<h3 id=\"update-product-values\">Update Product Values</h3>\n<p>This endpoint is used to update the values of a specific product.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products",":product_id","values"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Product ID</p>\n","type":"text/plain"},"type":"any","value":"{product_id}","key":"product_id"}]}},"response":[{"id":"40a51032-5677-45aa-a943-72bbfff60355","name":"Update Product Values","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\":\"High Strength Sealant\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products/:product_id/values","host":["https://api.catsy.com/v4"],"path":["products",":product_id","values"],"variable":[{"key":"product_id","value":"21562787","description":"Internal Product ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 17:30:06 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=ET22BphuoBv%2B%2BIeNmwSWO7srlKA9z7C1fULJYC%2FmDtz68zjTPbKyX%2BNDPszShjyay7hdanoYrjF35qSpUlPC1b9imIO4yRYxpNaP8j%2BwQd252hstLgCfDFbEVMPbyBQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933e9b7218b7f5ca-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2544&min_rtt=2379&rtt_var=1010&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2818&recv_bytes=946&delivery_rate=1217318&cwnd=251&unsent_bytes=0&cid=0d77a403bd613014&ts=1680&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 21562787,\n    \"assets\": [\n        {\n            \"id\": 4072585781,\n            \"size\": 141315,\n            \"width\": 650,\n            \"height\": 975,\n            \"filename\": \"1932588.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/1932588.jpg\",\n            \"create_user_id\": 4018007921,\n            \"create_date\": 1744991804658,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007921,\n            \"update_date\": 1745247716311,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072603404\n            ],\n            \"thumbnail_filename\": \"4072585781/1932588.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": 0.67,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072585781/1932588.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072585781/1932588.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_xl/4072585781/1932588.jpg\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072585781/1932588.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072585781/1932588.jpg\"\n            },\n            \"pinklilydemo_gid\": \"gid://shopify/MediaImage/36377546326243\",\n            \"pinklilydemo_url\": \"https://cdn.shopify.com/s/files/1/0731/8254/4099/files/1932588.jpg?v=1745081031\",\n            \"pinklilydemo_alt_text\": null,\n            \"description_a\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"title\": null,\n            \"s3_version\": \"Q_qjlFbWrMwJEXj5YJOdXF6xenkDm.lO\",\n            \"version\": 2,\n            \"tags\": null\n        },\n        {\n            \"id\": 4072585782,\n            \"size\": 133967,\n            \"width\": 650,\n            \"height\": 975,\n            \"filename\": \"19325822.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/19325822.jpg\",\n            \"create_user_id\": 4018007921,\n            \"create_date\": 1744991804658,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007921,\n            \"update_date\": 1745247722100,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072603404\n            ],\n            \"thumbnail_filename\": \"4072585782/19325822.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": 0.67,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072585782/19325822.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072585782/19325822.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_xl/4072585782/19325822.jpg\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072585782/19325822.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072585782/19325822.jpg\"\n            },\n            \"pinklilydemo_gid\": \"gid://shopify/MediaImage/36377546359011\",\n            \"pinklilydemo_url\": \"https://cdn.shopify.com/s/files/1/0731/8254/4099/files/19325822.jpg?v=1745081033\",\n            \"pinklilydemo_alt_text\": null,\n            \"description_a\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"title\": null,\n            \"s3_version\": \"mQcjZ.BvRXbHnGd9vTImqWrd1AugrUHT\",\n            \"version\": 2,\n            \"tags\": null\n        },\n        {\n            \"id\": 4072585783,\n            \"size\": 135849,\n            \"width\": 650,\n            \"height\": 975,\n            \"filename\": \"19325826.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/19325826.jpg\",\n            \"create_user_id\": 4018007921,\n            \"create_date\": 1744991804658,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007921,\n            \"update_date\": 1745247722906,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072603404\n            ],\n            \"thumbnail_filename\": \"4072585783/19325826.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": 0.67,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072585783/19325826.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072585783/19325826.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_xl/4072585783/19325826.jpg\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072585783/19325826.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072585783/19325826.jpg\"\n            },\n            \"pinklilydemo_gid\": \"gid://shopify/MediaImage/36377546424547\",\n            \"pinklilydemo_url\": \"https://cdn.shopify.com/s/files/1/0731/8254/4099/files/19325826.jpg?v=1745081034\",\n            \"pinklilydemo_alt_text\": null,\n            \"description_a\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"title\": null,\n            \"s3_version\": \"8uRkcEuN1cldVNM_GwdEKPB6Jr_nef4_\",\n            \"version\": 2,\n            \"tags\": null\n        },\n        {\n            \"id\": 4072585784,\n            \"size\": 144357,\n            \"width\": 650,\n            \"height\": 975,\n            \"filename\": \"19325823.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/19325823.jpg\",\n            \"create_user_id\": 4018007921,\n            \"create_date\": 1744991804658,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007921,\n            \"update_date\": 1745247735155,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072603404\n            ],\n            \"thumbnail_filename\": \"4072585784/19325823.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": 0.67,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072585784/19325823.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072585784/19325823.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_xl/4072585784/19325823.jpg\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072585784/19325823.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072585784/19325823.jpg\"\n            },\n            \"pinklilydemo_gid\": \"gid://shopify/MediaImage/36377546457315\",\n            \"pinklilydemo_url\": \"https://cdn.shopify.com/s/files/1/0731/8254/4099/files/19325823.jpg?v=1745081035\",\n            \"pinklilydemo_alt_text\": null,\n            \"description_a\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"title\": null,\n            \"s3_version\": \"KMhIyUB3K9wlD15UmiJGUb7IEVE3mRgt\",\n            \"version\": 2,\n            \"tags\": null\n        },\n        {\n            \"id\": 4072603437,\n            \"size\": 2615400,\n            \"width\": 1024,\n            \"height\": 1536,\n            \"filename\": \"Wash_Care_Instructions.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/Wash_Care_Instructions.png\",\n            \"create_user_id\": 4018007921,\n            \"create_date\": 1745251382842,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007921,\n            \"update_date\": 1745252902491,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072603437/ChatGPT Image Apr 21 2025 10_57_55 AM.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": 0.67,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072603437/ChatGPT+Image+Apr+21+2025+10_57_55+AM.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072603437/ChatGPT+Image+Apr+21+2025+10_57_55+AM.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_xl/4072603437/ChatGPT+Image+Apr+21+2025+10_57_55+AM.jpg\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_tn/4072603437/ChatGPT+Image+Apr+21+2025+10_57_55+AM.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.851/_lg/4072603437/ChatGPT+Image+Apr+21+2025+10_57_55+AM.jpg\"\n            },\n            \"pinklilydemo_gid\": \"gid://shopify/GenericFile/36386333393123\",\n            \"pinklilydemo_url\": \"\",\n            \"pinklilydemo_alt_text\": null,\n            \"description_a\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"title\": null,\n            \"s3_version\": \"XSvWmFzzSS7x44RmQGmEJPEULlxeObwN\",\n            \"version\": 1,\n            \"tags\": null\n        }\n    ],\n    \"create_date\": 1744920214342,\n    \"update_date\": 1745256604726,\n    \"create_user_id\": 4018007920,\n    \"update_user_id\": 4018007920,\n    \"create_user_name\": \"Catsy Administrator\",\n    \"update_user_name\": \"Catsy Administrator\",\n    \"collections\": [\n        4004681454\n    ],\n    \"child_item_count\": 4,\n    \"variant_skus\": [\n        \"193258lar\",\n        \"193258med\",\n        \"193258xs\",\n        \"193258sm\"\n    ],\n    \"completeness_score\": 100,\n    \"catsy$attribute_group_scores\": {\n        \"core\": 100,\n        \"marketing\": 100,\n        \"digital_assets\": 100\n    },\n    \"shoe_size\": null,\n    \"uhii_image_019\": null,\n    \"uhii_image_018\": null,\n    \"uhii_image_017\": null,\n    \"uhii_image_016\": null,\n    \"uhii_image_015\": null,\n    \"uhii_image_014\": null,\n    \"uhii_test_data_neckline\": null,\n    \"uhii_image_013\": null,\n    \"uhii_image_012\": null,\n    \"uhii_test_data_print\": \"Solid\",\n    \"clothing_size\": null,\n    \"uhii_image_011\": null,\n    \"uhii_image_021\": null,\n    \"number\": \"193258\",\n    \"uhii_image_020\": null,\n    \"price\": {\n        \"currency\": \"USD\",\n        \"amount\": 18.99\n    },\n    \"uhii_test_data_material\": null,\n    \"palette\": \"#008000\",\n    \"uhii_test_data_wash_and_care\": \"gid://shopify/GenericFile/36386333393123\",\n    \"uhii_seo_description\": null,\n    \"uhii_test_data_shoe_size\": null,\n    \"uhii_tax_code\": null,\n    \"uhii_custom_collections\": null,\n    \"uhii_image_009\": null,\n    \"uhii_default_image\": 4072585781,\n    \"uhii_image_008\": null,\n    \"uhii_tags\": [\n        \"BFEmployeeDiscount\",\n        \"Bodycon\",\n        \"Bridal\",\n        \"BridalGuest\",\n        \"BridalParty\",\n        \"Category:Dress\",\n        \"Clothing\",\n        \"Clothing/Dresses\",\n        \"Color:Green\",\n        \"DiscountCode\",\n        \"Dresses\",\n        \"Dresses/Midi Dresses\",\n        \"Dresses/Party And Cocktail Dresses\",\n        \"Dresses/Solid Dresses\",\n        \"Dressy\",\n        \"Dvn:B\",\n        \"EOYSale23\",\n        \"Final_Sale\",\n        \"Green\",\n        \"GreenDress\",\n        \"Oct 20\",\n        \"OWSSpring24\",\n        \"Print:Solid\",\n        \"Sale!\",\n        \"Season:Fall\",\n        \"Season:Spring\",\n        \"Season:Summer\",\n        \"Season:Winter\",\n        \"SeptClearance24\",\n        \"size_chart_clothing_new\",\n        \"Sleeve:Sleeveless\",\n        \"SolidDress\",\n        \"SolidGreenDress\",\n        \"Style:Midi Dress\",\n        \"ThanksgivingSale23\",\n        \"TopsDressApr25\",\n        \"Dress\",\n        \"Midi Dress\"\n    ],\n    \"uhii_test_data_palette\": \"#008000\",\n    \"uhii_image_007\": null,\n    \"uhii_image_006\": null,\n    \"uhii_image_005\": null,\n    \"uhii_image_004\": 4072585784,\n    \"uhii_image_003\": 4072585783,\n    \"uhii_image_002\": 4072585782,\n    \"uhii_image_010\": null,\n    \"uhii_seo_title\": null,\n    \"uhii_published_scope\": null,\n    \"sleeve_length\": \"Sleeveless\",\n    \"image_10\": null,\n    \"uhii_published_at\": null,\n    \"uhii_taxable\": null,\n    \"uhii_sku\": \"193258\",\n    \"uhii_vendor\": \"Pink Lily\",\n    \"image_14\": null,\n    \"image_13\": null,\n    \"uhii_inventory_policy\": null,\n    \"image_12\": null,\n    \"uhii_variant_image\": null,\n    \"image_11\": null,\n    \"image_17\": null,\n    \"uhii_image_039\": null,\n    \"image_16\": null,\n    \"uhii_image_038\": null,\n    \"image_15\": null,\n    \"uhii_image_037\": null,\n    \"uhii_image_036\": null,\n    \"uhii_weight\": null,\n    \"uhii_image_035\": null,\n    \"uhii_image_034\": null,\n    \"neckline\": null,\n    \"uhii_image_033\": null,\n    \"uhii_image_040\": null,\n    \"uhii_metafield_definitions\": null,\n    \"vendor\": \"Pink Lily\",\n    \"uhii_price\": 18.99,\n    \"catsy$option_attribute_keys\": [\n        \"clothing_size\"\n    ],\n    \"parent_sku\": null,\n    \"uhii_image_029\": null,\n    \"uhii_image_028\": null,\n    \"uhii_image_027\": null,\n    \"long_description\": \"<p>Details</p><div><div><ul><li>Turquoise Textured Midi Dress</li><li>Fabric has some stretch</li><li>Adjustable straps, slit on one side</li><li>Pair this dress with heels!<br></li><li>Lined</li><li>Size small from shoulder to hem: 52\\\"<br></li></ul><p>Material and Care</p></div><div><ul><li>100% polyester</li><li>Hand wash cold, lay flat to dry</li><li>Patterns may vary</li><li>Materials may have natural variations</li><li>Colors may vary from different viewing devices.</li></ul></div></div>\",\n    \"uhii_image_026\": null,\n    \"uhii_image_025\": null,\n    \"uhii_image_024\": null,\n    \"uhii_image_023\": null,\n    \"uhii_image_022\": null,\n    \"uhii_image_032\": null,\n    \"uhii_image_031\": null,\n    \"uhii_image_030\": null,\n    \"uhii_presentment_prices\": null,\n    \"uhii_inventory_management\": null,\n    \"uhii_compare_at_price\": null,\n    \"keywords\": [\n        \"BFEmployeeDiscount\",\n        \"Bodycon\",\n        \"Bridal\",\n        \"BridalGuest\",\n        \"BridalParty\",\n        \"Category:Dress\",\n        \"Clothing\",\n        \"Clothing/Dresses\",\n        \"Color:Green\",\n        \"DiscountCode\",\n        \"Dresses\",\n        \"Dresses/Midi Dresses\",\n        \"Dresses/Party And Cocktail Dresses\",\n        \"Dresses/Solid Dresses\",\n        \"Dressy\",\n        \"Dvn:B\",\n        \"EOYSale23\",\n        \"Final_Sale\",\n        \"Green\",\n        \"GreenDress\",\n        \"Oct 20\",\n        \"OWSSpring24\",\n        \"Print:Solid\",\n        \"Sale!\",\n        \"Season:Fall\",\n        \"Season:Spring\",\n        \"Season:Summer\",\n        \"Season:Winter\",\n        \"SeptClearance24\",\n        \"size_chart_clothing_new\",\n        \"Sleeve:Sleeveless\",\n        \"SolidDress\",\n        \"SolidGreenDress\",\n        \"Style:Midi Dress\",\n        \"ThanksgivingSale23\",\n        \"TopsDressApr25\"\n    ],\n    \"uhii_test_data_color\": \"Green\",\n    \"uhii_grams\": null,\n    \"image_9\": null,\n    \"image_8\": null,\n    \"compare_at_price\": {\n        \"currency\": \"USD\",\n        \"amount\": 60\n    },\n    \"uhii_metafields\": null,\n    \"image_5\": null,\n    \"image_4\": 4072585784,\n    \"uhii_product_type\": null,\n    \"image_7\": null,\n    \"image_6\": null,\n    \"brand_name\": null,\n    \"name\": \"High Strength Sealant\",\n    \"uhii_status\": null,\n    \"image_3\": 4072585783,\n    \"image_2\": 4072585782,\n    \"uhii_test_data_clothing_size\": null,\n    \"uhii_barcode\": null,\n    \"color\": \"Green\",\n    \"main_image\": 4072585781,\n    \"lifestyle_image\": null,\n    \"uhii_test_data_sleeve_length\": \"Sleeveless\",\n    \"uhii_handle\": \"high-strength-sealant\",\n    \"uhii_weight_unit\": null,\n    \"uhii_title\": \"High Strength Sealant\",\n    \"uhii_template_suffix\": null,\n    \"uhii_inventory_quantity\": null,\n    \"wash_and_care_instructions\": 4072603437,\n    \"uhii_body_html\": \"<p>Details</p><div><div><ul><li>Turquoise Textured Midi Dress</li><li>Fabric has some stretch</li><li>Adjustable straps, slit on one side</li><li>Pair this dress with heels!<br></li><li>Lined</li><li>Size small from shoulder to hem: 52\\\"<br></li></ul><p>Material and Care</p></div><div><ul><li>100% polyester</li><li>Hand wash cold, lay flat to dry</li><li>Patterns may vary</li><li>Materials may have natural variations</li><li>Colors may vary from different viewing devices.</li></ul></div></div>\",\n    \"print\": \"Solid\",\n    \"material\": null,\n    \"uhii_fulfillment_service\": null,\n    \"category\": {\n        \"level_1\": \"Dress\",\n        \"level_2\": \"Midi Dress\"\n    }\n}"}],"_postman_id":"51017112-fef7-4298-8035-646a34653534"},{"name":"Product Variants","id":"d4397882-a083-4968-86d7-733360e1bc62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/products/:product_id/variants","description":"<h3 id=\"retrieve-product-variants\">Retrieve Product Variants</h3>\n<p>This endpoint retrieves all variants for a specific variable product. It is used to access detailed information about each variant associated with a product, such as size, color, or any other attributes configured for variation.</p>\n<h4 id=\"query-parameters\">Query Parameters</h4>\n<ul>\n<li>attribute_ids_only (boolean) - When set to true, the response will only include the attribute IDs for each variant instead of full variant details.</li>\n</ul>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<ul>\n<li><code>product_id</code> (integer) - The unique identifier of the product.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products",":product_id","variants"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>When set to true, the response will only include the attribute IDs for each variant instead of full variant details.</p>\n","type":"text/plain"},"key":"attribute_ids_only","value":""}],"variable":[{"description":{"content":"<p>Internal Product ID</p>\n","type":"text/plain"},"type":"any","value":"{product_id}","key":"product_id"}]}},"response":[{"id":"f97e61c5-ec02-49cc-a9ef-da953743e2b3","name":"List Product Variants","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/products/:product_id/variants","host":["https://api.catsy.com/v4"],"path":["products",":product_id","variants"],"query":[{"key":"attribute_ids_only","value":"","description":"When set to true, the response will only include the attribute IDs for each variant instead of full variant details.","disabled":true}],"variable":[{"key":"product_id","value":"17412003","description":"Internal Product ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 17:48:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=bi2HdTlVT2sdDy%2B%2FPpjY3rDYUVm6rNqRVCu9dR9e%2FzLAeVhLkc9eWKbkinXHbh9lXJDanCwL4fYAeWCU%2B6vdVVqcTl%2FYzXX5T24AONEFXDf4A91H5zY5ZvtTiL7vruE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933eb6166ef9c97b-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2360&min_rtt=2263&rtt_var=918&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1111&delivery_rate=639858&cwnd=240&unsent_bytes=0&cid=5a7e87e313026ee2&ts=624&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"attributes\": [\n        {\n            \"id\": 20586264,\n            \"name\": \"SKU\",\n            \"key\": \"number\",\n            \"dataType\": \"STRING\",\n            \"editor\": \"DEFAULT\",\n            \"uniqueness\": true,\n            \"validationVersion\": \"XSD\",\n            \"documentation\": \"String attribute.\",\n            \"conditionalAttributeKeys\": [],\n            \"updateUserName\": \"Super Admin\",\n            \"createDate\": 1611153367919,\n            \"createUserName\": \"Catsy Administrator\",\n            \"updateDate\": 1684768512687,\n            \"localizedId\": 20586324,\n            \"localeId\": 4000001089,\n            \"locale\": \"global\",\n            \"localAttributes\": [\n                {\n                    \"id\": 20586324,\n                    \"name\": \"SKU\",\n                    \"key\": \"number\",\n                    \"dataType\": \"STRING\",\n                    \"localizedId\": 20586324,\n                    \"localeId\": 4000001089,\n                    \"locale\": \"global\",\n                    \"parentId\": 20586264,\n                    \"parentKey\": \"number\",\n                    \"picklistId\": null,\n                    \"picklistType\": null,\n                    \"picklistValues\": [],\n                    \"element\": {\n                        \"minLength\": \"1\",\n                        \"maxLength\": \"4000\"\n                    }\n                }\n            ],\n            \"parentId\": 20586264,\n            \"parentKey\": \"number\",\n            \"evaluation\": {\n                \"specificity\": \"MODEL\",\n                \"engine\": \"NONE\",\n                \"editor\": \"NONE\",\n                \"formula\": null,\n                \"enhancedContentTemplateId\": null,\n                \"display\": null,\n                \"mappedKey\": null,\n                \"referencedKeys\": null\n            },\n            \"conditions\": {},\n            \"picklistId\": null,\n            \"picklistType\": null,\n            \"picklistValues\": [],\n            \"element\": {\n                \"minLength\": \"1\",\n                \"maxLength\": \"4000\"\n            },\n            \"multipartElements\": [],\n            \"createuserId\": 4018007130,\n            \"updateuserId\": 4018007131\n        },\n        {\n            \"id\": 20586268,\n            \"name\": \"PSI\",\n            \"key\": \"psi\",\n            \"dataType\": \"STRING\",\n            \"editor\": \"DEFAULT\",\n            \"validationVersion\": \"XSD\",\n            \"documentation\": \"PSI\",\n            \"conditionalAttributeKeys\": [],\n            \"updateUserName\": \"Super Admin\",\n            \"createDate\": 1611153367919,\n            \"createUserName\": \"Catsy Administrator\",\n            \"updateDate\": 1684768512687,\n            \"localizedId\": 20586328,\n            \"localeId\": 4000001089,\n            \"locale\": \"global\",\n            \"localAttributes\": [\n                {\n                    \"id\": 20586328,\n                    \"name\": \"PSI\",\n                    \"key\": \"psi\",\n                    \"dataType\": \"STRING\",\n                    \"localizedId\": 20586328,\n                    \"localeId\": 4000001089,\n                    \"locale\": \"global\",\n                    \"parentId\": 20586268,\n                    \"parentKey\": \"psi\",\n                    \"picklistId\": null,\n                    \"picklistType\": null,\n                    \"picklistValues\": [],\n                    \"element\": {\n                        \"maxLength\": \"4000\"\n                    }\n                }\n            ],\n            \"parentId\": 20586268,\n            \"parentKey\": \"psi\",\n            \"evaluation\": {\n                \"specificity\": \"MODEL\",\n                \"engine\": \"NONE\",\n                \"editor\": \"NONE\",\n                \"formula\": null,\n                \"enhancedContentTemplateId\": null,\n                \"display\": null,\n                \"mappedKey\": null,\n                \"referencedKeys\": null\n            },\n            \"conditions\": {},\n            \"picklistId\": null,\n            \"picklistType\": null,\n            \"picklistValues\": [],\n            \"element\": {\n                \"maxLength\": \"4000\"\n            },\n            \"multipartElements\": [],\n            \"createuserId\": 4018007130,\n            \"updateuserId\": 4018007131\n        },\n        {\n            \"id\": 20926107,\n            \"name\": \"No. Of Stages\",\n            \"key\": \"no_of_stages\",\n            \"dataType\": \"PICKLIST\",\n            \"editor\": \"DEFAULT\",\n            \"searchFacet\": true,\n            \"validationVersion\": \"XSD\",\n            \"conditionalAttributeKeys\": [],\n            \"updateUserName\": \"Super Admin\",\n            \"createDate\": 1659538853649,\n            \"createUserName\": \"Super Admin\",\n            \"updateDate\": 1684768512687,\n            \"localizedId\": 20926107,\n            \"localeId\": 4000001089,\n            \"locale\": \"global\",\n            \"localAttributes\": [\n                {\n                    \"id\": 20926107,\n                    \"name\": \"No. Of Stages\",\n                    \"key\": \"no_of_stages\",\n                    \"dataType\": \"PICKLIST\",\n                    \"localizedId\": 20926107,\n                    \"localeId\": 4000001089,\n                    \"locale\": \"global\",\n                    \"parentId\": 20926107,\n                    \"parentKey\": \"no_of_stages\",\n                    \"picklistId\": 106587,\n                    \"picklistType\": \"DROPDOWN\",\n                    \"picklistValues\": [\n                        {\n                            \"id\": 5609954,\n                            \"value\": \"2 Stage\",\n                            \"abbreviation\": \"ABCD\",\n                            \"assetId\": 4070863022,\n                            \"defaultOption\": false,\n                            \"assetThumbnailUrl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                            \"asset\": {\n                                \"transformations\": [\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 65,\n                                        \"use\": \"_tn\",\n                                        \"transformationFilename\": \"4070863022/comp-1.jpg\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                                        \"size\": null\n                                    },\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 303,\n                                        \"use\": \"_lg\",\n                                        \"transformationFilename\": \"4070863022/comp-1.jpg\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                                        \"size\": null\n                                    },\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 545,\n                                        \"use\": \"_xl\",\n                                        \"transformationFilename\": \"4070863022/8052-Main.jpg\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863022/8052-Main.jpg\",\n                                        \"size\": 116948\n                                    },\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 888,\n                                        \"use\": \"_bc\",\n                                        \"transformationFilename\": \"4070863022/8052-Main.jpg\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863022/8052-Main.jpg\",\n                                        \"size\": 165618\n                                    },\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 889,\n                                        \"use\": \"_elicon\",\n                                        \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863022/8052-Main.png\",\n                                        \"size\": 13026\n                                    },\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 890,\n                                        \"use\": \"_eldet\",\n                                        \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863022/8052-Main.png\",\n                                        \"size\": 90713\n                                    },\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 891,\n                                        \"use\": \"_ellg\",\n                                        \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863022/8052-Main.png\",\n                                        \"size\": 446461\n                                    },\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 892,\n                                        \"use\": \"_elpr\",\n                                        \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863022/8052-Main.png\",\n                                        \"size\": 446461\n                                    },\n                                    {\n                                        \"assetId\": 4070863022,\n                                        \"transformationId\": 893,\n                                        \"use\": \"_elorig\",\n                                        \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863022/8052-Main.png\",\n                                        \"size\": 462420\n                                    }\n                                ],\n                                \"id\": 4070863022,\n                                \"size\": 121103,\n                                \"private\": false,\n                                \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                                \"create_username\": \"Super Admin\",\n                                \"update_username\": \"Super Admin\",\n                                \"width\": 800,\n                                \"height\": 800,\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/8052-Main.jpeg\",\n                                \"filename\": \"8052-Main.jpeg\",\n                                \"updateuser_id\": 4018007131,\n                                \"update_date\": 1744204629287,\n                                \"thumbnail_filename\": \"4070863022/comp-1.jpg\",\n                                \"createuser_id\": 4018007131,\n                                \"create_date\": 1705529945511,\n                                \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                                \"aspect_ratio\": 1,\n                                \"asset_type\": \"IMAGE\",\n                                \"metadata_exif\": [\n                                    {\n                                        \"name\": \"JPEG\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Compression Type\",\n                                                \"description\": \"Baseline\",\n                                                \"type\": \"0xfffffffd\"\n                                            },\n                                            {\n                                                \"name\": \"Data Precision\",\n                                                \"description\": \"8 bits\",\n                                                \"type\": \"0x0000\"\n                                            },\n                                            {\n                                                \"name\": \"Image Height\",\n                                                \"description\": \"800 pixels\",\n                                                \"type\": \"0x0001\"\n                                            },\n                                            {\n                                                \"name\": \"Image Width\",\n                                                \"description\": \"800 pixels\",\n                                                \"type\": \"0x0003\"\n                                            },\n                                            {\n                                                \"name\": \"Number of Components\",\n                                                \"description\": \"3\",\n                                                \"type\": \"0x0005\"\n                                            },\n                                            {\n                                                \"name\": \"Component 1\",\n                                                \"description\": \"Y component: Quantization table 0, Sampling factors 2 horiz/2 vert\",\n                                                \"type\": \"0x0006\"\n                                            },\n                                            {\n                                                \"name\": \"Component 2\",\n                                                \"description\": \"Cb component: Quantization table 1, Sampling factors 1 horiz/1 vert\",\n                                                \"type\": \"0x0007\"\n                                            },\n                                            {\n                                                \"name\": \"Component 3\",\n                                                \"description\": \"Cr component: Quantization table 1, Sampling factors 1 horiz/1 vert\",\n                                                \"type\": \"0x0008\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"JFIF\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Version\",\n                                                \"description\": \"1.1\",\n                                                \"type\": \"0x0005\"\n                                            },\n                                            {\n                                                \"name\": \"Resolution Units\",\n                                                \"description\": \"inch\",\n                                                \"type\": \"0x0007\"\n                                            },\n                                            {\n                                                \"name\": \"X Resolution\",\n                                                \"description\": \"72 dots\",\n                                                \"type\": \"0x0008\"\n                                            },\n                                            {\n                                                \"name\": \"Y Resolution\",\n                                                \"description\": \"72 dots\",\n                                                \"type\": \"0x000a\"\n                                            },\n                                            {\n                                                \"name\": \"Thumbnail Width Pixels\",\n                                                \"description\": \"0\",\n                                                \"type\": \"0x000c\"\n                                            },\n                                            {\n                                                \"name\": \"Thumbnail Height Pixels\",\n                                                \"description\": \"0\",\n                                                \"type\": \"0x000d\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"Exif IFD0\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Orientation\",\n                                                \"description\": \"Top, left side (Horizontal / normal)\",\n                                                \"type\": \"0x0112\"\n                                            },\n                                            {\n                                                \"name\": \"X Resolution\",\n                                                \"description\": \"72 dots per inch\",\n                                                \"type\": \"0x011a\"\n                                            },\n                                            {\n                                                \"name\": \"Y Resolution\",\n                                                \"description\": \"72 dots per inch\",\n                                                \"type\": \"0x011b\"\n                                            },\n                                            {\n                                                \"name\": \"Resolution Unit\",\n                                                \"description\": \"Inch\",\n                                                \"type\": \"0x0128\"\n                                            },\n                                            {\n                                                \"name\": \"Software\",\n                                                \"description\": \"Adobe Photoshop CS6 (Windows)\",\n                                                \"type\": \"0x0131\"\n                                            },\n                                            {\n                                                \"name\": \"Date/Time\",\n                                                \"description\": \"2015:12:14 11:27:23\",\n                                                \"type\": \"0x0132\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"Exif SubIFD\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Color Space\",\n                                                \"description\": \"sRGB\",\n                                                \"type\": \"0xa001\"\n                                            },\n                                            {\n                                                \"name\": \"Exif Image Width\",\n                                                \"description\": \"1200 pixels\",\n                                                \"type\": \"0xa002\"\n                                            },\n                                            {\n                                                \"name\": \"Exif Image Height\",\n                                                \"description\": \"1200 pixels\",\n                                                \"type\": \"0xa003\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"Exif Thumbnail\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Compression\",\n                                                \"description\": \"JPEG (old-style)\",\n                                                \"type\": \"0x0103\"\n                                            },\n                                            {\n                                                \"name\": \"X Resolution\",\n                                                \"description\": \"72 dots per inch\",\n                                                \"type\": \"0x011a\"\n                                            },\n                                            {\n                                                \"name\": \"Y Resolution\",\n                                                \"description\": \"72 dots per inch\",\n                                                \"type\": \"0x011b\"\n                                            },\n                                            {\n                                                \"name\": \"Resolution Unit\",\n                                                \"description\": \"Inch\",\n                                                \"type\": \"0x0128\"\n                                            },\n                                            {\n                                                \"name\": \"Thumbnail Offset\",\n                                                \"description\": \"302 bytes\",\n                                                \"type\": \"0x0201\"\n                                            },\n                                            {\n                                                \"name\": \"Thumbnail Length\",\n                                                \"description\": \"3684 bytes\",\n                                                \"type\": \"0x0202\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"XMP\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"XMP Value Count\",\n                                                \"description\": \"45\",\n                                                \"type\": \"0xffff\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"ICC Profile\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Profile Size\",\n                                                \"description\": \"3144\",\n                                                \"type\": \"0x0000\"\n                                            },\n                                            {\n                                                \"name\": \"CMM Type\",\n                                                \"description\": \"Lino\",\n                                                \"type\": \"0x0004\"\n                                            },\n                                            {\n                                                \"name\": \"Version\",\n                                                \"description\": \"2.1.0\",\n                                                \"type\": \"0x0008\"\n                                            },\n                                            {\n                                                \"name\": \"Class\",\n                                                \"description\": \"Display Device\",\n                                                \"type\": \"0x000c\"\n                                            },\n                                            {\n                                                \"name\": \"Color space\",\n                                                \"description\": \"RGB \",\n                                                \"type\": \"0x0010\"\n                                            },\n                                            {\n                                                \"name\": \"Profile Connection Space\",\n                                                \"description\": \"XYZ \",\n                                                \"type\": \"0x0014\"\n                                            },\n                                            {\n                                                \"name\": \"Profile Date/Time\",\n                                                \"description\": \"1998:02:09 06:49:00\",\n                                                \"type\": \"0x0018\"\n                                            },\n                                            {\n                                                \"name\": \"Signature\",\n                                                \"description\": \"acsp\",\n                                                \"type\": \"0x0024\"\n                                            },\n                                            {\n                                                \"name\": \"Primary Platform\",\n                                                \"description\": \"Microsoft Corporation\",\n                                                \"type\": \"0x0028\"\n                                            },\n                                            {\n                                                \"name\": \"Device manufacturer\",\n                                                \"description\": \"IEC \",\n                                                \"type\": \"0x0030\"\n                                            },\n                                            {\n                                                \"name\": \"Device model\",\n                                                \"description\": \"sRGB\",\n                                                \"type\": \"0x0034\"\n                                            },\n                                            {\n                                                \"name\": \"Rendering Intent\",\n                                                \"description\": \"Media-Relative Colorimetric\",\n                                                \"type\": \"0x0040\"\n                                            },\n                                            {\n                                                \"name\": \"XYZ values\",\n                                                \"description\": \"0.964 1 0.825\",\n                                                \"type\": \"0x0044\"\n                                            },\n                                            {\n                                                \"name\": \"Tag Count\",\n                                                \"description\": \"17\",\n                                                \"type\": \"0x0080\"\n                                            },\n                                            {\n                                                \"name\": \"Profile Copyright\",\n                                                \"description\": \"Copyright (c) 1998 Hewlett-Packard Company\",\n                                                \"type\": \"0x63707274\"\n                                            },\n                                            {\n                                                \"name\": \"Profile Description\",\n                                                \"description\": \"sRGB IEC61966-2.1\",\n                                                \"type\": \"0x64657363\"\n                                            },\n                                            {\n                                                \"name\": \"Media White Point\",\n                                                \"description\": \"(0.9505, 1, 1.0891)\",\n                                                \"type\": \"0x77747074\"\n                                            },\n                                            {\n                                                \"name\": \"Media Black Point\",\n                                                \"description\": \"(0, 0, 0)\",\n                                                \"type\": \"0x626b7074\"\n                                            },\n                                            {\n                                                \"name\": \"Red Colorant\",\n                                                \"description\": \"(0.4361, 0.2225, 0.0139)\",\n                                                \"type\": \"0x7258595a\"\n                                            },\n                                            {\n                                                \"name\": \"Green Colorant\",\n                                                \"description\": \"(0.3851, 0.7169, 0.0971)\",\n                                                \"type\": \"0x6758595a\"\n                                            },\n                                            {\n                                                \"name\": \"Blue Colorant\",\n                                                \"description\": \"(0.1431, 0.0606, 0.7141)\",\n                                                \"type\": \"0x6258595a\"\n                                            },\n                                            {\n                                                \"name\": \"Device Mfg Description\",\n                                                \"description\": \"IEC http://www.iec.ch\",\n                                                \"type\": \"0x646d6e64\"\n                                            },\n                                            {\n                                                \"name\": \"Device Model Description\",\n                                                \"description\": \"IEC 61966-2.1 Default RGB colour space - sRGB\",\n                                                \"type\": \"0x646d6464\"\n                                            },\n                                            {\n                                                \"name\": \"Viewing Conditions Description\",\n                                                \"description\": \"Reference Viewing Condition in IEC61966-2.1\",\n                                                \"type\": \"0x76756564\"\n                                            },\n                                            {\n                                                \"name\": \"Viewing Conditions\",\n                                                \"description\": \"view (0x76696577): 36 bytes\",\n                                                \"type\": \"0x76696577\"\n                                            },\n                                            {\n                                                \"name\": \"Luminance\",\n                                                \"description\": \"(76.0365, 80, 87.1246)\",\n                                                \"type\": \"0x6c756d69\"\n                                            },\n                                            {\n                                                \"name\": \"Measurement\",\n                                                \"description\": \"1931 2° Observer, Backing (0, 0, 0), Geometry Unknown, Flare 1%, Illuminant D65\",\n                                                \"type\": \"0x6d656173\"\n                                            },\n                                            {\n                                                \"name\": \"Technology\",\n                                                \"description\": \"CRT \",\n                                                \"type\": \"0x74656368\"\n                                            },\n                                            {\n                                                \"name\": \"Red TRC\",\n                                                \"description\": \"0.0, 0.0000763, 0.0001526, 0.0002289, 0.0003052, 0.0003815, 0.0004578, 0.0005341, 0.0006104, 0.0006867, 0.000763, 0.0008392, 0.0009003, 0.0009766, 0.0010529, 0.0011292, 0.0012055, 0.0012818, 0.0013581, 0.0014343, 0.0015106, 0.0015869, 0.0016632, 0.0017395, 0.0018158, 0.0018921, 0.0019684, 0.0020447, 0.002121, 0.0021973, 0.0022736, 0.0023499, 0.0024262, 0.0025025, 0.0025788, 0.0026551, 0.0027161, 0.0027924, 0.0028687, 0.002945, 0.0030213, 0.0030976, 0.0031739, 0.0032502, 0.0033417, 0.003418, 0.0034943, 0.0035859, 0.0036622, 0.0037537, 0.00383, 0.0039216, 0.0040131, 0.0041047, 0.0041962, 0.0042878, 0.0043793, 0.0044709, 0.0045624, 0.0046693, 0.0047608, 0.0048524, 0.0049592, 0.005066, 0.0051575, 0.0052644, 0.0053712, 0.005478, 0.0055848, 0.0056916, 0.0057984, 0.0059052, 0.0060273, 0.0061341, 0.0062562, 0.006363, 0.0064851, 0.0066072, 0.0067292, 0.0068513, 0.0069734, 0.0070954, 0.0072175, 0.0073396, 0.0074617, 0.007599, 0.0077211, 0.0078584, 0.0079957, 0.0081178, 0.0082551, 0.0083925, 0.0085298, 0.0086671, 0.0088045, 0.008957, 0.0090944, 0.0092317, 0.0093843, 0.0095369, 0.0096742, 0.0098268, 0.0099794, 0.010132, 0.0102846, 0.0104372, 0.0105898, 0.0107576, 0.0109102, 0.0110628, 0.0112306, 0.0113985, 0.0115511, 0.0117189, 0.0118868, 0.0120546, 0.0122225, 0.0124056, 0.0125734, 0.0127413, 0.0129244, 0.0130922, 0.0132753, 0.0134585, 0.0136416, 0.0138247, 0.0140078, 0.0141909, 0.014374, 0.0145571, 0.0147555, 0.0149386, 0.0151369, 0.0153201, 0.0155184, 0.0157168, 0.0159152, 0.0161135, 0.0163119, 0.0165255, 0.0167239, 0.0169223, 0.0171359, 0.0173495, 0.0175479, 0.0177615, 0.0179751, 0.0181888, 0.0184024, 0.018616, 0.0188449, 0.0190585, 0.0192874, 0.019501, 0.0197299, 0.0199588, 0.0201877, 0.0204166, 0.0206455, 0.0208743, 0.0211032, 0.0213474, 0.0215763, 0.0218204, 0.0220645, 0.0222934, 0.0225376, 0.0227817, 0.0230259, 0.0232853, 0.0235294, 0.0237736, 0.024033, 0.0242771, 0.0245365, 0.0247959, 0.0250553, 0.0253147, 0.0255741, 0.0258335, 0.0261082, 0.0263676, 0.026627, 0.0269017, 0.0271763, 0.027451, 0.0277256, 0.0280003, 0.028275, 0.0285496, 0.0288243, 0.0291142, 0.0293889, 0.0296788, 0.0299687, 0.0302586, 0.0305486, 0.0308385, 0.0311284, 0.0314183, 0.0317235, 0.0320134, 0.0323186, 0.0326238, 0.032929, 0.0332341, 0.0335393, 0.0338445, 0.0341497, 0.0344549, 0.0347753, 0.0350805, 0.0354009, 0.0357214, 0.0360418, 0.0363622, 0.0366827, 0.0370031, 0.0373388, 0.0376593, 0.037995, 0.0383154, 0.0386511, 0.0389868, 0.0393225, 0.0396582, 0.0399939, 0.0403449, 0.0406806, 0.0410315, 0.0413825, 0.0417182, 0.0420691, 0.0424201, 0.042771, 0.0431373, 0.0434882, 0.0438392, 0.0442054, 0.0445716, 0.0449226, 0.0452888, 0.045655, 0.0460212, 0.0464027, 0.0467689, 0.0471504, 0.0475166, 0.0478981, 0.0482795, 0.048661, 0.0490425, 0.049424, 0.0498054, 0.0501869, 0.0505837, 0.0509804, 0.0513619, 0.0517586, 0.0521553, 0.0525521, 0.0529488, 0.0533608, 0.0537575, 0.0541695, 0.0545663, 0.0549783, 0.0553902, 0.0558022, 0.0562142, 0.0566262, 0.0570535, 0.0574655, 0.0578927, 0.05832, 0.058732, 0.0591592, 0.0595865, 0.060029, 0.0604562, 0.0608835, 0.061326, 0.0617533, 0.0621958, 0.0626383, 0.0630808, 0.0635233, 0.0639811, 0.0644236, 0.0648661, 0.0653239, 0.0657816, 0.0662394, 0.0666972, 0.067155, 0.0676127, 0.0680705, 0.0685435, 0.0690013, 0.0694743, 0.0699474, 0.0704204, 0.0708934, 0.0713664, 0.0718395, 0.0723278, 0.0728008, 0.0732891, 0.0737774, 0.0742657, 0.0747539, 0.0752422, 0.0757305, 0.0762188, 0.0767224, 0.0772259, 0.0777142, 0.0782177, 0.0787213, 0.0792401, 0.0797436, 0.0802472, 0.080766, 0.0812696, 0.0817884, 0.0823072, 0.082826, 0.0833448, 0.0838636, 0.0843977, 0.0849165, 0.0854505, 0.0859846, 0.0865187, 0.0870527, 0.0875868, 0.0881209, 0.0886549, 0.0892042, 0.0897536, 0.0902876, 0.090837, 0.0913863, 0.0919356, 0.0925002, 0.0930495, 0.0936141, 0.0941634, 0.094728, 0.0952926, 0.0958572, 0.0964218, 0.0970016, 0.0975662, 0.098146, 0.0987106, 0.0992905, 0.0998703, 0.1004501, 0.10103, 0.1016251, 0.1022049, 0.1028, 0.1033799, 0.103975, 0.1045701, 0.1051652, 0.1057755, 0.1063706, 0.106981, 0.1075761, 0.1081865, 0.1087968, 0.1094072, 0.1100175, 0.1106279, 0.1112535, 0.1118639, 0.1124895, 0.1131151, 0.1137407, 0.1143664, 0.114992, 0.1156176, 0.1162585, 0.1168841, 0.117525, 0.1181659, 0.1188067, 0.1194476, 0.1200885, 0.1207446, 0.1213855, 0.1220417, 0.1226978, 0.1233539, 0.1240101, 0.1246662, 0.1253223, 0.1259937, 0.1266499, 0.1273213, 0.1279927, 0.1286641, 0.1293355, 0.1300069, 0.1306935, 0.1313649, 0.1320516, 0.1327382, 0.1334096, 0.1341115, 0.1347982, 0.1354849, 0.1361868, 0.1368734, 0.1375753, 0.1382773, 0.1389792, 0.1396811, 0.140383, 0.1411002, 0.1418021, 0.1425193, 0.1432364, 0.1439536, 0.1446708, 0.145388, 0.1461204, 0.1468376, 0.14757, 0.1483024, 0.1490349, 0.1497673, 0.1504997, 0.1512322, 0.1519799, 0.1527123, 0.15346, 0.1542077, 0.1549554, 0.1557031, 0.1564508, 0.1572137, 0.1579767, 0.1587243, 0.1594873, 0.1602502, 0.1610132, 0.1617914, 0.1625544, 0.1633326, 0.1640955, 0.1648737, 0.1656519, 0.1664302, 0.1672236, 0.1680018, 0.1687953, 0.1695735, 0.170367, 0.1711604, 0.1719539, 0.1727474, 0.1735561, 0.1743496, 0.1751583, 0.175967, 0.1767758, 0.1775845, 0.1783932, 0.1792172, 0.1800259, 0.1808499, 0.1816739, 0.1824826, 0.1833219, 0.1841459, 0.1849699, 0.1858091, 0.1866331, 0.1874723, 0.1883116, 0.1891508, 0.1900053, 0.1908446, 0.1916838, 0.1925383, 0.1933928, 0.1942473, 0.1951019, 0.1959564, 0.1968261, 0.1976806, 0.1985504, 0.1994202, 0.2002899, 0.2011597, 0.2020294, 0.2028992, 0.2037842, 0.2046693, 0.205539, 0.206424, 0.2073243, 0.2082094, 0.2090944, 0.2099947, 0.2108949, 0.21178, 0.2126802, 0.2135958, 0.2144961, 0.2153964, 0.2163119, 0.2172274, 0.2181277, 0.2190585, 0.2199741, 0.2208896, 0.2218051, 0.2227359, 0.2236667, 0.2245975, 0.2255283, 0.2264591, 0.2273899, 0.228336, 0.2292821, 0.2302129, 0.2311589, 0.232105, 0.2330663, 0.2340124, 0.2349737, 0.2359197, 0.2368811, 0.2378424, 0.2388037, 0.239765, 0.2407416, 0.2417029, 0.2426795, 0.2436561, 0.2446326, 0.2456092, 0.2466011, 0.2475776, 0.2485695, 0.249546, 0.2505379, 0.2515297, 0.2525368, 0.2535286, 0.2545357, 0.2555276, 0.2565347, 0.2575418, 0.2585489, 0.259556, 0.2605783, 0.2615854, 0.2626078, 0.2636301, 0.2646525, 0.2656748, 0.2667124, 0.2677348, 0.2687724, 0.26981, 0.2708324, 0.2718853, 0.2729229, 0.2739605, 0.2750134, 0.276051, 0.2771038, 0.2781567, 0.2792248, 0.2802777, 0.2813306, 0.2823987, 0.2834668, 0.284535, 0.2856031, 0.2866712, 0.2877394, 0.2888228, 0.2899062, 0.2909743, 0.2920577, 0.2931563, 0.2942397, 0.2953231, 0.2964218, 0.2975204, 0.2986191, 0.2997177, 0.3008164, 0.301915, 0.3030289, 0.3041428, 0.3052567, 0.3063706, 0.3074846, 0.3085985, 0.3097124, 0.3108415, 0.3119707, 0.3130999, 0.314229, 0.3153582, 0.3165026, 0.3176318, 0.3187762, 0.3199207, 0.3210651, 0.3222095, 0.3233539, 0.3245136, 0.3256733, 0.3268177, 0.3279774, 0.3291371, 0.330312, 0.3314717, 0.3326467, 0.3338216, 0.3349966, 0.3361715, 0.3373465, 0.3385214, 0.3397116, 0.3408865, 0.3420768, 0.343267, 0.3444724, 0.3456626, 0.3468528, 0.3480583, 0.3492638, 0.3504692, 0.3516747, 0.3528801, 0.3541009, 0.3553063, 0.356527, 0.3577478, 0.3589685, 0.3601892, 0.3614252, 0.3626459, 0.3638819, 0.3651179, 0.3663539, 0.3675898, 0.3688411, 0.3700771, 0.3713283, 0.3725795, 0.3738308, 0.375082, 0.3763333, 0.3775998, 0.378851, 0.3801175, 0.381384, 0.3826505, 0.3839322, 0.3851987, 0.3864805, 0.387747, 0.3890288, 0.3903105, 0.3916075, 0.3928893, 0.3941863, 0.3954681, 0.3967651, 0.3980621, 0.3993744, 0.4006714, 0.4019837, 0.4032807, 0.404593, 0.4059052, 0.4072175, 0.4085451, 0.4098573, 0.4111849, 0.4125124, 0.4138399, 0.4151675, 0.416495, 0.4178378, 0.4191806, 0.4205234, 0.4218662, 0.423209, 0.4245518, 0.4259098, 0.4272526, 0.4286107, 0.4299687, 0.4313268, 0.4326848, 0.4340581, 0.4354314, 0.4367895, 0.4381628, 0.4395514, 0.4409247, 0.442298, 0.4436866, 0.4450752, 0.4464637, 0.4478523, 0.4492409, 0.4506447, 0.4520333, 0.4534371, 0.4548409, 0.4562448, 0.4576486, 0.4590677, 0.4604715, 0.4618906, 0.4633097, 0.4647288, 0.4661631, 0.4675822, 0.4690166, 0.4704356, 0.47187, 0.4733043, 0.4747539, 0.4761883, 0.4776379, 0.4790875, 0.4805371, 0.4819867, 0.4834363, 0.4848859, 0.4863508, 0.4878157, 0.4892805, 0.4907454, 0.4922103, 0.4936904, 0.4951553, 0.4966354, 0.4981155, 0.4995956, 0.501091, 0.5025711, 0.5040665, 0.5055467, 0.507042, 0.5085527, 0.5100481, 0.5115435, 0.5130541, 0.5145647, 0.5160754, 0.517586, 0.5190967, 0.5206226, 0.5221485, 0.5236591, 0.525185, 0.5267262, 0.5282521, 0.529778, 0.5313191, 0.5328603, 0.5344015, 0.5359426, 0.537499, 0.5390402, 0.5405966, 0.542153, 0.5437095, 0.5452659, 0.5468223, 0.548394, 0.5499657, 0.5515373, 0.553109, 0.5546807, 0.5562524, 0.5578393, 0.5594263, 0.5610132, 0.5626001, 0.5641871, 0.565774, 0.5673762, 0.5689784, 0.5705806, 0.5721828, 0.573785, 0.5754025, 0.5770047, 0.5786221, 0.5802396, 0.581857, 0.5834897, 0.5851072, 0.5867399, 0.5883726, 0.5900053, 0.5916381, 0.5932708, 0.5949187, 0.5965667, 0.5982147, 0.5998627, 0.6015106, 0.6031586, 0.6048219, 0.6064851, 0.6081483, 0.6098116, 0.6114748, 0.6131533, 0.6148165, 0.616495, 0.6181735, 0.619852, 0.6215457, 0.6232242, 0.624918, 0.6266117, 0.6283055, 0.6299992, 0.631693, 0.633402, 0.635111, 0.63682, 0.638529, 0.640238, 0.6419471, 0.6436713, 0.6453956, 0.6471199, 0.6488441, 0.6505684, 0.6523079, 0.6540322, 0.6557717, 0.6575113, 0.6592508, 0.6610056, 0.6627451, 0.6644999, 0.6662547, 0.6680095, 0.6697642, 0.6715343, 0.6732891, 0.6750591, 0.6768292, 0.6785992, 0.6803845, 0.6821546, 0.6839399, 0.6857252, 0.6875105, 0.6892958, 0.6910811, 0.6928817, 0.6946822, 0.6964675, 0.6982834, 0.7000839, 0.7018845, 0.7037003, 0.7055161, 0.707332, 0.7091478, 0.7109636, 0.7127947, 0.7146105, 0.7164416, 0.7182727, 0.720119, 0.7219501, 0.7237964, 0.7256275, 0.7274739, 0.7293355, 0.7311818, 0.7330282, 0.7348898, 0.7367514, 0.738613, 0.7404746, 0.7423514, 0.744213, 0.7460899, 0.7479667, 0.7498436, 0.7517205, 0.7536126, 0.7554894, 0.7573816, 0.7592737, 0.7611658, 0.7630732, 0.7649653, 0.7668727, 0.76878, 0.7706874, 0.7725948, 0.7745174, 0.7764248, 0.7783474, 0.7802701, 0.7821927, 0.7841306, 0.7860533, 0.7879911, 0.789929, 0.7918669, 0.7938048, 0.795758, 0.7976959, 0.799649, 0.8016022, 0.8035554, 0.8055238, 0.8074769, 0.8094453, 0.8114137, 0.8133822, 0.8153506, 0.8173342, 0.8193179, 0.8212863, 0.82327, 0.8252689, 0.8272526, 0.8292515, 0.8312352, 0.8332341, 0.8352331, 0.8372473, 0.8392462, 0.8412604, 0.8432746, 0.8452888, 0.847303, 0.8493172, 0.8513466, 0.8533761, 0.8554055, 0.857435, 0.8594644, 0.8614939, 0.8635386, 0.8655833, 0.867628, 0.8696727, 0.8717327, 0.8737774, 0.8758373, 0.8778973, 0.8799573, 0.8820325, 0.8840925, 0.8861677, 0.8882429, 0.8903182, 0.8923934, 0.8944839, 0.8965591, 0.8986496, 0.9007401, 0.9028305, 0.9049363, 0.9070268, 0.9091325, 0.9112383, 0.913344, 0.915465, 0.9175708, 0.9196918, 0.9218128, 0.9239338, 0.9260548, 0.9281758, 0.930312, 0.9324483, 0.9345846, 0.9367208, 0.9388571, 0.9410086, 0.9431601, 0.9453117, 0.9474632, 0.9496147, 0.9517815, 0.953933, 0.9560998, 0.9582666, 0.9604334, 0.9626154, 0.9647822, 0.9669642, 0.9691463, 0.9713283, 0.9735256, 0.9757076, 0.9779049, 0.9801022, 0.9822995, 0.9844968, 0.9867094, 0.988922, 0.9911345, 0.9933471, 0.9955596, 0.9977722, 1.0\",\n                                                \"type\": \"0x72545243\"\n                                            },\n                                            {\n                                                \"name\": \"Green TRC\",\n                                                \"description\": \"0.0, 0.0000763, 0.0001526, 0.0002289, 0.0003052, 0.0003815, 0.0004578, 0.0005341, 0.0006104, 0.0006867, 0.000763, 0.0008392, 0.0009003, 0.0009766, 0.0010529, 0.0011292, 0.0012055, 0.0012818, 0.0013581, 0.0014343, 0.0015106, 0.0015869, 0.0016632, 0.0017395, 0.0018158, 0.0018921, 0.0019684, 0.0020447, 0.002121, 0.0021973, 0.0022736, 0.0023499, 0.0024262, 0.0025025, 0.0025788, 0.0026551, 0.0027161, 0.0027924, 0.0028687, 0.002945, 0.0030213, 0.0030976, 0.0031739, 0.0032502, 0.0033417, 0.003418, 0.0034943, 0.0035859, 0.0036622, 0.0037537, 0.00383, 0.0039216, 0.0040131, 0.0041047, 0.0041962, 0.0042878, 0.0043793, 0.0044709, 0.0045624, 0.0046693, 0.0047608, 0.0048524, 0.0049592, 0.005066, 0.0051575, 0.0052644, 0.0053712, 0.005478, 0.0055848, 0.0056916, 0.0057984, 0.0059052, 0.0060273, 0.0061341, 0.0062562, 0.006363, 0.0064851, 0.0066072, 0.0067292, 0.0068513, 0.0069734, 0.0070954, 0.0072175, 0.0073396, 0.0074617, 0.007599, 0.0077211, 0.0078584, 0.0079957, 0.0081178, 0.0082551, 0.0083925, 0.0085298, 0.0086671, 0.0088045, 0.008957, 0.0090944, 0.0092317, 0.0093843, 0.0095369, 0.0096742, 0.0098268, 0.0099794, 0.010132, 0.0102846, 0.0104372, 0.0105898, 0.0107576, 0.0109102, 0.0110628, 0.0112306, 0.0113985, 0.0115511, 0.0117189, 0.0118868, 0.0120546, 0.0122225, 0.0124056, 0.0125734, 0.0127413, 0.0129244, 0.0130922, 0.0132753, 0.0134585, 0.0136416, 0.0138247, 0.0140078, 0.0141909, 0.014374, 0.0145571, 0.0147555, 0.0149386, 0.0151369, 0.0153201, 0.0155184, 0.0157168, 0.0159152, 0.0161135, 0.0163119, 0.0165255, 0.0167239, 0.0169223, 0.0171359, 0.0173495, 0.0175479, 0.0177615, 0.0179751, 0.0181888, 0.0184024, 0.018616, 0.0188449, 0.0190585, 0.0192874, 0.019501, 0.0197299, 0.0199588, 0.0201877, 0.0204166, 0.0206455, 0.0208743, 0.0211032, 0.0213474, 0.0215763, 0.0218204, 0.0220645, 0.0222934, 0.0225376, 0.0227817, 0.0230259, 0.0232853, 0.0235294, 0.0237736, 0.024033, 0.0242771, 0.0245365, 0.0247959, 0.0250553, 0.0253147, 0.0255741, 0.0258335, 0.0261082, 0.0263676, 0.026627, 0.0269017, 0.0271763, 0.027451, 0.0277256, 0.0280003, 0.028275, 0.0285496, 0.0288243, 0.0291142, 0.0293889, 0.0296788, 0.0299687, 0.0302586, 0.0305486, 0.0308385, 0.0311284, 0.0314183, 0.0317235, 0.0320134, 0.0323186, 0.0326238, 0.032929, 0.0332341, 0.0335393, 0.0338445, 0.0341497, 0.0344549, 0.0347753, 0.0350805, 0.0354009, 0.0357214, 0.0360418, 0.0363622, 0.0366827, 0.0370031, 0.0373388, 0.0376593, 0.037995, 0.0383154, 0.0386511, 0.0389868, 0.0393225, 0.0396582, 0.0399939, 0.0403449, 0.0406806, 0.0410315, 0.0413825, 0.0417182, 0.0420691, 0.0424201, 0.042771, 0.0431373, 0.0434882, 0.0438392, 0.0442054, 0.0445716, 0.0449226, 0.0452888, 0.045655, 0.0460212, 0.0464027, 0.0467689, 0.0471504, 0.0475166, 0.0478981, 0.0482795, 0.048661, 0.0490425, 0.049424, 0.0498054, 0.0501869, 0.0505837, 0.0509804, 0.0513619, 0.0517586, 0.0521553, 0.0525521, 0.0529488, 0.0533608, 0.0537575, 0.0541695, 0.0545663, 0.0549783, 0.0553902, 0.0558022, 0.0562142, 0.0566262, 0.0570535, 0.0574655, 0.0578927, 0.05832, 0.058732, 0.0591592, 0.0595865, 0.060029, 0.0604562, 0.0608835, 0.061326, 0.0617533, 0.0621958, 0.0626383, 0.0630808, 0.0635233, 0.0639811, 0.0644236, 0.0648661, 0.0653239, 0.0657816, 0.0662394, 0.0666972, 0.067155, 0.0676127, 0.0680705, 0.0685435, 0.0690013, 0.0694743, 0.0699474, 0.0704204, 0.0708934, 0.0713664, 0.0718395, 0.0723278, 0.0728008, 0.0732891, 0.0737774, 0.0742657, 0.0747539, 0.0752422, 0.0757305, 0.0762188, 0.0767224, 0.0772259, 0.0777142, 0.0782177, 0.0787213, 0.0792401, 0.0797436, 0.0802472, 0.080766, 0.0812696, 0.0817884, 0.0823072, 0.082826, 0.0833448, 0.0838636, 0.0843977, 0.0849165, 0.0854505, 0.0859846, 0.0865187, 0.0870527, 0.0875868, 0.0881209, 0.0886549, 0.0892042, 0.0897536, 0.0902876, 0.090837, 0.0913863, 0.0919356, 0.0925002, 0.0930495, 0.0936141, 0.0941634, 0.094728, 0.0952926, 0.0958572, 0.0964218, 0.0970016, 0.0975662, 0.098146, 0.0987106, 0.0992905, 0.0998703, 0.1004501, 0.10103, 0.1016251, 0.1022049, 0.1028, 0.1033799, 0.103975, 0.1045701, 0.1051652, 0.1057755, 0.1063706, 0.106981, 0.1075761, 0.1081865, 0.1087968, 0.1094072, 0.1100175, 0.1106279, 0.1112535, 0.1118639, 0.1124895, 0.1131151, 0.1137407, 0.1143664, 0.114992, 0.1156176, 0.1162585, 0.1168841, 0.117525, 0.1181659, 0.1188067, 0.1194476, 0.1200885, 0.1207446, 0.1213855, 0.1220417, 0.1226978, 0.1233539, 0.1240101, 0.1246662, 0.1253223, 0.1259937, 0.1266499, 0.1273213, 0.1279927, 0.1286641, 0.1293355, 0.1300069, 0.1306935, 0.1313649, 0.1320516, 0.1327382, 0.1334096, 0.1341115, 0.1347982, 0.1354849, 0.1361868, 0.1368734, 0.1375753, 0.1382773, 0.1389792, 0.1396811, 0.140383, 0.1411002, 0.1418021, 0.1425193, 0.1432364, 0.1439536, 0.1446708, 0.145388, 0.1461204, 0.1468376, 0.14757, 0.1483024, 0.1490349, 0.1497673, 0.1504997, 0.1512322, 0.1519799, 0.1527123, 0.15346, 0.1542077, 0.1549554, 0.1557031, 0.1564508, 0.1572137, 0.1579767, 0.1587243, 0.1594873, 0.1602502, 0.1610132, 0.1617914, 0.1625544, 0.1633326, 0.1640955, 0.1648737, 0.1656519, 0.1664302, 0.1672236, 0.1680018, 0.1687953, 0.1695735, 0.170367, 0.1711604, 0.1719539, 0.1727474, 0.1735561, 0.1743496, 0.1751583, 0.175967, 0.1767758, 0.1775845, 0.1783932, 0.1792172, 0.1800259, 0.1808499, 0.1816739, 0.1824826, 0.1833219, 0.1841459, 0.1849699, 0.1858091, 0.1866331, 0.1874723, 0.1883116, 0.1891508, 0.1900053, 0.1908446, 0.1916838, 0.1925383, 0.1933928, 0.1942473, 0.1951019, 0.1959564, 0.1968261, 0.1976806, 0.1985504, 0.1994202, 0.2002899, 0.2011597, 0.2020294, 0.2028992, 0.2037842, 0.2046693, 0.205539, 0.206424, 0.2073243, 0.2082094, 0.2090944, 0.2099947, 0.2108949, 0.21178, 0.2126802, 0.2135958, 0.2144961, 0.2153964, 0.2163119, 0.2172274, 0.2181277, 0.2190585, 0.2199741, 0.2208896, 0.2218051, 0.2227359, 0.2236667, 0.2245975, 0.2255283, 0.2264591, 0.2273899, 0.228336, 0.2292821, 0.2302129, 0.2311589, 0.232105, 0.2330663, 0.2340124, 0.2349737, 0.2359197, 0.2368811, 0.2378424, 0.2388037, 0.239765, 0.2407416, 0.2417029, 0.2426795, 0.2436561, 0.2446326, 0.2456092, 0.2466011, 0.2475776, 0.2485695, 0.249546, 0.2505379, 0.2515297, 0.2525368, 0.2535286, 0.2545357, 0.2555276, 0.2565347, 0.2575418, 0.2585489, 0.259556, 0.2605783, 0.2615854, 0.2626078, 0.2636301, 0.2646525, 0.2656748, 0.2667124, 0.2677348, 0.2687724, 0.26981, 0.2708324, 0.2718853, 0.2729229, 0.2739605, 0.2750134, 0.276051, 0.2771038, 0.2781567, 0.2792248, 0.2802777, 0.2813306, 0.2823987, 0.2834668, 0.284535, 0.2856031, 0.2866712, 0.2877394, 0.2888228, 0.2899062, 0.2909743, 0.2920577, 0.2931563, 0.2942397, 0.2953231, 0.2964218, 0.2975204, 0.2986191, 0.2997177, 0.3008164, 0.301915, 0.3030289, 0.3041428, 0.3052567, 0.3063706, 0.3074846, 0.3085985, 0.3097124, 0.3108415, 0.3119707, 0.3130999, 0.314229, 0.3153582, 0.3165026, 0.3176318, 0.3187762, 0.3199207, 0.3210651, 0.3222095, 0.3233539, 0.3245136, 0.3256733, 0.3268177, 0.3279774, 0.3291371, 0.330312, 0.3314717, 0.3326467, 0.3338216, 0.3349966, 0.3361715, 0.3373465, 0.3385214, 0.3397116, 0.3408865, 0.3420768, 0.343267, 0.3444724, 0.3456626, 0.3468528, 0.3480583, 0.3492638, 0.3504692, 0.3516747, 0.3528801, 0.3541009, 0.3553063, 0.356527, 0.3577478, 0.3589685, 0.3601892, 0.3614252, 0.3626459, 0.3638819, 0.3651179, 0.3663539, 0.3675898, 0.3688411, 0.3700771, 0.3713283, 0.3725795, 0.3738308, 0.375082, 0.3763333, 0.3775998, 0.378851, 0.3801175, 0.381384, 0.3826505, 0.3839322, 0.3851987, 0.3864805, 0.387747, 0.3890288, 0.3903105, 0.3916075, 0.3928893, 0.3941863, 0.3954681, 0.3967651, 0.3980621, 0.3993744, 0.4006714, 0.4019837, 0.4032807, 0.404593, 0.4059052, 0.4072175, 0.4085451, 0.4098573, 0.4111849, 0.4125124, 0.4138399, 0.4151675, 0.416495, 0.4178378, 0.4191806, 0.4205234, 0.4218662, 0.423209, 0.4245518, 0.4259098, 0.4272526, 0.4286107, 0.4299687, 0.4313268, 0.4326848, 0.4340581, 0.4354314, 0.4367895, 0.4381628, 0.4395514, 0.4409247, 0.442298, 0.4436866, 0.4450752, 0.4464637, 0.4478523, 0.4492409, 0.4506447, 0.4520333, 0.4534371, 0.4548409, 0.4562448, 0.4576486, 0.4590677, 0.4604715, 0.4618906, 0.4633097, 0.4647288, 0.4661631, 0.4675822, 0.4690166, 0.4704356, 0.47187, 0.4733043, 0.4747539, 0.4761883, 0.4776379, 0.4790875, 0.4805371, 0.4819867, 0.4834363, 0.4848859, 0.4863508, 0.4878157, 0.4892805, 0.4907454, 0.4922103, 0.4936904, 0.4951553, 0.4966354, 0.4981155, 0.4995956, 0.501091, 0.5025711, 0.5040665, 0.5055467, 0.507042, 0.5085527, 0.5100481, 0.5115435, 0.5130541, 0.5145647, 0.5160754, 0.517586, 0.5190967, 0.5206226, 0.5221485, 0.5236591, 0.525185, 0.5267262, 0.5282521, 0.529778, 0.5313191, 0.5328603, 0.5344015, 0.5359426, 0.537499, 0.5390402, 0.5405966, 0.542153, 0.5437095, 0.5452659, 0.5468223, 0.548394, 0.5499657, 0.5515373, 0.553109, 0.5546807, 0.5562524, 0.5578393, 0.5594263, 0.5610132, 0.5626001, 0.5641871, 0.565774, 0.5673762, 0.5689784, 0.5705806, 0.5721828, 0.573785, 0.5754025, 0.5770047, 0.5786221, 0.5802396, 0.581857, 0.5834897, 0.5851072, 0.5867399, 0.5883726, 0.5900053, 0.5916381, 0.5932708, 0.5949187, 0.5965667, 0.5982147, 0.5998627, 0.6015106, 0.6031586, 0.6048219, 0.6064851, 0.6081483, 0.6098116, 0.6114748, 0.6131533, 0.6148165, 0.616495, 0.6181735, 0.619852, 0.6215457, 0.6232242, 0.624918, 0.6266117, 0.6283055, 0.6299992, 0.631693, 0.633402, 0.635111, 0.63682, 0.638529, 0.640238, 0.6419471, 0.6436713, 0.6453956, 0.6471199, 0.6488441, 0.6505684, 0.6523079, 0.6540322, 0.6557717, 0.6575113, 0.6592508, 0.6610056, 0.6627451, 0.6644999, 0.6662547, 0.6680095, 0.6697642, 0.6715343, 0.6732891, 0.6750591, 0.6768292, 0.6785992, 0.6803845, 0.6821546, 0.6839399, 0.6857252, 0.6875105, 0.6892958, 0.6910811, 0.6928817, 0.6946822, 0.6964675, 0.6982834, 0.7000839, 0.7018845, 0.7037003, 0.7055161, 0.707332, 0.7091478, 0.7109636, 0.7127947, 0.7146105, 0.7164416, 0.7182727, 0.720119, 0.7219501, 0.7237964, 0.7256275, 0.7274739, 0.7293355, 0.7311818, 0.7330282, 0.7348898, 0.7367514, 0.738613, 0.7404746, 0.7423514, 0.744213, 0.7460899, 0.7479667, 0.7498436, 0.7517205, 0.7536126, 0.7554894, 0.7573816, 0.7592737, 0.7611658, 0.7630732, 0.7649653, 0.7668727, 0.76878, 0.7706874, 0.7725948, 0.7745174, 0.7764248, 0.7783474, 0.7802701, 0.7821927, 0.7841306, 0.7860533, 0.7879911, 0.789929, 0.7918669, 0.7938048, 0.795758, 0.7976959, 0.799649, 0.8016022, 0.8035554, 0.8055238, 0.8074769, 0.8094453, 0.8114137, 0.8133822, 0.8153506, 0.8173342, 0.8193179, 0.8212863, 0.82327, 0.8252689, 0.8272526, 0.8292515, 0.8312352, 0.8332341, 0.8352331, 0.8372473, 0.8392462, 0.8412604, 0.8432746, 0.8452888, 0.847303, 0.8493172, 0.8513466, 0.8533761, 0.8554055, 0.857435, 0.8594644, 0.8614939, 0.8635386, 0.8655833, 0.867628, 0.8696727, 0.8717327, 0.8737774, 0.8758373, 0.8778973, 0.8799573, 0.8820325, 0.8840925, 0.8861677, 0.8882429, 0.8903182, 0.8923934, 0.8944839, 0.8965591, 0.8986496, 0.9007401, 0.9028305, 0.9049363, 0.9070268, 0.9091325, 0.9112383, 0.913344, 0.915465, 0.9175708, 0.9196918, 0.9218128, 0.9239338, 0.9260548, 0.9281758, 0.930312, 0.9324483, 0.9345846, 0.9367208, 0.9388571, 0.9410086, 0.9431601, 0.9453117, 0.9474632, 0.9496147, 0.9517815, 0.953933, 0.9560998, 0.9582666, 0.9604334, 0.9626154, 0.9647822, 0.9669642, 0.9691463, 0.9713283, 0.9735256, 0.9757076, 0.9779049, 0.9801022, 0.9822995, 0.9844968, 0.9867094, 0.988922, 0.9911345, 0.9933471, 0.9955596, 0.9977722, 1.0\",\n                                                \"type\": \"0x67545243\"\n                                            },\n                                            {\n                                                \"name\": \"Blue TRC\",\n                                                \"description\": \"0.0, 0.0000763, 0.0001526, 0.0002289, 0.0003052, 0.0003815, 0.0004578, 0.0005341, 0.0006104, 0.0006867, 0.000763, 0.0008392, 0.0009003, 0.0009766, 0.0010529, 0.0011292, 0.0012055, 0.0012818, 0.0013581, 0.0014343, 0.0015106, 0.0015869, 0.0016632, 0.0017395, 0.0018158, 0.0018921, 0.0019684, 0.0020447, 0.002121, 0.0021973, 0.0022736, 0.0023499, 0.0024262, 0.0025025, 0.0025788, 0.0026551, 0.0027161, 0.0027924, 0.0028687, 0.002945, 0.0030213, 0.0030976, 0.0031739, 0.0032502, 0.0033417, 0.003418, 0.0034943, 0.0035859, 0.0036622, 0.0037537, 0.00383, 0.0039216, 0.0040131, 0.0041047, 0.0041962, 0.0042878, 0.0043793, 0.0044709, 0.0045624, 0.0046693, 0.0047608, 0.0048524, 0.0049592, 0.005066, 0.0051575, 0.0052644, 0.0053712, 0.005478, 0.0055848, 0.0056916, 0.0057984, 0.0059052, 0.0060273, 0.0061341, 0.0062562, 0.006363, 0.0064851, 0.0066072, 0.0067292, 0.0068513, 0.0069734, 0.0070954, 0.0072175, 0.0073396, 0.0074617, 0.007599, 0.0077211, 0.0078584, 0.0079957, 0.0081178, 0.0082551, 0.0083925, 0.0085298, 0.0086671, 0.0088045, 0.008957, 0.0090944, 0.0092317, 0.0093843, 0.0095369, 0.0096742, 0.0098268, 0.0099794, 0.010132, 0.0102846, 0.0104372, 0.0105898, 0.0107576, 0.0109102, 0.0110628, 0.0112306, 0.0113985, 0.0115511, 0.0117189, 0.0118868, 0.0120546, 0.0122225, 0.0124056, 0.0125734, 0.0127413, 0.0129244, 0.0130922, 0.0132753, 0.0134585, 0.0136416, 0.0138247, 0.0140078, 0.0141909, 0.014374, 0.0145571, 0.0147555, 0.0149386, 0.0151369, 0.0153201, 0.0155184, 0.0157168, 0.0159152, 0.0161135, 0.0163119, 0.0165255, 0.0167239, 0.0169223, 0.0171359, 0.0173495, 0.0175479, 0.0177615, 0.0179751, 0.0181888, 0.0184024, 0.018616, 0.0188449, 0.0190585, 0.0192874, 0.019501, 0.0197299, 0.0199588, 0.0201877, 0.0204166, 0.0206455, 0.0208743, 0.0211032, 0.0213474, 0.0215763, 0.0218204, 0.0220645, 0.0222934, 0.0225376, 0.0227817, 0.0230259, 0.0232853, 0.0235294, 0.0237736, 0.024033, 0.0242771, 0.0245365, 0.0247959, 0.0250553, 0.0253147, 0.0255741, 0.0258335, 0.0261082, 0.0263676, 0.026627, 0.0269017, 0.0271763, 0.027451, 0.0277256, 0.0280003, 0.028275, 0.0285496, 0.0288243, 0.0291142, 0.0293889, 0.0296788, 0.0299687, 0.0302586, 0.0305486, 0.0308385, 0.0311284, 0.0314183, 0.0317235, 0.0320134, 0.0323186, 0.0326238, 0.032929, 0.0332341, 0.0335393, 0.0338445, 0.0341497, 0.0344549, 0.0347753, 0.0350805, 0.0354009, 0.0357214, 0.0360418, 0.0363622, 0.0366827, 0.0370031, 0.0373388, 0.0376593, 0.037995, 0.0383154, 0.0386511, 0.0389868, 0.0393225, 0.0396582, 0.0399939, 0.0403449, 0.0406806, 0.0410315, 0.0413825, 0.0417182, 0.0420691, 0.0424201, 0.042771, 0.0431373, 0.0434882, 0.0438392, 0.0442054, 0.0445716, 0.0449226, 0.0452888, 0.045655, 0.0460212, 0.0464027, 0.0467689, 0.0471504, 0.0475166, 0.0478981, 0.0482795, 0.048661, 0.0490425, 0.049424, 0.0498054, 0.0501869, 0.0505837, 0.0509804, 0.0513619, 0.0517586, 0.0521553, 0.0525521, 0.0529488, 0.0533608, 0.0537575, 0.0541695, 0.0545663, 0.0549783, 0.0553902, 0.0558022, 0.0562142, 0.0566262, 0.0570535, 0.0574655, 0.0578927, 0.05832, 0.058732, 0.0591592, 0.0595865, 0.060029, 0.0604562, 0.0608835, 0.061326, 0.0617533, 0.0621958, 0.0626383, 0.0630808, 0.0635233, 0.0639811, 0.0644236, 0.0648661, 0.0653239, 0.0657816, 0.0662394, 0.0666972, 0.067155, 0.0676127, 0.0680705, 0.0685435, 0.0690013, 0.0694743, 0.0699474, 0.0704204, 0.0708934, 0.0713664, 0.0718395, 0.0723278, 0.0728008, 0.0732891, 0.0737774, 0.0742657, 0.0747539, 0.0752422, 0.0757305, 0.0762188, 0.0767224, 0.0772259, 0.0777142, 0.0782177, 0.0787213, 0.0792401, 0.0797436, 0.0802472, 0.080766, 0.0812696, 0.0817884, 0.0823072, 0.082826, 0.0833448, 0.0838636, 0.0843977, 0.0849165, 0.0854505, 0.0859846, 0.0865187, 0.0870527, 0.0875868, 0.0881209, 0.0886549, 0.0892042, 0.0897536, 0.0902876, 0.090837, 0.0913863, 0.0919356, 0.0925002, 0.0930495, 0.0936141, 0.0941634, 0.094728, 0.0952926, 0.0958572, 0.0964218, 0.0970016, 0.0975662, 0.098146, 0.0987106, 0.0992905, 0.0998703, 0.1004501, 0.10103, 0.1016251, 0.1022049, 0.1028, 0.1033799, 0.103975, 0.1045701, 0.1051652, 0.1057755, 0.1063706, 0.106981, 0.1075761, 0.1081865, 0.1087968, 0.1094072, 0.1100175, 0.1106279, 0.1112535, 0.1118639, 0.1124895, 0.1131151, 0.1137407, 0.1143664, 0.114992, 0.1156176, 0.1162585, 0.1168841, 0.117525, 0.1181659, 0.1188067, 0.1194476, 0.1200885, 0.1207446, 0.1213855, 0.1220417, 0.1226978, 0.1233539, 0.1240101, 0.1246662, 0.1253223, 0.1259937, 0.1266499, 0.1273213, 0.1279927, 0.1286641, 0.1293355, 0.1300069, 0.1306935, 0.1313649, 0.1320516, 0.1327382, 0.1334096, 0.1341115, 0.1347982, 0.1354849, 0.1361868, 0.1368734, 0.1375753, 0.1382773, 0.1389792, 0.1396811, 0.140383, 0.1411002, 0.1418021, 0.1425193, 0.1432364, 0.1439536, 0.1446708, 0.145388, 0.1461204, 0.1468376, 0.14757, 0.1483024, 0.1490349, 0.1497673, 0.1504997, 0.1512322, 0.1519799, 0.1527123, 0.15346, 0.1542077, 0.1549554, 0.1557031, 0.1564508, 0.1572137, 0.1579767, 0.1587243, 0.1594873, 0.1602502, 0.1610132, 0.1617914, 0.1625544, 0.1633326, 0.1640955, 0.1648737, 0.1656519, 0.1664302, 0.1672236, 0.1680018, 0.1687953, 0.1695735, 0.170367, 0.1711604, 0.1719539, 0.1727474, 0.1735561, 0.1743496, 0.1751583, 0.175967, 0.1767758, 0.1775845, 0.1783932, 0.1792172, 0.1800259, 0.1808499, 0.1816739, 0.1824826, 0.1833219, 0.1841459, 0.1849699, 0.1858091, 0.1866331, 0.1874723, 0.1883116, 0.1891508, 0.1900053, 0.1908446, 0.1916838, 0.1925383, 0.1933928, 0.1942473, 0.1951019, 0.1959564, 0.1968261, 0.1976806, 0.1985504, 0.1994202, 0.2002899, 0.2011597, 0.2020294, 0.2028992, 0.2037842, 0.2046693, 0.205539, 0.206424, 0.2073243, 0.2082094, 0.2090944, 0.2099947, 0.2108949, 0.21178, 0.2126802, 0.2135958, 0.2144961, 0.2153964, 0.2163119, 0.2172274, 0.2181277, 0.2190585, 0.2199741, 0.2208896, 0.2218051, 0.2227359, 0.2236667, 0.2245975, 0.2255283, 0.2264591, 0.2273899, 0.228336, 0.2292821, 0.2302129, 0.2311589, 0.232105, 0.2330663, 0.2340124, 0.2349737, 0.2359197, 0.2368811, 0.2378424, 0.2388037, 0.239765, 0.2407416, 0.2417029, 0.2426795, 0.2436561, 0.2446326, 0.2456092, 0.2466011, 0.2475776, 0.2485695, 0.249546, 0.2505379, 0.2515297, 0.2525368, 0.2535286, 0.2545357, 0.2555276, 0.2565347, 0.2575418, 0.2585489, 0.259556, 0.2605783, 0.2615854, 0.2626078, 0.2636301, 0.2646525, 0.2656748, 0.2667124, 0.2677348, 0.2687724, 0.26981, 0.2708324, 0.2718853, 0.2729229, 0.2739605, 0.2750134, 0.276051, 0.2771038, 0.2781567, 0.2792248, 0.2802777, 0.2813306, 0.2823987, 0.2834668, 0.284535, 0.2856031, 0.2866712, 0.2877394, 0.2888228, 0.2899062, 0.2909743, 0.2920577, 0.2931563, 0.2942397, 0.2953231, 0.2964218, 0.2975204, 0.2986191, 0.2997177, 0.3008164, 0.301915, 0.3030289, 0.3041428, 0.3052567, 0.3063706, 0.3074846, 0.3085985, 0.3097124, 0.3108415, 0.3119707, 0.3130999, 0.314229, 0.3153582, 0.3165026, 0.3176318, 0.3187762, 0.3199207, 0.3210651, 0.3222095, 0.3233539, 0.3245136, 0.3256733, 0.3268177, 0.3279774, 0.3291371, 0.330312, 0.3314717, 0.3326467, 0.3338216, 0.3349966, 0.3361715, 0.3373465, 0.3385214, 0.3397116, 0.3408865, 0.3420768, 0.343267, 0.3444724, 0.3456626, 0.3468528, 0.3480583, 0.3492638, 0.3504692, 0.3516747, 0.3528801, 0.3541009, 0.3553063, 0.356527, 0.3577478, 0.3589685, 0.3601892, 0.3614252, 0.3626459, 0.3638819, 0.3651179, 0.3663539, 0.3675898, 0.3688411, 0.3700771, 0.3713283, 0.3725795, 0.3738308, 0.375082, 0.3763333, 0.3775998, 0.378851, 0.3801175, 0.381384, 0.3826505, 0.3839322, 0.3851987, 0.3864805, 0.387747, 0.3890288, 0.3903105, 0.3916075, 0.3928893, 0.3941863, 0.3954681, 0.3967651, 0.3980621, 0.3993744, 0.4006714, 0.4019837, 0.4032807, 0.404593, 0.4059052, 0.4072175, 0.4085451, 0.4098573, 0.4111849, 0.4125124, 0.4138399, 0.4151675, 0.416495, 0.4178378, 0.4191806, 0.4205234, 0.4218662, 0.423209, 0.4245518, 0.4259098, 0.4272526, 0.4286107, 0.4299687, 0.4313268, 0.4326848, 0.4340581, 0.4354314, 0.4367895, 0.4381628, 0.4395514, 0.4409247, 0.442298, 0.4436866, 0.4450752, 0.4464637, 0.4478523, 0.4492409, 0.4506447, 0.4520333, 0.4534371, 0.4548409, 0.4562448, 0.4576486, 0.4590677, 0.4604715, 0.4618906, 0.4633097, 0.4647288, 0.4661631, 0.4675822, 0.4690166, 0.4704356, 0.47187, 0.4733043, 0.4747539, 0.4761883, 0.4776379, 0.4790875, 0.4805371, 0.4819867, 0.4834363, 0.4848859, 0.4863508, 0.4878157, 0.4892805, 0.4907454, 0.4922103, 0.4936904, 0.4951553, 0.4966354, 0.4981155, 0.4995956, 0.501091, 0.5025711, 0.5040665, 0.5055467, 0.507042, 0.5085527, 0.5100481, 0.5115435, 0.5130541, 0.5145647, 0.5160754, 0.517586, 0.5190967, 0.5206226, 0.5221485, 0.5236591, 0.525185, 0.5267262, 0.5282521, 0.529778, 0.5313191, 0.5328603, 0.5344015, 0.5359426, 0.537499, 0.5390402, 0.5405966, 0.542153, 0.5437095, 0.5452659, 0.5468223, 0.548394, 0.5499657, 0.5515373, 0.553109, 0.5546807, 0.5562524, 0.5578393, 0.5594263, 0.5610132, 0.5626001, 0.5641871, 0.565774, 0.5673762, 0.5689784, 0.5705806, 0.5721828, 0.573785, 0.5754025, 0.5770047, 0.5786221, 0.5802396, 0.581857, 0.5834897, 0.5851072, 0.5867399, 0.5883726, 0.5900053, 0.5916381, 0.5932708, 0.5949187, 0.5965667, 0.5982147, 0.5998627, 0.6015106, 0.6031586, 0.6048219, 0.6064851, 0.6081483, 0.6098116, 0.6114748, 0.6131533, 0.6148165, 0.616495, 0.6181735, 0.619852, 0.6215457, 0.6232242, 0.624918, 0.6266117, 0.6283055, 0.6299992, 0.631693, 0.633402, 0.635111, 0.63682, 0.638529, 0.640238, 0.6419471, 0.6436713, 0.6453956, 0.6471199, 0.6488441, 0.6505684, 0.6523079, 0.6540322, 0.6557717, 0.6575113, 0.6592508, 0.6610056, 0.6627451, 0.6644999, 0.6662547, 0.6680095, 0.6697642, 0.6715343, 0.6732891, 0.6750591, 0.6768292, 0.6785992, 0.6803845, 0.6821546, 0.6839399, 0.6857252, 0.6875105, 0.6892958, 0.6910811, 0.6928817, 0.6946822, 0.6964675, 0.6982834, 0.7000839, 0.7018845, 0.7037003, 0.7055161, 0.707332, 0.7091478, 0.7109636, 0.7127947, 0.7146105, 0.7164416, 0.7182727, 0.720119, 0.7219501, 0.7237964, 0.7256275, 0.7274739, 0.7293355, 0.7311818, 0.7330282, 0.7348898, 0.7367514, 0.738613, 0.7404746, 0.7423514, 0.744213, 0.7460899, 0.7479667, 0.7498436, 0.7517205, 0.7536126, 0.7554894, 0.7573816, 0.7592737, 0.7611658, 0.7630732, 0.7649653, 0.7668727, 0.76878, 0.7706874, 0.7725948, 0.7745174, 0.7764248, 0.7783474, 0.7802701, 0.7821927, 0.7841306, 0.7860533, 0.7879911, 0.789929, 0.7918669, 0.7938048, 0.795758, 0.7976959, 0.799649, 0.8016022, 0.8035554, 0.8055238, 0.8074769, 0.8094453, 0.8114137, 0.8133822, 0.8153506, 0.8173342, 0.8193179, 0.8212863, 0.82327, 0.8252689, 0.8272526, 0.8292515, 0.8312352, 0.8332341, 0.8352331, 0.8372473, 0.8392462, 0.8412604, 0.8432746, 0.8452888, 0.847303, 0.8493172, 0.8513466, 0.8533761, 0.8554055, 0.857435, 0.8594644, 0.8614939, 0.8635386, 0.8655833, 0.867628, 0.8696727, 0.8717327, 0.8737774, 0.8758373, 0.8778973, 0.8799573, 0.8820325, 0.8840925, 0.8861677, 0.8882429, 0.8903182, 0.8923934, 0.8944839, 0.8965591, 0.8986496, 0.9007401, 0.9028305, 0.9049363, 0.9070268, 0.9091325, 0.9112383, 0.913344, 0.915465, 0.9175708, 0.9196918, 0.9218128, 0.9239338, 0.9260548, 0.9281758, 0.930312, 0.9324483, 0.9345846, 0.9367208, 0.9388571, 0.9410086, 0.9431601, 0.9453117, 0.9474632, 0.9496147, 0.9517815, 0.953933, 0.9560998, 0.9582666, 0.9604334, 0.9626154, 0.9647822, 0.9669642, 0.9691463, 0.9713283, 0.9735256, 0.9757076, 0.9779049, 0.9801022, 0.9822995, 0.9844968, 0.9867094, 0.988922, 0.9911345, 0.9933471, 0.9955596, 0.9977722, 1.0\",\n                                                \"type\": \"0x62545243\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"Photoshop\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Caption Digest\",\n                                                \"description\": \"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\",\n                                                \"type\": \"0x0425\"\n                                            },\n                                            {\n                                                \"name\": \"Print Info 2\",\n                                                \"description\": \"[229 values]\",\n                                                \"type\": \"0x043a\"\n                                            },\n                                            {\n                                                \"name\": \"Print Style\",\n                                                \"description\": \"[557 values]\",\n                                                \"type\": \"0x043b\"\n                                            },\n                                            {\n                                                \"name\": \"Resolution Info\",\n                                                \"description\": \"72x72 DPI\",\n                                                \"type\": \"0x03ed\"\n                                            },\n                                            {\n                                                \"name\": \"Print Scale\",\n                                                \"description\": \"Centered, Scale 1.0\",\n                                                \"type\": \"0x0426\"\n                                            },\n                                            {\n                                                \"name\": \"Global Angle\",\n                                                \"description\": \"120\",\n                                                \"type\": \"0x040d\"\n                                            },\n                                            {\n                                                \"name\": \"Global Altitude\",\n                                                \"description\": \"30\",\n                                                \"type\": \"0x0419\"\n                                            },\n                                            {\n                                                \"name\": \"Print Flags\",\n                                                \"description\": \"0 0 0 0 0 0 0 0 1\",\n                                                \"type\": \"0x03f3\"\n                                            },\n                                            {\n                                                \"name\": \"Print Flags Information\",\n                                                \"description\": \"0 1 0 0 0 0 0 0 0 2\",\n                                                \"type\": \"0x2710\"\n                                            },\n                                            {\n                                                \"name\": \"Color Halftoning Information\",\n                                                \"description\": \"[72 values]\",\n                                                \"type\": \"0x03f5\"\n                                            },\n                                            {\n                                                \"name\": \"Color Transfer Functions\",\n                                                \"description\": \"[112 values]\",\n                                                \"type\": \"0x03f8\"\n                                            },\n                                            {\n                                                \"name\": \"Layer State Information\",\n                                                \"description\": \"0 23\",\n                                                \"type\": \"0x0400\"\n                                            },\n                                            {\n                                                \"name\": \"Layers Group Information\",\n                                                \"description\": \"[76 values]\",\n                                                \"type\": \"0x0402\"\n                                            },\n                                            {\n                                                \"name\": \"Layer Groups Enabled ID\",\n                                                \"description\": \"[38 values]\",\n                                                \"type\": \"0x0430\"\n                                            },\n                                            {\n                                                \"name\": \"Layer Selection IDs\",\n                                                \"description\": \"0 1 0 0 0 28\",\n                                                \"type\": \"0x042d\"\n                                            },\n                                            {\n                                                \"name\": \"Grid and Guides Information\",\n                                                \"description\": \"[26 values]\",\n                                                \"type\": \"0x0408\"\n                                            },\n                                            {\n                                                \"name\": \"URL List\",\n                                                \"description\": \"0\",\n                                                \"type\": \"0x041e\"\n                                            },\n                                            {\n                                                \"name\": \"Slices\",\n                                                \"description\": \"65151 (0,0,1200,1200) 1 Slices\",\n                                                \"type\": \"0x041a\"\n                                            },\n                                            {\n                                                \"name\": \"Pixel Aspect Ratio\",\n                                                \"description\": \"1.0\",\n                                                \"type\": \"0x0428\"\n                                            },\n                                            {\n                                                \"name\": \"Seed Number\",\n                                                \"description\": \"45\",\n                                                \"type\": \"0x0414\"\n                                            },\n                                            {\n                                                \"name\": \"Thumbnail Data\",\n                                                \"description\": \"JpegRGB, 160x160, Decomp 76800 bytes, 1572865 bpp, 5569 bytes\",\n                                                \"type\": \"0x040c\"\n                                            },\n                                            {\n                                                \"name\": \"Version Info\",\n                                                \"description\": \"1 (Adobe Photoshop, Adobe Photoshop CS6) 1\",\n                                                \"type\": \"0x0421\"\n                                            },\n                                            {\n                                                \"name\": \"Unknown tag (0x0401)\",\n                                                \"description\": \"[494 values]\",\n                                                \"type\": \"0x0401\"\n                                            },\n                                            {\n                                                \"name\": \"JPEG Quality\",\n                                                \"description\": \"12 (Maximum), Progressive format, 3 scans\",\n                                                \"type\": \"0x0406\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"Huffman\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Number of Tables\",\n                                                \"description\": \"4 Huffman tables\",\n                                                \"type\": \"0x0001\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"File Type\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"Detected File Type Name\",\n                                                \"description\": \"JPEG\",\n                                                \"type\": \"0x0001\"\n                                            },\n                                            {\n                                                \"name\": \"Detected File Type Long Name\",\n                                                \"description\": \"Joint Photographic Experts Group\",\n                                                \"type\": \"0x0002\"\n                                            },\n                                            {\n                                                \"name\": \"Detected MIME Type\",\n                                                \"description\": \"image/jpeg\",\n                                                \"type\": \"0x0003\"\n                                            },\n                                            {\n                                                \"name\": \"Expected File Name Extension\",\n                                                \"description\": \"jpg\",\n                                                \"type\": \"0x0004\"\n                                            }\n                                        ]\n                                    },\n                                    {\n                                        \"name\": \"File\",\n                                        \"tags\": [\n                                            {\n                                                \"name\": \"File Name\",\n                                                \"description\": \"comp-1.jpeg\",\n                                                \"type\": \"0x0001\"\n                                            },\n                                            {\n                                                \"name\": \"File Size\",\n                                                \"description\": \"121103 bytes\",\n                                                \"type\": \"0x0002\"\n                                            },\n                                            {\n                                                \"name\": \"File Modified Date\",\n                                                \"description\": \"Wed Jan 17 16:18:49 -06:00 2024\",\n                                                \"type\": \"0x0003\"\n                                            }\n                                        ]\n                                    }\n                                ],\n                                \"extension\": \"jpeg\"\n                            }\n                        },\n                        {\n                            \"id\": 5609953,\n                            \"value\": \"4 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 5726659,\n                            \"value\": \"3 Stage\",\n                            \"abbreviation\": \"\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096589,\n                            \"value\": \"5 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096590,\n                            \"value\": \"6 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096591,\n                            \"value\": \"7 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096592,\n                            \"value\": \"8 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096593,\n                            \"value\": \"9 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096594,\n                            \"value\": \"10 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096595,\n                            \"value\": \"11 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096596,\n                            \"value\": \"12 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096597,\n                            \"value\": \"13 Stage\",\n                            \"defaultOption\": false\n                        },\n                        {\n                            \"id\": 8096598,\n                            \"value\": \"14 Stage\",\n                            \"defaultOption\": false\n                        }\n                    ],\n                    \"element\": {\n                        \"minOccurs\": \"1\",\n                        \"maxOccurs\": \"1\"\n                    }\n                }\n            ],\n            \"parentId\": 20926107,\n            \"parentKey\": \"no_of_stages\",\n            \"evaluation\": {\n                \"specificity\": \"MODEL\",\n                \"engine\": \"NONE\",\n                \"editor\": \"NONE\",\n                \"formula\": null,\n                \"enhancedContentTemplateId\": null,\n                \"display\": null,\n                \"mappedKey\": null,\n                \"referencedKeys\": null\n            },\n            \"conditions\": {},\n            \"picklistId\": 106587,\n            \"picklistType\": \"DROPDOWN\",\n            \"picklistValues\": [\n                {\n                    \"id\": 5609954,\n                    \"value\": \"2 Stage\",\n                    \"abbreviation\": \"ABCD\",\n                    \"assetId\": 4070863022,\n                    \"defaultOption\": false,\n                    \"assetThumbnailUrl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                    \"asset\": {\n                        \"transformations\": [\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 65,\n                                \"use\": \"_tn\",\n                                \"transformationFilename\": \"4070863022/comp-1.jpg\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                                \"size\": null\n                            },\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 303,\n                                \"use\": \"_lg\",\n                                \"transformationFilename\": \"4070863022/comp-1.jpg\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                                \"size\": null\n                            },\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 545,\n                                \"use\": \"_xl\",\n                                \"transformationFilename\": \"4070863022/8052-Main.jpg\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863022/8052-Main.jpg\",\n                                \"size\": 116948\n                            },\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 888,\n                                \"use\": \"_bc\",\n                                \"transformationFilename\": \"4070863022/8052-Main.jpg\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863022/8052-Main.jpg\",\n                                \"size\": 165618\n                            },\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 889,\n                                \"use\": \"_elicon\",\n                                \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863022/8052-Main.png\",\n                                \"size\": 13026\n                            },\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 890,\n                                \"use\": \"_eldet\",\n                                \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863022/8052-Main.png\",\n                                \"size\": 90713\n                            },\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 891,\n                                \"use\": \"_ellg\",\n                                \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863022/8052-Main.png\",\n                                \"size\": 446461\n                            },\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 892,\n                                \"use\": \"_elpr\",\n                                \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863022/8052-Main.png\",\n                                \"size\": 446461\n                            },\n                            {\n                                \"assetId\": 4070863022,\n                                \"transformationId\": 893,\n                                \"use\": \"_elorig\",\n                                \"transformationFilename\": \"4070863022/8052-Main.png\",\n                                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863022/8052-Main.png\",\n                                \"size\": 462420\n                            }\n                        ],\n                        \"id\": 4070863022,\n                        \"size\": 121103,\n                        \"private\": false,\n                        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                        \"create_username\": \"Super Admin\",\n                        \"update_username\": \"Super Admin\",\n                        \"width\": 800,\n                        \"height\": 800,\n                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/8052-Main.jpeg\",\n                        \"filename\": \"8052-Main.jpeg\",\n                        \"updateuser_id\": 4018007131,\n                        \"update_date\": 1744204629287,\n                        \"thumbnail_filename\": \"4070863022/comp-1.jpg\",\n                        \"createuser_id\": 4018007131,\n                        \"create_date\": 1705529945511,\n                        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                        \"aspect_ratio\": 1,\n                        \"asset_type\": \"IMAGE\",\n                        \"metadata_exif\": [\n                            {\n                                \"name\": \"JPEG\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Compression Type\",\n                                        \"description\": \"Baseline\",\n                                        \"type\": \"0xfffffffd\"\n                                    },\n                                    {\n                                        \"name\": \"Data Precision\",\n                                        \"description\": \"8 bits\",\n                                        \"type\": \"0x0000\"\n                                    },\n                                    {\n                                        \"name\": \"Image Height\",\n                                        \"description\": \"800 pixels\",\n                                        \"type\": \"0x0001\"\n                                    },\n                                    {\n                                        \"name\": \"Image Width\",\n                                        \"description\": \"800 pixels\",\n                                        \"type\": \"0x0003\"\n                                    },\n                                    {\n                                        \"name\": \"Number of Components\",\n                                        \"description\": \"3\",\n                                        \"type\": \"0x0005\"\n                                    },\n                                    {\n                                        \"name\": \"Component 1\",\n                                        \"description\": \"Y component: Quantization table 0, Sampling factors 2 horiz/2 vert\",\n                                        \"type\": \"0x0006\"\n                                    },\n                                    {\n                                        \"name\": \"Component 2\",\n                                        \"description\": \"Cb component: Quantization table 1, Sampling factors 1 horiz/1 vert\",\n                                        \"type\": \"0x0007\"\n                                    },\n                                    {\n                                        \"name\": \"Component 3\",\n                                        \"description\": \"Cr component: Quantization table 1, Sampling factors 1 horiz/1 vert\",\n                                        \"type\": \"0x0008\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"JFIF\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Version\",\n                                        \"description\": \"1.1\",\n                                        \"type\": \"0x0005\"\n                                    },\n                                    {\n                                        \"name\": \"Resolution Units\",\n                                        \"description\": \"inch\",\n                                        \"type\": \"0x0007\"\n                                    },\n                                    {\n                                        \"name\": \"X Resolution\",\n                                        \"description\": \"72 dots\",\n                                        \"type\": \"0x0008\"\n                                    },\n                                    {\n                                        \"name\": \"Y Resolution\",\n                                        \"description\": \"72 dots\",\n                                        \"type\": \"0x000a\"\n                                    },\n                                    {\n                                        \"name\": \"Thumbnail Width Pixels\",\n                                        \"description\": \"0\",\n                                        \"type\": \"0x000c\"\n                                    },\n                                    {\n                                        \"name\": \"Thumbnail Height Pixels\",\n                                        \"description\": \"0\",\n                                        \"type\": \"0x000d\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"Exif IFD0\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Orientation\",\n                                        \"description\": \"Top, left side (Horizontal / normal)\",\n                                        \"type\": \"0x0112\"\n                                    },\n                                    {\n                                        \"name\": \"X Resolution\",\n                                        \"description\": \"72 dots per inch\",\n                                        \"type\": \"0x011a\"\n                                    },\n                                    {\n                                        \"name\": \"Y Resolution\",\n                                        \"description\": \"72 dots per inch\",\n                                        \"type\": \"0x011b\"\n                                    },\n                                    {\n                                        \"name\": \"Resolution Unit\",\n                                        \"description\": \"Inch\",\n                                        \"type\": \"0x0128\"\n                                    },\n                                    {\n                                        \"name\": \"Software\",\n                                        \"description\": \"Adobe Photoshop CS6 (Windows)\",\n                                        \"type\": \"0x0131\"\n                                    },\n                                    {\n                                        \"name\": \"Date/Time\",\n                                        \"description\": \"2015:12:14 11:27:23\",\n                                        \"type\": \"0x0132\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"Exif SubIFD\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Color Space\",\n                                        \"description\": \"sRGB\",\n                                        \"type\": \"0xa001\"\n                                    },\n                                    {\n                                        \"name\": \"Exif Image Width\",\n                                        \"description\": \"1200 pixels\",\n                                        \"type\": \"0xa002\"\n                                    },\n                                    {\n                                        \"name\": \"Exif Image Height\",\n                                        \"description\": \"1200 pixels\",\n                                        \"type\": \"0xa003\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"Exif Thumbnail\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Compression\",\n                                        \"description\": \"JPEG (old-style)\",\n                                        \"type\": \"0x0103\"\n                                    },\n                                    {\n                                        \"name\": \"X Resolution\",\n                                        \"description\": \"72 dots per inch\",\n                                        \"type\": \"0x011a\"\n                                    },\n                                    {\n                                        \"name\": \"Y Resolution\",\n                                        \"description\": \"72 dots per inch\",\n                                        \"type\": \"0x011b\"\n                                    },\n                                    {\n                                        \"name\": \"Resolution Unit\",\n                                        \"description\": \"Inch\",\n                                        \"type\": \"0x0128\"\n                                    },\n                                    {\n                                        \"name\": \"Thumbnail Offset\",\n                                        \"description\": \"302 bytes\",\n                                        \"type\": \"0x0201\"\n                                    },\n                                    {\n                                        \"name\": \"Thumbnail Length\",\n                                        \"description\": \"3684 bytes\",\n                                        \"type\": \"0x0202\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"XMP\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"XMP Value Count\",\n                                        \"description\": \"45\",\n                                        \"type\": \"0xffff\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"ICC Profile\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Profile Size\",\n                                        \"description\": \"3144\",\n                                        \"type\": \"0x0000\"\n                                    },\n                                    {\n                                        \"name\": \"CMM Type\",\n                                        \"description\": \"Lino\",\n                                        \"type\": \"0x0004\"\n                                    },\n                                    {\n                                        \"name\": \"Version\",\n                                        \"description\": \"2.1.0\",\n                                        \"type\": \"0x0008\"\n                                    },\n                                    {\n                                        \"name\": \"Class\",\n                                        \"description\": \"Display Device\",\n                                        \"type\": \"0x000c\"\n                                    },\n                                    {\n                                        \"name\": \"Color space\",\n                                        \"description\": \"RGB \",\n                                        \"type\": \"0x0010\"\n                                    },\n                                    {\n                                        \"name\": \"Profile Connection Space\",\n                                        \"description\": \"XYZ \",\n                                        \"type\": \"0x0014\"\n                                    },\n                                    {\n                                        \"name\": \"Profile Date/Time\",\n                                        \"description\": \"1998:02:09 06:49:00\",\n                                        \"type\": \"0x0018\"\n                                    },\n                                    {\n                                        \"name\": \"Signature\",\n                                        \"description\": \"acsp\",\n                                        \"type\": \"0x0024\"\n                                    },\n                                    {\n                                        \"name\": \"Primary Platform\",\n                                        \"description\": \"Microsoft Corporation\",\n                                        \"type\": \"0x0028\"\n                                    },\n                                    {\n                                        \"name\": \"Device manufacturer\",\n                                        \"description\": \"IEC \",\n                                        \"type\": \"0x0030\"\n                                    },\n                                    {\n                                        \"name\": \"Device model\",\n                                        \"description\": \"sRGB\",\n                                        \"type\": \"0x0034\"\n                                    },\n                                    {\n                                        \"name\": \"Rendering Intent\",\n                                        \"description\": \"Media-Relative Colorimetric\",\n                                        \"type\": \"0x0040\"\n                                    },\n                                    {\n                                        \"name\": \"XYZ values\",\n                                        \"description\": \"0.964 1 0.825\",\n                                        \"type\": \"0x0044\"\n                                    },\n                                    {\n                                        \"name\": \"Tag Count\",\n                                        \"description\": \"17\",\n                                        \"type\": \"0x0080\"\n                                    },\n                                    {\n                                        \"name\": \"Profile Copyright\",\n                                        \"description\": \"Copyright (c) 1998 Hewlett-Packard Company\",\n                                        \"type\": \"0x63707274\"\n                                    },\n                                    {\n                                        \"name\": \"Profile Description\",\n                                        \"description\": \"sRGB IEC61966-2.1\",\n                                        \"type\": \"0x64657363\"\n                                    },\n                                    {\n                                        \"name\": \"Media White Point\",\n                                        \"description\": \"(0.9505, 1, 1.0891)\",\n                                        \"type\": \"0x77747074\"\n                                    },\n                                    {\n                                        \"name\": \"Media Black Point\",\n                                        \"description\": \"(0, 0, 0)\",\n                                        \"type\": \"0x626b7074\"\n                                    },\n                                    {\n                                        \"name\": \"Red Colorant\",\n                                        \"description\": \"(0.4361, 0.2225, 0.0139)\",\n                                        \"type\": \"0x7258595a\"\n                                    },\n                                    {\n                                        \"name\": \"Green Colorant\",\n                                        \"description\": \"(0.3851, 0.7169, 0.0971)\",\n                                        \"type\": \"0x6758595a\"\n                                    },\n                                    {\n                                        \"name\": \"Blue Colorant\",\n                                        \"description\": \"(0.1431, 0.0606, 0.7141)\",\n                                        \"type\": \"0x6258595a\"\n                                    },\n                                    {\n                                        \"name\": \"Device Mfg Description\",\n                                        \"description\": \"IEC http://www.iec.ch\",\n                                        \"type\": \"0x646d6e64\"\n                                    },\n                                    {\n                                        \"name\": \"Device Model Description\",\n                                        \"description\": \"IEC 61966-2.1 Default RGB colour space - sRGB\",\n                                        \"type\": \"0x646d6464\"\n                                    },\n                                    {\n                                        \"name\": \"Viewing Conditions Description\",\n                                        \"description\": \"Reference Viewing Condition in IEC61966-2.1\",\n                                        \"type\": \"0x76756564\"\n                                    },\n                                    {\n                                        \"name\": \"Viewing Conditions\",\n                                        \"description\": \"view (0x76696577): 36 bytes\",\n                                        \"type\": \"0x76696577\"\n                                    },\n                                    {\n                                        \"name\": \"Luminance\",\n                                        \"description\": \"(76.0365, 80, 87.1246)\",\n                                        \"type\": \"0x6c756d69\"\n                                    },\n                                    {\n                                        \"name\": \"Measurement\",\n                                        \"description\": \"1931 2° Observer, Backing (0, 0, 0), Geometry Unknown, Flare 1%, Illuminant D65\",\n                                        \"type\": \"0x6d656173\"\n                                    },\n                                    {\n                                        \"name\": \"Technology\",\n                                        \"description\": \"CRT \",\n                                        \"type\": \"0x74656368\"\n                                    },\n                                    {\n                                        \"name\": \"Red TRC\",\n                                        \"description\": \"0.0, 0.0000763, 0.0001526, 0.0002289, 0.0003052, 0.0003815, 0.0004578, 0.0005341, 0.0006104, 0.0006867, 0.000763, 0.0008392, 0.0009003, 0.0009766, 0.0010529, 0.0011292, 0.0012055, 0.0012818, 0.0013581, 0.0014343, 0.0015106, 0.0015869, 0.0016632, 0.0017395, 0.0018158, 0.0018921, 0.0019684, 0.0020447, 0.002121, 0.0021973, 0.0022736, 0.0023499, 0.0024262, 0.0025025, 0.0025788, 0.0026551, 0.0027161, 0.0027924, 0.0028687, 0.002945, 0.0030213, 0.0030976, 0.0031739, 0.0032502, 0.0033417, 0.003418, 0.0034943, 0.0035859, 0.0036622, 0.0037537, 0.00383, 0.0039216, 0.0040131, 0.0041047, 0.0041962, 0.0042878, 0.0043793, 0.0044709, 0.0045624, 0.0046693, 0.0047608, 0.0048524, 0.0049592, 0.005066, 0.0051575, 0.0052644, 0.0053712, 0.005478, 0.0055848, 0.0056916, 0.0057984, 0.0059052, 0.0060273, 0.0061341, 0.0062562, 0.006363, 0.0064851, 0.0066072, 0.0067292, 0.0068513, 0.0069734, 0.0070954, 0.0072175, 0.0073396, 0.0074617, 0.007599, 0.0077211, 0.0078584, 0.0079957, 0.0081178, 0.0082551, 0.0083925, 0.0085298, 0.0086671, 0.0088045, 0.008957, 0.0090944, 0.0092317, 0.0093843, 0.0095369, 0.0096742, 0.0098268, 0.0099794, 0.010132, 0.0102846, 0.0104372, 0.0105898, 0.0107576, 0.0109102, 0.0110628, 0.0112306, 0.0113985, 0.0115511, 0.0117189, 0.0118868, 0.0120546, 0.0122225, 0.0124056, 0.0125734, 0.0127413, 0.0129244, 0.0130922, 0.0132753, 0.0134585, 0.0136416, 0.0138247, 0.0140078, 0.0141909, 0.014374, 0.0145571, 0.0147555, 0.0149386, 0.0151369, 0.0153201, 0.0155184, 0.0157168, 0.0159152, 0.0161135, 0.0163119, 0.0165255, 0.0167239, 0.0169223, 0.0171359, 0.0173495, 0.0175479, 0.0177615, 0.0179751, 0.0181888, 0.0184024, 0.018616, 0.0188449, 0.0190585, 0.0192874, 0.019501, 0.0197299, 0.0199588, 0.0201877, 0.0204166, 0.0206455, 0.0208743, 0.0211032, 0.0213474, 0.0215763, 0.0218204, 0.0220645, 0.0222934, 0.0225376, 0.0227817, 0.0230259, 0.0232853, 0.0235294, 0.0237736, 0.024033, 0.0242771, 0.0245365, 0.0247959, 0.0250553, 0.0253147, 0.0255741, 0.0258335, 0.0261082, 0.0263676, 0.026627, 0.0269017, 0.0271763, 0.027451, 0.0277256, 0.0280003, 0.028275, 0.0285496, 0.0288243, 0.0291142, 0.0293889, 0.0296788, 0.0299687, 0.0302586, 0.0305486, 0.0308385, 0.0311284, 0.0314183, 0.0317235, 0.0320134, 0.0323186, 0.0326238, 0.032929, 0.0332341, 0.0335393, 0.0338445, 0.0341497, 0.0344549, 0.0347753, 0.0350805, 0.0354009, 0.0357214, 0.0360418, 0.0363622, 0.0366827, 0.0370031, 0.0373388, 0.0376593, 0.037995, 0.0383154, 0.0386511, 0.0389868, 0.0393225, 0.0396582, 0.0399939, 0.0403449, 0.0406806, 0.0410315, 0.0413825, 0.0417182, 0.0420691, 0.0424201, 0.042771, 0.0431373, 0.0434882, 0.0438392, 0.0442054, 0.0445716, 0.0449226, 0.0452888, 0.045655, 0.0460212, 0.0464027, 0.0467689, 0.0471504, 0.0475166, 0.0478981, 0.0482795, 0.048661, 0.0490425, 0.049424, 0.0498054, 0.0501869, 0.0505837, 0.0509804, 0.0513619, 0.0517586, 0.0521553, 0.0525521, 0.0529488, 0.0533608, 0.0537575, 0.0541695, 0.0545663, 0.0549783, 0.0553902, 0.0558022, 0.0562142, 0.0566262, 0.0570535, 0.0574655, 0.0578927, 0.05832, 0.058732, 0.0591592, 0.0595865, 0.060029, 0.0604562, 0.0608835, 0.061326, 0.0617533, 0.0621958, 0.0626383, 0.0630808, 0.0635233, 0.0639811, 0.0644236, 0.0648661, 0.0653239, 0.0657816, 0.0662394, 0.0666972, 0.067155, 0.0676127, 0.0680705, 0.0685435, 0.0690013, 0.0694743, 0.0699474, 0.0704204, 0.0708934, 0.0713664, 0.0718395, 0.0723278, 0.0728008, 0.0732891, 0.0737774, 0.0742657, 0.0747539, 0.0752422, 0.0757305, 0.0762188, 0.0767224, 0.0772259, 0.0777142, 0.0782177, 0.0787213, 0.0792401, 0.0797436, 0.0802472, 0.080766, 0.0812696, 0.0817884, 0.0823072, 0.082826, 0.0833448, 0.0838636, 0.0843977, 0.0849165, 0.0854505, 0.0859846, 0.0865187, 0.0870527, 0.0875868, 0.0881209, 0.0886549, 0.0892042, 0.0897536, 0.0902876, 0.090837, 0.0913863, 0.0919356, 0.0925002, 0.0930495, 0.0936141, 0.0941634, 0.094728, 0.0952926, 0.0958572, 0.0964218, 0.0970016, 0.0975662, 0.098146, 0.0987106, 0.0992905, 0.0998703, 0.1004501, 0.10103, 0.1016251, 0.1022049, 0.1028, 0.1033799, 0.103975, 0.1045701, 0.1051652, 0.1057755, 0.1063706, 0.106981, 0.1075761, 0.1081865, 0.1087968, 0.1094072, 0.1100175, 0.1106279, 0.1112535, 0.1118639, 0.1124895, 0.1131151, 0.1137407, 0.1143664, 0.114992, 0.1156176, 0.1162585, 0.1168841, 0.117525, 0.1181659, 0.1188067, 0.1194476, 0.1200885, 0.1207446, 0.1213855, 0.1220417, 0.1226978, 0.1233539, 0.1240101, 0.1246662, 0.1253223, 0.1259937, 0.1266499, 0.1273213, 0.1279927, 0.1286641, 0.1293355, 0.1300069, 0.1306935, 0.1313649, 0.1320516, 0.1327382, 0.1334096, 0.1341115, 0.1347982, 0.1354849, 0.1361868, 0.1368734, 0.1375753, 0.1382773, 0.1389792, 0.1396811, 0.140383, 0.1411002, 0.1418021, 0.1425193, 0.1432364, 0.1439536, 0.1446708, 0.145388, 0.1461204, 0.1468376, 0.14757, 0.1483024, 0.1490349, 0.1497673, 0.1504997, 0.1512322, 0.1519799, 0.1527123, 0.15346, 0.1542077, 0.1549554, 0.1557031, 0.1564508, 0.1572137, 0.1579767, 0.1587243, 0.1594873, 0.1602502, 0.1610132, 0.1617914, 0.1625544, 0.1633326, 0.1640955, 0.1648737, 0.1656519, 0.1664302, 0.1672236, 0.1680018, 0.1687953, 0.1695735, 0.170367, 0.1711604, 0.1719539, 0.1727474, 0.1735561, 0.1743496, 0.1751583, 0.175967, 0.1767758, 0.1775845, 0.1783932, 0.1792172, 0.1800259, 0.1808499, 0.1816739, 0.1824826, 0.1833219, 0.1841459, 0.1849699, 0.1858091, 0.1866331, 0.1874723, 0.1883116, 0.1891508, 0.1900053, 0.1908446, 0.1916838, 0.1925383, 0.1933928, 0.1942473, 0.1951019, 0.1959564, 0.1968261, 0.1976806, 0.1985504, 0.1994202, 0.2002899, 0.2011597, 0.2020294, 0.2028992, 0.2037842, 0.2046693, 0.205539, 0.206424, 0.2073243, 0.2082094, 0.2090944, 0.2099947, 0.2108949, 0.21178, 0.2126802, 0.2135958, 0.2144961, 0.2153964, 0.2163119, 0.2172274, 0.2181277, 0.2190585, 0.2199741, 0.2208896, 0.2218051, 0.2227359, 0.2236667, 0.2245975, 0.2255283, 0.2264591, 0.2273899, 0.228336, 0.2292821, 0.2302129, 0.2311589, 0.232105, 0.2330663, 0.2340124, 0.2349737, 0.2359197, 0.2368811, 0.2378424, 0.2388037, 0.239765, 0.2407416, 0.2417029, 0.2426795, 0.2436561, 0.2446326, 0.2456092, 0.2466011, 0.2475776, 0.2485695, 0.249546, 0.2505379, 0.2515297, 0.2525368, 0.2535286, 0.2545357, 0.2555276, 0.2565347, 0.2575418, 0.2585489, 0.259556, 0.2605783, 0.2615854, 0.2626078, 0.2636301, 0.2646525, 0.2656748, 0.2667124, 0.2677348, 0.2687724, 0.26981, 0.2708324, 0.2718853, 0.2729229, 0.2739605, 0.2750134, 0.276051, 0.2771038, 0.2781567, 0.2792248, 0.2802777, 0.2813306, 0.2823987, 0.2834668, 0.284535, 0.2856031, 0.2866712, 0.2877394, 0.2888228, 0.2899062, 0.2909743, 0.2920577, 0.2931563, 0.2942397, 0.2953231, 0.2964218, 0.2975204, 0.2986191, 0.2997177, 0.3008164, 0.301915, 0.3030289, 0.3041428, 0.3052567, 0.3063706, 0.3074846, 0.3085985, 0.3097124, 0.3108415, 0.3119707, 0.3130999, 0.314229, 0.3153582, 0.3165026, 0.3176318, 0.3187762, 0.3199207, 0.3210651, 0.3222095, 0.3233539, 0.3245136, 0.3256733, 0.3268177, 0.3279774, 0.3291371, 0.330312, 0.3314717, 0.3326467, 0.3338216, 0.3349966, 0.3361715, 0.3373465, 0.3385214, 0.3397116, 0.3408865, 0.3420768, 0.343267, 0.3444724, 0.3456626, 0.3468528, 0.3480583, 0.3492638, 0.3504692, 0.3516747, 0.3528801, 0.3541009, 0.3553063, 0.356527, 0.3577478, 0.3589685, 0.3601892, 0.3614252, 0.3626459, 0.3638819, 0.3651179, 0.3663539, 0.3675898, 0.3688411, 0.3700771, 0.3713283, 0.3725795, 0.3738308, 0.375082, 0.3763333, 0.3775998, 0.378851, 0.3801175, 0.381384, 0.3826505, 0.3839322, 0.3851987, 0.3864805, 0.387747, 0.3890288, 0.3903105, 0.3916075, 0.3928893, 0.3941863, 0.3954681, 0.3967651, 0.3980621, 0.3993744, 0.4006714, 0.4019837, 0.4032807, 0.404593, 0.4059052, 0.4072175, 0.4085451, 0.4098573, 0.4111849, 0.4125124, 0.4138399, 0.4151675, 0.416495, 0.4178378, 0.4191806, 0.4205234, 0.4218662, 0.423209, 0.4245518, 0.4259098, 0.4272526, 0.4286107, 0.4299687, 0.4313268, 0.4326848, 0.4340581, 0.4354314, 0.4367895, 0.4381628, 0.4395514, 0.4409247, 0.442298, 0.4436866, 0.4450752, 0.4464637, 0.4478523, 0.4492409, 0.4506447, 0.4520333, 0.4534371, 0.4548409, 0.4562448, 0.4576486, 0.4590677, 0.4604715, 0.4618906, 0.4633097, 0.4647288, 0.4661631, 0.4675822, 0.4690166, 0.4704356, 0.47187, 0.4733043, 0.4747539, 0.4761883, 0.4776379, 0.4790875, 0.4805371, 0.4819867, 0.4834363, 0.4848859, 0.4863508, 0.4878157, 0.4892805, 0.4907454, 0.4922103, 0.4936904, 0.4951553, 0.4966354, 0.4981155, 0.4995956, 0.501091, 0.5025711, 0.5040665, 0.5055467, 0.507042, 0.5085527, 0.5100481, 0.5115435, 0.5130541, 0.5145647, 0.5160754, 0.517586, 0.5190967, 0.5206226, 0.5221485, 0.5236591, 0.525185, 0.5267262, 0.5282521, 0.529778, 0.5313191, 0.5328603, 0.5344015, 0.5359426, 0.537499, 0.5390402, 0.5405966, 0.542153, 0.5437095, 0.5452659, 0.5468223, 0.548394, 0.5499657, 0.5515373, 0.553109, 0.5546807, 0.5562524, 0.5578393, 0.5594263, 0.5610132, 0.5626001, 0.5641871, 0.565774, 0.5673762, 0.5689784, 0.5705806, 0.5721828, 0.573785, 0.5754025, 0.5770047, 0.5786221, 0.5802396, 0.581857, 0.5834897, 0.5851072, 0.5867399, 0.5883726, 0.5900053, 0.5916381, 0.5932708, 0.5949187, 0.5965667, 0.5982147, 0.5998627, 0.6015106, 0.6031586, 0.6048219, 0.6064851, 0.6081483, 0.6098116, 0.6114748, 0.6131533, 0.6148165, 0.616495, 0.6181735, 0.619852, 0.6215457, 0.6232242, 0.624918, 0.6266117, 0.6283055, 0.6299992, 0.631693, 0.633402, 0.635111, 0.63682, 0.638529, 0.640238, 0.6419471, 0.6436713, 0.6453956, 0.6471199, 0.6488441, 0.6505684, 0.6523079, 0.6540322, 0.6557717, 0.6575113, 0.6592508, 0.6610056, 0.6627451, 0.6644999, 0.6662547, 0.6680095, 0.6697642, 0.6715343, 0.6732891, 0.6750591, 0.6768292, 0.6785992, 0.6803845, 0.6821546, 0.6839399, 0.6857252, 0.6875105, 0.6892958, 0.6910811, 0.6928817, 0.6946822, 0.6964675, 0.6982834, 0.7000839, 0.7018845, 0.7037003, 0.7055161, 0.707332, 0.7091478, 0.7109636, 0.7127947, 0.7146105, 0.7164416, 0.7182727, 0.720119, 0.7219501, 0.7237964, 0.7256275, 0.7274739, 0.7293355, 0.7311818, 0.7330282, 0.7348898, 0.7367514, 0.738613, 0.7404746, 0.7423514, 0.744213, 0.7460899, 0.7479667, 0.7498436, 0.7517205, 0.7536126, 0.7554894, 0.7573816, 0.7592737, 0.7611658, 0.7630732, 0.7649653, 0.7668727, 0.76878, 0.7706874, 0.7725948, 0.7745174, 0.7764248, 0.7783474, 0.7802701, 0.7821927, 0.7841306, 0.7860533, 0.7879911, 0.789929, 0.7918669, 0.7938048, 0.795758, 0.7976959, 0.799649, 0.8016022, 0.8035554, 0.8055238, 0.8074769, 0.8094453, 0.8114137, 0.8133822, 0.8153506, 0.8173342, 0.8193179, 0.8212863, 0.82327, 0.8252689, 0.8272526, 0.8292515, 0.8312352, 0.8332341, 0.8352331, 0.8372473, 0.8392462, 0.8412604, 0.8432746, 0.8452888, 0.847303, 0.8493172, 0.8513466, 0.8533761, 0.8554055, 0.857435, 0.8594644, 0.8614939, 0.8635386, 0.8655833, 0.867628, 0.8696727, 0.8717327, 0.8737774, 0.8758373, 0.8778973, 0.8799573, 0.8820325, 0.8840925, 0.8861677, 0.8882429, 0.8903182, 0.8923934, 0.8944839, 0.8965591, 0.8986496, 0.9007401, 0.9028305, 0.9049363, 0.9070268, 0.9091325, 0.9112383, 0.913344, 0.915465, 0.9175708, 0.9196918, 0.9218128, 0.9239338, 0.9260548, 0.9281758, 0.930312, 0.9324483, 0.9345846, 0.9367208, 0.9388571, 0.9410086, 0.9431601, 0.9453117, 0.9474632, 0.9496147, 0.9517815, 0.953933, 0.9560998, 0.9582666, 0.9604334, 0.9626154, 0.9647822, 0.9669642, 0.9691463, 0.9713283, 0.9735256, 0.9757076, 0.9779049, 0.9801022, 0.9822995, 0.9844968, 0.9867094, 0.988922, 0.9911345, 0.9933471, 0.9955596, 0.9977722, 1.0\",\n                                        \"type\": \"0x72545243\"\n                                    },\n                                    {\n                                        \"name\": \"Green TRC\",\n                                        \"description\": \"0.0, 0.0000763, 0.0001526, 0.0002289, 0.0003052, 0.0003815, 0.0004578, 0.0005341, 0.0006104, 0.0006867, 0.000763, 0.0008392, 0.0009003, 0.0009766, 0.0010529, 0.0011292, 0.0012055, 0.0012818, 0.0013581, 0.0014343, 0.0015106, 0.0015869, 0.0016632, 0.0017395, 0.0018158, 0.0018921, 0.0019684, 0.0020447, 0.002121, 0.0021973, 0.0022736, 0.0023499, 0.0024262, 0.0025025, 0.0025788, 0.0026551, 0.0027161, 0.0027924, 0.0028687, 0.002945, 0.0030213, 0.0030976, 0.0031739, 0.0032502, 0.0033417, 0.003418, 0.0034943, 0.0035859, 0.0036622, 0.0037537, 0.00383, 0.0039216, 0.0040131, 0.0041047, 0.0041962, 0.0042878, 0.0043793, 0.0044709, 0.0045624, 0.0046693, 0.0047608, 0.0048524, 0.0049592, 0.005066, 0.0051575, 0.0052644, 0.0053712, 0.005478, 0.0055848, 0.0056916, 0.0057984, 0.0059052, 0.0060273, 0.0061341, 0.0062562, 0.006363, 0.0064851, 0.0066072, 0.0067292, 0.0068513, 0.0069734, 0.0070954, 0.0072175, 0.0073396, 0.0074617, 0.007599, 0.0077211, 0.0078584, 0.0079957, 0.0081178, 0.0082551, 0.0083925, 0.0085298, 0.0086671, 0.0088045, 0.008957, 0.0090944, 0.0092317, 0.0093843, 0.0095369, 0.0096742, 0.0098268, 0.0099794, 0.010132, 0.0102846, 0.0104372, 0.0105898, 0.0107576, 0.0109102, 0.0110628, 0.0112306, 0.0113985, 0.0115511, 0.0117189, 0.0118868, 0.0120546, 0.0122225, 0.0124056, 0.0125734, 0.0127413, 0.0129244, 0.0130922, 0.0132753, 0.0134585, 0.0136416, 0.0138247, 0.0140078, 0.0141909, 0.014374, 0.0145571, 0.0147555, 0.0149386, 0.0151369, 0.0153201, 0.0155184, 0.0157168, 0.0159152, 0.0161135, 0.0163119, 0.0165255, 0.0167239, 0.0169223, 0.0171359, 0.0173495, 0.0175479, 0.0177615, 0.0179751, 0.0181888, 0.0184024, 0.018616, 0.0188449, 0.0190585, 0.0192874, 0.019501, 0.0197299, 0.0199588, 0.0201877, 0.0204166, 0.0206455, 0.0208743, 0.0211032, 0.0213474, 0.0215763, 0.0218204, 0.0220645, 0.0222934, 0.0225376, 0.0227817, 0.0230259, 0.0232853, 0.0235294, 0.0237736, 0.024033, 0.0242771, 0.0245365, 0.0247959, 0.0250553, 0.0253147, 0.0255741, 0.0258335, 0.0261082, 0.0263676, 0.026627, 0.0269017, 0.0271763, 0.027451, 0.0277256, 0.0280003, 0.028275, 0.0285496, 0.0288243, 0.0291142, 0.0293889, 0.0296788, 0.0299687, 0.0302586, 0.0305486, 0.0308385, 0.0311284, 0.0314183, 0.0317235, 0.0320134, 0.0323186, 0.0326238, 0.032929, 0.0332341, 0.0335393, 0.0338445, 0.0341497, 0.0344549, 0.0347753, 0.0350805, 0.0354009, 0.0357214, 0.0360418, 0.0363622, 0.0366827, 0.0370031, 0.0373388, 0.0376593, 0.037995, 0.0383154, 0.0386511, 0.0389868, 0.0393225, 0.0396582, 0.0399939, 0.0403449, 0.0406806, 0.0410315, 0.0413825, 0.0417182, 0.0420691, 0.0424201, 0.042771, 0.0431373, 0.0434882, 0.0438392, 0.0442054, 0.0445716, 0.0449226, 0.0452888, 0.045655, 0.0460212, 0.0464027, 0.0467689, 0.0471504, 0.0475166, 0.0478981, 0.0482795, 0.048661, 0.0490425, 0.049424, 0.0498054, 0.0501869, 0.0505837, 0.0509804, 0.0513619, 0.0517586, 0.0521553, 0.0525521, 0.0529488, 0.0533608, 0.0537575, 0.0541695, 0.0545663, 0.0549783, 0.0553902, 0.0558022, 0.0562142, 0.0566262, 0.0570535, 0.0574655, 0.0578927, 0.05832, 0.058732, 0.0591592, 0.0595865, 0.060029, 0.0604562, 0.0608835, 0.061326, 0.0617533, 0.0621958, 0.0626383, 0.0630808, 0.0635233, 0.0639811, 0.0644236, 0.0648661, 0.0653239, 0.0657816, 0.0662394, 0.0666972, 0.067155, 0.0676127, 0.0680705, 0.0685435, 0.0690013, 0.0694743, 0.0699474, 0.0704204, 0.0708934, 0.0713664, 0.0718395, 0.0723278, 0.0728008, 0.0732891, 0.0737774, 0.0742657, 0.0747539, 0.0752422, 0.0757305, 0.0762188, 0.0767224, 0.0772259, 0.0777142, 0.0782177, 0.0787213, 0.0792401, 0.0797436, 0.0802472, 0.080766, 0.0812696, 0.0817884, 0.0823072, 0.082826, 0.0833448, 0.0838636, 0.0843977, 0.0849165, 0.0854505, 0.0859846, 0.0865187, 0.0870527, 0.0875868, 0.0881209, 0.0886549, 0.0892042, 0.0897536, 0.0902876, 0.090837, 0.0913863, 0.0919356, 0.0925002, 0.0930495, 0.0936141, 0.0941634, 0.094728, 0.0952926, 0.0958572, 0.0964218, 0.0970016, 0.0975662, 0.098146, 0.0987106, 0.0992905, 0.0998703, 0.1004501, 0.10103, 0.1016251, 0.1022049, 0.1028, 0.1033799, 0.103975, 0.1045701, 0.1051652, 0.1057755, 0.1063706, 0.106981, 0.1075761, 0.1081865, 0.1087968, 0.1094072, 0.1100175, 0.1106279, 0.1112535, 0.1118639, 0.1124895, 0.1131151, 0.1137407, 0.1143664, 0.114992, 0.1156176, 0.1162585, 0.1168841, 0.117525, 0.1181659, 0.1188067, 0.1194476, 0.1200885, 0.1207446, 0.1213855, 0.1220417, 0.1226978, 0.1233539, 0.1240101, 0.1246662, 0.1253223, 0.1259937, 0.1266499, 0.1273213, 0.1279927, 0.1286641, 0.1293355, 0.1300069, 0.1306935, 0.1313649, 0.1320516, 0.1327382, 0.1334096, 0.1341115, 0.1347982, 0.1354849, 0.1361868, 0.1368734, 0.1375753, 0.1382773, 0.1389792, 0.1396811, 0.140383, 0.1411002, 0.1418021, 0.1425193, 0.1432364, 0.1439536, 0.1446708, 0.145388, 0.1461204, 0.1468376, 0.14757, 0.1483024, 0.1490349, 0.1497673, 0.1504997, 0.1512322, 0.1519799, 0.1527123, 0.15346, 0.1542077, 0.1549554, 0.1557031, 0.1564508, 0.1572137, 0.1579767, 0.1587243, 0.1594873, 0.1602502, 0.1610132, 0.1617914, 0.1625544, 0.1633326, 0.1640955, 0.1648737, 0.1656519, 0.1664302, 0.1672236, 0.1680018, 0.1687953, 0.1695735, 0.170367, 0.1711604, 0.1719539, 0.1727474, 0.1735561, 0.1743496, 0.1751583, 0.175967, 0.1767758, 0.1775845, 0.1783932, 0.1792172, 0.1800259, 0.1808499, 0.1816739, 0.1824826, 0.1833219, 0.1841459, 0.1849699, 0.1858091, 0.1866331, 0.1874723, 0.1883116, 0.1891508, 0.1900053, 0.1908446, 0.1916838, 0.1925383, 0.1933928, 0.1942473, 0.1951019, 0.1959564, 0.1968261, 0.1976806, 0.1985504, 0.1994202, 0.2002899, 0.2011597, 0.2020294, 0.2028992, 0.2037842, 0.2046693, 0.205539, 0.206424, 0.2073243, 0.2082094, 0.2090944, 0.2099947, 0.2108949, 0.21178, 0.2126802, 0.2135958, 0.2144961, 0.2153964, 0.2163119, 0.2172274, 0.2181277, 0.2190585, 0.2199741, 0.2208896, 0.2218051, 0.2227359, 0.2236667, 0.2245975, 0.2255283, 0.2264591, 0.2273899, 0.228336, 0.2292821, 0.2302129, 0.2311589, 0.232105, 0.2330663, 0.2340124, 0.2349737, 0.2359197, 0.2368811, 0.2378424, 0.2388037, 0.239765, 0.2407416, 0.2417029, 0.2426795, 0.2436561, 0.2446326, 0.2456092, 0.2466011, 0.2475776, 0.2485695, 0.249546, 0.2505379, 0.2515297, 0.2525368, 0.2535286, 0.2545357, 0.2555276, 0.2565347, 0.2575418, 0.2585489, 0.259556, 0.2605783, 0.2615854, 0.2626078, 0.2636301, 0.2646525, 0.2656748, 0.2667124, 0.2677348, 0.2687724, 0.26981, 0.2708324, 0.2718853, 0.2729229, 0.2739605, 0.2750134, 0.276051, 0.2771038, 0.2781567, 0.2792248, 0.2802777, 0.2813306, 0.2823987, 0.2834668, 0.284535, 0.2856031, 0.2866712, 0.2877394, 0.2888228, 0.2899062, 0.2909743, 0.2920577, 0.2931563, 0.2942397, 0.2953231, 0.2964218, 0.2975204, 0.2986191, 0.2997177, 0.3008164, 0.301915, 0.3030289, 0.3041428, 0.3052567, 0.3063706, 0.3074846, 0.3085985, 0.3097124, 0.3108415, 0.3119707, 0.3130999, 0.314229, 0.3153582, 0.3165026, 0.3176318, 0.3187762, 0.3199207, 0.3210651, 0.3222095, 0.3233539, 0.3245136, 0.3256733, 0.3268177, 0.3279774, 0.3291371, 0.330312, 0.3314717, 0.3326467, 0.3338216, 0.3349966, 0.3361715, 0.3373465, 0.3385214, 0.3397116, 0.3408865, 0.3420768, 0.343267, 0.3444724, 0.3456626, 0.3468528, 0.3480583, 0.3492638, 0.3504692, 0.3516747, 0.3528801, 0.3541009, 0.3553063, 0.356527, 0.3577478, 0.3589685, 0.3601892, 0.3614252, 0.3626459, 0.3638819, 0.3651179, 0.3663539, 0.3675898, 0.3688411, 0.3700771, 0.3713283, 0.3725795, 0.3738308, 0.375082, 0.3763333, 0.3775998, 0.378851, 0.3801175, 0.381384, 0.3826505, 0.3839322, 0.3851987, 0.3864805, 0.387747, 0.3890288, 0.3903105, 0.3916075, 0.3928893, 0.3941863, 0.3954681, 0.3967651, 0.3980621, 0.3993744, 0.4006714, 0.4019837, 0.4032807, 0.404593, 0.4059052, 0.4072175, 0.4085451, 0.4098573, 0.4111849, 0.4125124, 0.4138399, 0.4151675, 0.416495, 0.4178378, 0.4191806, 0.4205234, 0.4218662, 0.423209, 0.4245518, 0.4259098, 0.4272526, 0.4286107, 0.4299687, 0.4313268, 0.4326848, 0.4340581, 0.4354314, 0.4367895, 0.4381628, 0.4395514, 0.4409247, 0.442298, 0.4436866, 0.4450752, 0.4464637, 0.4478523, 0.4492409, 0.4506447, 0.4520333, 0.4534371, 0.4548409, 0.4562448, 0.4576486, 0.4590677, 0.4604715, 0.4618906, 0.4633097, 0.4647288, 0.4661631, 0.4675822, 0.4690166, 0.4704356, 0.47187, 0.4733043, 0.4747539, 0.4761883, 0.4776379, 0.4790875, 0.4805371, 0.4819867, 0.4834363, 0.4848859, 0.4863508, 0.4878157, 0.4892805, 0.4907454, 0.4922103, 0.4936904, 0.4951553, 0.4966354, 0.4981155, 0.4995956, 0.501091, 0.5025711, 0.5040665, 0.5055467, 0.507042, 0.5085527, 0.5100481, 0.5115435, 0.5130541, 0.5145647, 0.5160754, 0.517586, 0.5190967, 0.5206226, 0.5221485, 0.5236591, 0.525185, 0.5267262, 0.5282521, 0.529778, 0.5313191, 0.5328603, 0.5344015, 0.5359426, 0.537499, 0.5390402, 0.5405966, 0.542153, 0.5437095, 0.5452659, 0.5468223, 0.548394, 0.5499657, 0.5515373, 0.553109, 0.5546807, 0.5562524, 0.5578393, 0.5594263, 0.5610132, 0.5626001, 0.5641871, 0.565774, 0.5673762, 0.5689784, 0.5705806, 0.5721828, 0.573785, 0.5754025, 0.5770047, 0.5786221, 0.5802396, 0.581857, 0.5834897, 0.5851072, 0.5867399, 0.5883726, 0.5900053, 0.5916381, 0.5932708, 0.5949187, 0.5965667, 0.5982147, 0.5998627, 0.6015106, 0.6031586, 0.6048219, 0.6064851, 0.6081483, 0.6098116, 0.6114748, 0.6131533, 0.6148165, 0.616495, 0.6181735, 0.619852, 0.6215457, 0.6232242, 0.624918, 0.6266117, 0.6283055, 0.6299992, 0.631693, 0.633402, 0.635111, 0.63682, 0.638529, 0.640238, 0.6419471, 0.6436713, 0.6453956, 0.6471199, 0.6488441, 0.6505684, 0.6523079, 0.6540322, 0.6557717, 0.6575113, 0.6592508, 0.6610056, 0.6627451, 0.6644999, 0.6662547, 0.6680095, 0.6697642, 0.6715343, 0.6732891, 0.6750591, 0.6768292, 0.6785992, 0.6803845, 0.6821546, 0.6839399, 0.6857252, 0.6875105, 0.6892958, 0.6910811, 0.6928817, 0.6946822, 0.6964675, 0.6982834, 0.7000839, 0.7018845, 0.7037003, 0.7055161, 0.707332, 0.7091478, 0.7109636, 0.7127947, 0.7146105, 0.7164416, 0.7182727, 0.720119, 0.7219501, 0.7237964, 0.7256275, 0.7274739, 0.7293355, 0.7311818, 0.7330282, 0.7348898, 0.7367514, 0.738613, 0.7404746, 0.7423514, 0.744213, 0.7460899, 0.7479667, 0.7498436, 0.7517205, 0.7536126, 0.7554894, 0.7573816, 0.7592737, 0.7611658, 0.7630732, 0.7649653, 0.7668727, 0.76878, 0.7706874, 0.7725948, 0.7745174, 0.7764248, 0.7783474, 0.7802701, 0.7821927, 0.7841306, 0.7860533, 0.7879911, 0.789929, 0.7918669, 0.7938048, 0.795758, 0.7976959, 0.799649, 0.8016022, 0.8035554, 0.8055238, 0.8074769, 0.8094453, 0.8114137, 0.8133822, 0.8153506, 0.8173342, 0.8193179, 0.8212863, 0.82327, 0.8252689, 0.8272526, 0.8292515, 0.8312352, 0.8332341, 0.8352331, 0.8372473, 0.8392462, 0.8412604, 0.8432746, 0.8452888, 0.847303, 0.8493172, 0.8513466, 0.8533761, 0.8554055, 0.857435, 0.8594644, 0.8614939, 0.8635386, 0.8655833, 0.867628, 0.8696727, 0.8717327, 0.8737774, 0.8758373, 0.8778973, 0.8799573, 0.8820325, 0.8840925, 0.8861677, 0.8882429, 0.8903182, 0.8923934, 0.8944839, 0.8965591, 0.8986496, 0.9007401, 0.9028305, 0.9049363, 0.9070268, 0.9091325, 0.9112383, 0.913344, 0.915465, 0.9175708, 0.9196918, 0.9218128, 0.9239338, 0.9260548, 0.9281758, 0.930312, 0.9324483, 0.9345846, 0.9367208, 0.9388571, 0.9410086, 0.9431601, 0.9453117, 0.9474632, 0.9496147, 0.9517815, 0.953933, 0.9560998, 0.9582666, 0.9604334, 0.9626154, 0.9647822, 0.9669642, 0.9691463, 0.9713283, 0.9735256, 0.9757076, 0.9779049, 0.9801022, 0.9822995, 0.9844968, 0.9867094, 0.988922, 0.9911345, 0.9933471, 0.9955596, 0.9977722, 1.0\",\n                                        \"type\": \"0x67545243\"\n                                    },\n                                    {\n                                        \"name\": \"Blue TRC\",\n                                        \"description\": \"0.0, 0.0000763, 0.0001526, 0.0002289, 0.0003052, 0.0003815, 0.0004578, 0.0005341, 0.0006104, 0.0006867, 0.000763, 0.0008392, 0.0009003, 0.0009766, 0.0010529, 0.0011292, 0.0012055, 0.0012818, 0.0013581, 0.0014343, 0.0015106, 0.0015869, 0.0016632, 0.0017395, 0.0018158, 0.0018921, 0.0019684, 0.0020447, 0.002121, 0.0021973, 0.0022736, 0.0023499, 0.0024262, 0.0025025, 0.0025788, 0.0026551, 0.0027161, 0.0027924, 0.0028687, 0.002945, 0.0030213, 0.0030976, 0.0031739, 0.0032502, 0.0033417, 0.003418, 0.0034943, 0.0035859, 0.0036622, 0.0037537, 0.00383, 0.0039216, 0.0040131, 0.0041047, 0.0041962, 0.0042878, 0.0043793, 0.0044709, 0.0045624, 0.0046693, 0.0047608, 0.0048524, 0.0049592, 0.005066, 0.0051575, 0.0052644, 0.0053712, 0.005478, 0.0055848, 0.0056916, 0.0057984, 0.0059052, 0.0060273, 0.0061341, 0.0062562, 0.006363, 0.0064851, 0.0066072, 0.0067292, 0.0068513, 0.0069734, 0.0070954, 0.0072175, 0.0073396, 0.0074617, 0.007599, 0.0077211, 0.0078584, 0.0079957, 0.0081178, 0.0082551, 0.0083925, 0.0085298, 0.0086671, 0.0088045, 0.008957, 0.0090944, 0.0092317, 0.0093843, 0.0095369, 0.0096742, 0.0098268, 0.0099794, 0.010132, 0.0102846, 0.0104372, 0.0105898, 0.0107576, 0.0109102, 0.0110628, 0.0112306, 0.0113985, 0.0115511, 0.0117189, 0.0118868, 0.0120546, 0.0122225, 0.0124056, 0.0125734, 0.0127413, 0.0129244, 0.0130922, 0.0132753, 0.0134585, 0.0136416, 0.0138247, 0.0140078, 0.0141909, 0.014374, 0.0145571, 0.0147555, 0.0149386, 0.0151369, 0.0153201, 0.0155184, 0.0157168, 0.0159152, 0.0161135, 0.0163119, 0.0165255, 0.0167239, 0.0169223, 0.0171359, 0.0173495, 0.0175479, 0.0177615, 0.0179751, 0.0181888, 0.0184024, 0.018616, 0.0188449, 0.0190585, 0.0192874, 0.019501, 0.0197299, 0.0199588, 0.0201877, 0.0204166, 0.0206455, 0.0208743, 0.0211032, 0.0213474, 0.0215763, 0.0218204, 0.0220645, 0.0222934, 0.0225376, 0.0227817, 0.0230259, 0.0232853, 0.0235294, 0.0237736, 0.024033, 0.0242771, 0.0245365, 0.0247959, 0.0250553, 0.0253147, 0.0255741, 0.0258335, 0.0261082, 0.0263676, 0.026627, 0.0269017, 0.0271763, 0.027451, 0.0277256, 0.0280003, 0.028275, 0.0285496, 0.0288243, 0.0291142, 0.0293889, 0.0296788, 0.0299687, 0.0302586, 0.0305486, 0.0308385, 0.0311284, 0.0314183, 0.0317235, 0.0320134, 0.0323186, 0.0326238, 0.032929, 0.0332341, 0.0335393, 0.0338445, 0.0341497, 0.0344549, 0.0347753, 0.0350805, 0.0354009, 0.0357214, 0.0360418, 0.0363622, 0.0366827, 0.0370031, 0.0373388, 0.0376593, 0.037995, 0.0383154, 0.0386511, 0.0389868, 0.0393225, 0.0396582, 0.0399939, 0.0403449, 0.0406806, 0.0410315, 0.0413825, 0.0417182, 0.0420691, 0.0424201, 0.042771, 0.0431373, 0.0434882, 0.0438392, 0.0442054, 0.0445716, 0.0449226, 0.0452888, 0.045655, 0.0460212, 0.0464027, 0.0467689, 0.0471504, 0.0475166, 0.0478981, 0.0482795, 0.048661, 0.0490425, 0.049424, 0.0498054, 0.0501869, 0.0505837, 0.0509804, 0.0513619, 0.0517586, 0.0521553, 0.0525521, 0.0529488, 0.0533608, 0.0537575, 0.0541695, 0.0545663, 0.0549783, 0.0553902, 0.0558022, 0.0562142, 0.0566262, 0.0570535, 0.0574655, 0.0578927, 0.05832, 0.058732, 0.0591592, 0.0595865, 0.060029, 0.0604562, 0.0608835, 0.061326, 0.0617533, 0.0621958, 0.0626383, 0.0630808, 0.0635233, 0.0639811, 0.0644236, 0.0648661, 0.0653239, 0.0657816, 0.0662394, 0.0666972, 0.067155, 0.0676127, 0.0680705, 0.0685435, 0.0690013, 0.0694743, 0.0699474, 0.0704204, 0.0708934, 0.0713664, 0.0718395, 0.0723278, 0.0728008, 0.0732891, 0.0737774, 0.0742657, 0.0747539, 0.0752422, 0.0757305, 0.0762188, 0.0767224, 0.0772259, 0.0777142, 0.0782177, 0.0787213, 0.0792401, 0.0797436, 0.0802472, 0.080766, 0.0812696, 0.0817884, 0.0823072, 0.082826, 0.0833448, 0.0838636, 0.0843977, 0.0849165, 0.0854505, 0.0859846, 0.0865187, 0.0870527, 0.0875868, 0.0881209, 0.0886549, 0.0892042, 0.0897536, 0.0902876, 0.090837, 0.0913863, 0.0919356, 0.0925002, 0.0930495, 0.0936141, 0.0941634, 0.094728, 0.0952926, 0.0958572, 0.0964218, 0.0970016, 0.0975662, 0.098146, 0.0987106, 0.0992905, 0.0998703, 0.1004501, 0.10103, 0.1016251, 0.1022049, 0.1028, 0.1033799, 0.103975, 0.1045701, 0.1051652, 0.1057755, 0.1063706, 0.106981, 0.1075761, 0.1081865, 0.1087968, 0.1094072, 0.1100175, 0.1106279, 0.1112535, 0.1118639, 0.1124895, 0.1131151, 0.1137407, 0.1143664, 0.114992, 0.1156176, 0.1162585, 0.1168841, 0.117525, 0.1181659, 0.1188067, 0.1194476, 0.1200885, 0.1207446, 0.1213855, 0.1220417, 0.1226978, 0.1233539, 0.1240101, 0.1246662, 0.1253223, 0.1259937, 0.1266499, 0.1273213, 0.1279927, 0.1286641, 0.1293355, 0.1300069, 0.1306935, 0.1313649, 0.1320516, 0.1327382, 0.1334096, 0.1341115, 0.1347982, 0.1354849, 0.1361868, 0.1368734, 0.1375753, 0.1382773, 0.1389792, 0.1396811, 0.140383, 0.1411002, 0.1418021, 0.1425193, 0.1432364, 0.1439536, 0.1446708, 0.145388, 0.1461204, 0.1468376, 0.14757, 0.1483024, 0.1490349, 0.1497673, 0.1504997, 0.1512322, 0.1519799, 0.1527123, 0.15346, 0.1542077, 0.1549554, 0.1557031, 0.1564508, 0.1572137, 0.1579767, 0.1587243, 0.1594873, 0.1602502, 0.1610132, 0.1617914, 0.1625544, 0.1633326, 0.1640955, 0.1648737, 0.1656519, 0.1664302, 0.1672236, 0.1680018, 0.1687953, 0.1695735, 0.170367, 0.1711604, 0.1719539, 0.1727474, 0.1735561, 0.1743496, 0.1751583, 0.175967, 0.1767758, 0.1775845, 0.1783932, 0.1792172, 0.1800259, 0.1808499, 0.1816739, 0.1824826, 0.1833219, 0.1841459, 0.1849699, 0.1858091, 0.1866331, 0.1874723, 0.1883116, 0.1891508, 0.1900053, 0.1908446, 0.1916838, 0.1925383, 0.1933928, 0.1942473, 0.1951019, 0.1959564, 0.1968261, 0.1976806, 0.1985504, 0.1994202, 0.2002899, 0.2011597, 0.2020294, 0.2028992, 0.2037842, 0.2046693, 0.205539, 0.206424, 0.2073243, 0.2082094, 0.2090944, 0.2099947, 0.2108949, 0.21178, 0.2126802, 0.2135958, 0.2144961, 0.2153964, 0.2163119, 0.2172274, 0.2181277, 0.2190585, 0.2199741, 0.2208896, 0.2218051, 0.2227359, 0.2236667, 0.2245975, 0.2255283, 0.2264591, 0.2273899, 0.228336, 0.2292821, 0.2302129, 0.2311589, 0.232105, 0.2330663, 0.2340124, 0.2349737, 0.2359197, 0.2368811, 0.2378424, 0.2388037, 0.239765, 0.2407416, 0.2417029, 0.2426795, 0.2436561, 0.2446326, 0.2456092, 0.2466011, 0.2475776, 0.2485695, 0.249546, 0.2505379, 0.2515297, 0.2525368, 0.2535286, 0.2545357, 0.2555276, 0.2565347, 0.2575418, 0.2585489, 0.259556, 0.2605783, 0.2615854, 0.2626078, 0.2636301, 0.2646525, 0.2656748, 0.2667124, 0.2677348, 0.2687724, 0.26981, 0.2708324, 0.2718853, 0.2729229, 0.2739605, 0.2750134, 0.276051, 0.2771038, 0.2781567, 0.2792248, 0.2802777, 0.2813306, 0.2823987, 0.2834668, 0.284535, 0.2856031, 0.2866712, 0.2877394, 0.2888228, 0.2899062, 0.2909743, 0.2920577, 0.2931563, 0.2942397, 0.2953231, 0.2964218, 0.2975204, 0.2986191, 0.2997177, 0.3008164, 0.301915, 0.3030289, 0.3041428, 0.3052567, 0.3063706, 0.3074846, 0.3085985, 0.3097124, 0.3108415, 0.3119707, 0.3130999, 0.314229, 0.3153582, 0.3165026, 0.3176318, 0.3187762, 0.3199207, 0.3210651, 0.3222095, 0.3233539, 0.3245136, 0.3256733, 0.3268177, 0.3279774, 0.3291371, 0.330312, 0.3314717, 0.3326467, 0.3338216, 0.3349966, 0.3361715, 0.3373465, 0.3385214, 0.3397116, 0.3408865, 0.3420768, 0.343267, 0.3444724, 0.3456626, 0.3468528, 0.3480583, 0.3492638, 0.3504692, 0.3516747, 0.3528801, 0.3541009, 0.3553063, 0.356527, 0.3577478, 0.3589685, 0.3601892, 0.3614252, 0.3626459, 0.3638819, 0.3651179, 0.3663539, 0.3675898, 0.3688411, 0.3700771, 0.3713283, 0.3725795, 0.3738308, 0.375082, 0.3763333, 0.3775998, 0.378851, 0.3801175, 0.381384, 0.3826505, 0.3839322, 0.3851987, 0.3864805, 0.387747, 0.3890288, 0.3903105, 0.3916075, 0.3928893, 0.3941863, 0.3954681, 0.3967651, 0.3980621, 0.3993744, 0.4006714, 0.4019837, 0.4032807, 0.404593, 0.4059052, 0.4072175, 0.4085451, 0.4098573, 0.4111849, 0.4125124, 0.4138399, 0.4151675, 0.416495, 0.4178378, 0.4191806, 0.4205234, 0.4218662, 0.423209, 0.4245518, 0.4259098, 0.4272526, 0.4286107, 0.4299687, 0.4313268, 0.4326848, 0.4340581, 0.4354314, 0.4367895, 0.4381628, 0.4395514, 0.4409247, 0.442298, 0.4436866, 0.4450752, 0.4464637, 0.4478523, 0.4492409, 0.4506447, 0.4520333, 0.4534371, 0.4548409, 0.4562448, 0.4576486, 0.4590677, 0.4604715, 0.4618906, 0.4633097, 0.4647288, 0.4661631, 0.4675822, 0.4690166, 0.4704356, 0.47187, 0.4733043, 0.4747539, 0.4761883, 0.4776379, 0.4790875, 0.4805371, 0.4819867, 0.4834363, 0.4848859, 0.4863508, 0.4878157, 0.4892805, 0.4907454, 0.4922103, 0.4936904, 0.4951553, 0.4966354, 0.4981155, 0.4995956, 0.501091, 0.5025711, 0.5040665, 0.5055467, 0.507042, 0.5085527, 0.5100481, 0.5115435, 0.5130541, 0.5145647, 0.5160754, 0.517586, 0.5190967, 0.5206226, 0.5221485, 0.5236591, 0.525185, 0.5267262, 0.5282521, 0.529778, 0.5313191, 0.5328603, 0.5344015, 0.5359426, 0.537499, 0.5390402, 0.5405966, 0.542153, 0.5437095, 0.5452659, 0.5468223, 0.548394, 0.5499657, 0.5515373, 0.553109, 0.5546807, 0.5562524, 0.5578393, 0.5594263, 0.5610132, 0.5626001, 0.5641871, 0.565774, 0.5673762, 0.5689784, 0.5705806, 0.5721828, 0.573785, 0.5754025, 0.5770047, 0.5786221, 0.5802396, 0.581857, 0.5834897, 0.5851072, 0.5867399, 0.5883726, 0.5900053, 0.5916381, 0.5932708, 0.5949187, 0.5965667, 0.5982147, 0.5998627, 0.6015106, 0.6031586, 0.6048219, 0.6064851, 0.6081483, 0.6098116, 0.6114748, 0.6131533, 0.6148165, 0.616495, 0.6181735, 0.619852, 0.6215457, 0.6232242, 0.624918, 0.6266117, 0.6283055, 0.6299992, 0.631693, 0.633402, 0.635111, 0.63682, 0.638529, 0.640238, 0.6419471, 0.6436713, 0.6453956, 0.6471199, 0.6488441, 0.6505684, 0.6523079, 0.6540322, 0.6557717, 0.6575113, 0.6592508, 0.6610056, 0.6627451, 0.6644999, 0.6662547, 0.6680095, 0.6697642, 0.6715343, 0.6732891, 0.6750591, 0.6768292, 0.6785992, 0.6803845, 0.6821546, 0.6839399, 0.6857252, 0.6875105, 0.6892958, 0.6910811, 0.6928817, 0.6946822, 0.6964675, 0.6982834, 0.7000839, 0.7018845, 0.7037003, 0.7055161, 0.707332, 0.7091478, 0.7109636, 0.7127947, 0.7146105, 0.7164416, 0.7182727, 0.720119, 0.7219501, 0.7237964, 0.7256275, 0.7274739, 0.7293355, 0.7311818, 0.7330282, 0.7348898, 0.7367514, 0.738613, 0.7404746, 0.7423514, 0.744213, 0.7460899, 0.7479667, 0.7498436, 0.7517205, 0.7536126, 0.7554894, 0.7573816, 0.7592737, 0.7611658, 0.7630732, 0.7649653, 0.7668727, 0.76878, 0.7706874, 0.7725948, 0.7745174, 0.7764248, 0.7783474, 0.7802701, 0.7821927, 0.7841306, 0.7860533, 0.7879911, 0.789929, 0.7918669, 0.7938048, 0.795758, 0.7976959, 0.799649, 0.8016022, 0.8035554, 0.8055238, 0.8074769, 0.8094453, 0.8114137, 0.8133822, 0.8153506, 0.8173342, 0.8193179, 0.8212863, 0.82327, 0.8252689, 0.8272526, 0.8292515, 0.8312352, 0.8332341, 0.8352331, 0.8372473, 0.8392462, 0.8412604, 0.8432746, 0.8452888, 0.847303, 0.8493172, 0.8513466, 0.8533761, 0.8554055, 0.857435, 0.8594644, 0.8614939, 0.8635386, 0.8655833, 0.867628, 0.8696727, 0.8717327, 0.8737774, 0.8758373, 0.8778973, 0.8799573, 0.8820325, 0.8840925, 0.8861677, 0.8882429, 0.8903182, 0.8923934, 0.8944839, 0.8965591, 0.8986496, 0.9007401, 0.9028305, 0.9049363, 0.9070268, 0.9091325, 0.9112383, 0.913344, 0.915465, 0.9175708, 0.9196918, 0.9218128, 0.9239338, 0.9260548, 0.9281758, 0.930312, 0.9324483, 0.9345846, 0.9367208, 0.9388571, 0.9410086, 0.9431601, 0.9453117, 0.9474632, 0.9496147, 0.9517815, 0.953933, 0.9560998, 0.9582666, 0.9604334, 0.9626154, 0.9647822, 0.9669642, 0.9691463, 0.9713283, 0.9735256, 0.9757076, 0.9779049, 0.9801022, 0.9822995, 0.9844968, 0.9867094, 0.988922, 0.9911345, 0.9933471, 0.9955596, 0.9977722, 1.0\",\n                                        \"type\": \"0x62545243\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"Photoshop\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Caption Digest\",\n                                        \"description\": \"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0\",\n                                        \"type\": \"0x0425\"\n                                    },\n                                    {\n                                        \"name\": \"Print Info 2\",\n                                        \"description\": \"[229 values]\",\n                                        \"type\": \"0x043a\"\n                                    },\n                                    {\n                                        \"name\": \"Print Style\",\n                                        \"description\": \"[557 values]\",\n                                        \"type\": \"0x043b\"\n                                    },\n                                    {\n                                        \"name\": \"Resolution Info\",\n                                        \"description\": \"72x72 DPI\",\n                                        \"type\": \"0x03ed\"\n                                    },\n                                    {\n                                        \"name\": \"Print Scale\",\n                                        \"description\": \"Centered, Scale 1.0\",\n                                        \"type\": \"0x0426\"\n                                    },\n                                    {\n                                        \"name\": \"Global Angle\",\n                                        \"description\": \"120\",\n                                        \"type\": \"0x040d\"\n                                    },\n                                    {\n                                        \"name\": \"Global Altitude\",\n                                        \"description\": \"30\",\n                                        \"type\": \"0x0419\"\n                                    },\n                                    {\n                                        \"name\": \"Print Flags\",\n                                        \"description\": \"0 0 0 0 0 0 0 0 1\",\n                                        \"type\": \"0x03f3\"\n                                    },\n                                    {\n                                        \"name\": \"Print Flags Information\",\n                                        \"description\": \"0 1 0 0 0 0 0 0 0 2\",\n                                        \"type\": \"0x2710\"\n                                    },\n                                    {\n                                        \"name\": \"Color Halftoning Information\",\n                                        \"description\": \"[72 values]\",\n                                        \"type\": \"0x03f5\"\n                                    },\n                                    {\n                                        \"name\": \"Color Transfer Functions\",\n                                        \"description\": \"[112 values]\",\n                                        \"type\": \"0x03f8\"\n                                    },\n                                    {\n                                        \"name\": \"Layer State Information\",\n                                        \"description\": \"0 23\",\n                                        \"type\": \"0x0400\"\n                                    },\n                                    {\n                                        \"name\": \"Layers Group Information\",\n                                        \"description\": \"[76 values]\",\n                                        \"type\": \"0x0402\"\n                                    },\n                                    {\n                                        \"name\": \"Layer Groups Enabled ID\",\n                                        \"description\": \"[38 values]\",\n                                        \"type\": \"0x0430\"\n                                    },\n                                    {\n                                        \"name\": \"Layer Selection IDs\",\n                                        \"description\": \"0 1 0 0 0 28\",\n                                        \"type\": \"0x042d\"\n                                    },\n                                    {\n                                        \"name\": \"Grid and Guides Information\",\n                                        \"description\": \"[26 values]\",\n                                        \"type\": \"0x0408\"\n                                    },\n                                    {\n                                        \"name\": \"URL List\",\n                                        \"description\": \"0\",\n                                        \"type\": \"0x041e\"\n                                    },\n                                    {\n                                        \"name\": \"Slices\",\n                                        \"description\": \"65151 (0,0,1200,1200) 1 Slices\",\n                                        \"type\": \"0x041a\"\n                                    },\n                                    {\n                                        \"name\": \"Pixel Aspect Ratio\",\n                                        \"description\": \"1.0\",\n                                        \"type\": \"0x0428\"\n                                    },\n                                    {\n                                        \"name\": \"Seed Number\",\n                                        \"description\": \"45\",\n                                        \"type\": \"0x0414\"\n                                    },\n                                    {\n                                        \"name\": \"Thumbnail Data\",\n                                        \"description\": \"JpegRGB, 160x160, Decomp 76800 bytes, 1572865 bpp, 5569 bytes\",\n                                        \"type\": \"0x040c\"\n                                    },\n                                    {\n                                        \"name\": \"Version Info\",\n                                        \"description\": \"1 (Adobe Photoshop, Adobe Photoshop CS6) 1\",\n                                        \"type\": \"0x0421\"\n                                    },\n                                    {\n                                        \"name\": \"Unknown tag (0x0401)\",\n                                        \"description\": \"[494 values]\",\n                                        \"type\": \"0x0401\"\n                                    },\n                                    {\n                                        \"name\": \"JPEG Quality\",\n                                        \"description\": \"12 (Maximum), Progressive format, 3 scans\",\n                                        \"type\": \"0x0406\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"Huffman\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Number of Tables\",\n                                        \"description\": \"4 Huffman tables\",\n                                        \"type\": \"0x0001\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"File Type\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"Detected File Type Name\",\n                                        \"description\": \"JPEG\",\n                                        \"type\": \"0x0001\"\n                                    },\n                                    {\n                                        \"name\": \"Detected File Type Long Name\",\n                                        \"description\": \"Joint Photographic Experts Group\",\n                                        \"type\": \"0x0002\"\n                                    },\n                                    {\n                                        \"name\": \"Detected MIME Type\",\n                                        \"description\": \"image/jpeg\",\n                                        \"type\": \"0x0003\"\n                                    },\n                                    {\n                                        \"name\": \"Expected File Name Extension\",\n                                        \"description\": \"jpg\",\n                                        \"type\": \"0x0004\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"name\": \"File\",\n                                \"tags\": [\n                                    {\n                                        \"name\": \"File Name\",\n                                        \"description\": \"comp-1.jpeg\",\n                                        \"type\": \"0x0001\"\n                                    },\n                                    {\n                                        \"name\": \"File Size\",\n                                        \"description\": \"121103 bytes\",\n                                        \"type\": \"0x0002\"\n                                    },\n                                    {\n                                        \"name\": \"File Modified Date\",\n                                        \"description\": \"Wed Jan 17 16:18:49 -06:00 2024\",\n                                        \"type\": \"0x0003\"\n                                    }\n                                ]\n                            }\n                        ],\n                        \"extension\": \"jpeg\"\n                    }\n                },\n                {\n                    \"id\": 5609953,\n                    \"value\": \"4 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 5726659,\n                    \"value\": \"3 Stage\",\n                    \"abbreviation\": \"\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096589,\n                    \"value\": \"5 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096590,\n                    \"value\": \"6 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096591,\n                    \"value\": \"7 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096592,\n                    \"value\": \"8 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096593,\n                    \"value\": \"9 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096594,\n                    \"value\": \"10 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096595,\n                    \"value\": \"11 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096596,\n                    \"value\": \"12 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096597,\n                    \"value\": \"13 Stage\",\n                    \"defaultOption\": false\n                },\n                {\n                    \"id\": 8096598,\n                    \"value\": \"14 Stage\",\n                    \"defaultOption\": false\n                }\n            ],\n            \"element\": {\n                \"minOccurs\": \"1\",\n                \"maxOccurs\": \"1\"\n            },\n            \"multipartElements\": [],\n            \"createuserId\": 4018007131,\n            \"updateuserId\": 4018007131\n        },\n        {\n            \"id\": 20586280,\n            \"name\": \"(Tank) Size\",\n            \"key\": \"tank_size\",\n            \"dataType\": \"STRING\",\n            \"editor\": \"DEFAULT\",\n            \"searchFacet\": true,\n            \"validationVersion\": \"XSD\",\n            \"documentation\": \"Tank Size\",\n            \"conditionalAttributeKeys\": [],\n            \"updateUserName\": \"Super Admin\",\n            \"createDate\": 1611153367919,\n            \"createUserName\": \"Catsy Administrator\",\n            \"updateDate\": 1729774120162,\n            \"localizedId\": 20586340,\n            \"localeId\": 4000001089,\n            \"locale\": \"global\",\n            \"localAttributes\": [\n                {\n                    \"id\": 20586340,\n                    \"name\": \"(Tank) Size\",\n                    \"key\": \"tank_size\",\n                    \"dataType\": \"STRING\",\n                    \"localizedId\": 20586340,\n                    \"localeId\": 4000001089,\n                    \"locale\": \"global\",\n                    \"parentId\": 20586280,\n                    \"parentKey\": \"tank_size\",\n                    \"picklistId\": null,\n                    \"picklistType\": null,\n                    \"picklistValues\": [],\n                    \"element\": {\n                        \"maxLength\": \"4000\"\n                    }\n                }\n            ],\n            \"parentId\": 20586280,\n            \"parentKey\": \"tank_size\",\n            \"evaluation\": {\n                \"specificity\": \"MODEL\",\n                \"engine\": \"NONE\",\n                \"editor\": \"NONE\",\n                \"formula\": null,\n                \"enhancedContentTemplateId\": null,\n                \"display\": null,\n                \"mappedKey\": null,\n                \"referencedKeys\": null\n            },\n            \"conditions\": {},\n            \"picklistId\": null,\n            \"picklistType\": null,\n            \"picklistValues\": [],\n            \"element\": {\n                \"maxLength\": \"4000\"\n            },\n            \"multipartElements\": [],\n            \"createuserId\": 4018007130,\n            \"updateuserId\": 4018007131\n        },\n        {\n            \"id\": 20586281,\n            \"name\": \"(Tank) Style\",\n            \"key\": \"tank_style\",\n            \"dataType\": \"STRING\",\n            \"editor\": \"DEFAULT\",\n            \"searchFacet\": true,\n            \"validationVersion\": \"XSD\",\n            \"conditionalAttributeKeys\": [],\n            \"updateUserName\": \"Super Admin\",\n            \"createDate\": 1611153367919,\n            \"createUserName\": \"Catsy Administrator\",\n            \"updateDate\": 1744154240842,\n            \"localizedId\": 20586341,\n            \"localeId\": 4000001089,\n            \"locale\": \"global\",\n            \"localAttributes\": [\n                {\n                    \"id\": 20586341,\n                    \"name\": \"(Tank) Style\",\n                    \"key\": \"tank_style\",\n                    \"dataType\": \"STRING\",\n                    \"localizedId\": 20586341,\n                    \"localeId\": 4000001089,\n                    \"locale\": \"global\",\n                    \"parentId\": 20586281,\n                    \"parentKey\": \"tank_style\",\n                    \"picklistId\": null,\n                    \"picklistType\": null,\n                    \"picklistValues\": [],\n                    \"element\": {\n                        \"maxLength\": \"4000\"\n                    }\n                }\n            ],\n            \"parentId\": 20586281,\n            \"parentKey\": \"tank_style\",\n            \"evaluation\": {\n                \"specificity\": \"MODEL\",\n                \"engine\": \"NONE\",\n                \"editor\": \"NONE\",\n                \"formula\": null,\n                \"enhancedContentTemplateId\": null,\n                \"display\": null,\n                \"mappedKey\": null,\n                \"referencedKeys\": null\n            },\n            \"conditions\": {},\n            \"picklistId\": null,\n            \"picklistType\": null,\n            \"picklistValues\": [],\n            \"element\": {\n                \"maxLength\": \"4000\"\n            },\n            \"multipartElements\": [],\n            \"createuserId\": 4018007130,\n            \"updateuserId\": 4018007131\n        },\n        {\n            \"id\": 20586251,\n            \"name\": \"Cylinder Material\",\n            \"key\": \"cylinder_material\",\n            \"dataType\": \"STRING\",\n            \"editor\": \"DEFAULT\",\n            \"validationVersion\": \"XSD\",\n            \"conditionalAttributeKeys\": [],\n            \"updateUserName\": \"Super Admin\",\n            \"createDate\": 1611153367919,\n            \"createUserName\": \"Catsy Administrator\",\n            \"updateDate\": 1684768512687,\n            \"localizedId\": 20586311,\n            \"localeId\": 4000001089,\n            \"locale\": \"global\",\n            \"localAttributes\": [\n                {\n                    \"id\": 20586311,\n                    \"name\": \"Cylinder Material\",\n                    \"key\": \"cylinder_material\",\n                    \"dataType\": \"STRING\",\n                    \"localizedId\": 20586311,\n                    \"localeId\": 4000001089,\n                    \"locale\": \"global\",\n                    \"parentId\": 20586251,\n                    \"parentKey\": \"cylinder_material\",\n                    \"picklistId\": null,\n                    \"picklistType\": null,\n                    \"picklistValues\": [],\n                    \"element\": {\n                        \"maxLength\": \"4000\"\n                    }\n                }\n            ],\n            \"parentId\": 20586251,\n            \"parentKey\": \"cylinder_material\",\n            \"evaluation\": {\n                \"specificity\": \"MODEL\",\n                \"engine\": \"NONE\",\n                \"editor\": \"NONE\",\n                \"formula\": null,\n                \"enhancedContentTemplateId\": null,\n                \"display\": null,\n                \"mappedKey\": null,\n                \"referencedKeys\": null\n            },\n            \"conditions\": {},\n            \"picklistId\": null,\n            \"picklistType\": null,\n            \"picklistValues\": [],\n            \"element\": {\n                \"maxLength\": \"4000\"\n            },\n            \"multipartElements\": [],\n            \"createuserId\": 4018007130,\n            \"updateuserId\": 4018007131\n        },\n        {\n            \"id\": 20734474,\n            \"name\": \"Input Voltage\",\n            \"key\": \"input_voltage\",\n            \"dataType\": \"STRING\",\n            \"editor\": \"DEFAULT\",\n            \"validationVersion\": \"XSD\",\n            \"conditionalAttributeKeys\": [],\n            \"updateUserName\": \"Super Admin\",\n            \"createDate\": 1632948805785,\n            \"createUserName\": \"Super Admin\",\n            \"updateDate\": 1684768512687,\n            \"localizedId\": 20734475,\n            \"localeId\": 4000001089,\n            \"locale\": \"global\",\n            \"localAttributes\": [\n                {\n                    \"id\": 20734475,\n                    \"name\": \"Input Voltage\",\n                    \"key\": \"input_voltage\",\n                    \"dataType\": \"STRING\",\n                    \"localizedId\": 20734475,\n                    \"localeId\": 4000001089,\n                    \"locale\": \"global\",\n                    \"parentId\": 20734474,\n                    \"parentKey\": \"input_voltage\",\n                    \"picklistId\": null,\n                    \"picklistType\": null,\n                    \"picklistValues\": [],\n                    \"element\": {}\n                }\n            ],\n            \"parentId\": 20734474,\n            \"parentKey\": \"input_voltage\",\n            \"evaluation\": {\n                \"specificity\": \"MODEL\",\n                \"engine\": \"NONE\",\n                \"editor\": \"NONE\",\n                \"formula\": null,\n                \"enhancedContentTemplateId\": null,\n                \"display\": null,\n                \"mappedKey\": null,\n                \"referencedKeys\": null\n            },\n            \"conditions\": {},\n            \"picklistId\": null,\n            \"picklistType\": null,\n            \"picklistValues\": [],\n            \"element\": {},\n            \"multipartElements\": [],\n            \"createuserId\": 4018007131,\n            \"updateuserId\": 4018007131\n        }\n    ],\n    \"variants\": [\n        {\n            \"id\": 17412003,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"variants\": [\n                {\n                    \"id\": 17412003,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1743511313208,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680318,\n                        4004680743\n                    ],\n                    \"completeness_score\": 79,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"tools\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"yboe_ship_pack_desc\": null,\n                    \"yboe_peak_decibels\": null,\n                    \"explosive\": \"Yes\",\n                    \"yboe_compatible_inserts_partial\": null,\n                    \"yboe_selling_length\": \"18\\\"\",\n                    \"yboe_max_pressure\": null,\n                    \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n                    \"sohd_height\": null,\n                    \"yboe_masterpack_height\": \"30\\\"\",\n                    \"coverage_length\": null,\n                    \"sohd_iso_specifications\": null,\n                    \"yboe_top_material\": null,\n                    \"grainger_part_number\": \"1AD3433\",\n                    \"yboe_test\": null,\n                    \"yboe_pantiltzoom_functionalities\": null,\n                    \"yboe_website\": null,\n                    \"yboe_screw_type_compatibility\": null,\n                    \"sohd_power_source\": null,\n                    \"yboe_unit_inchmm\": null,\n                    \"country_of_origin\": \"China\",\n                    \"hazardous\": \"Yes\",\n                    \"sohd_cad_drawings_file_name\": null,\n                    \"yboe_ship_pack_weight\": null,\n                    \"yboe_hand\": null,\n                    \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"sohd_scheduleclass\": null,\n                    \"case_pack_upcean\": null,\n                    \"yboe_delta\": null,\n                    \"yboe_stc\": null,\n                    \"yboe_heat_capacity\": null,\n                    \"yboe_inner_pack_weight\": \"60 lbs\",\n                    \"sohd_left_view_image_file_name\": null,\n                    \"main_material\": \"Brass\",\n                    \"ship_pack_weight\": null,\n                    \"yboe_pan_range\": null,\n                    \"auto_linked_image\": null,\n                    \"twql_inner_pack_width\": null,\n                    \"yboe_case_pack_upcean\": null,\n                    \"yboe_inner_pack_width\": null,\n                    \"sohd_temperature_rating\": null,\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"sohd_cord_length\": null,\n                    \"generate_technical_attributes\": null,\n                    \"yboe_tilt_speed\": null,\n                    \"yboe_asin\": \"32BH232H1\",\n                    \"yboe_flammable\": \"No\",\n                    \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_disposable\": null,\n                    \"website\": null,\n                    \"sohd_niosh_specifications\": null,\n                    \"yboe_masterpack_weight\": \"300 lbs\",\n                    \"yboe_status\": \"Active\",\n                    \"yboe_grade\": \"D\",\n                    \"list_price\": \"$350\",\n                    \"sohd_application\": null,\n                    \"yrfa_uom\": null,\n                    \"sohd_nsf_certified\": null,\n                    \"yboe_master_code\": null,\n                    \"sohd_right_view_image_file_name\": null,\n                    \"yboe_btu\": null,\n                    \"yboe_impact_rating\": null,\n                    \"yboe_parent_sku\": \"RFOF-8052\",\n                    \"sohd_wire_gauge\": null,\n                    \"yboe_weldon_flat\": null,\n                    \"sohd_product_type\": \"Waste Basket\",\n                    \"sohd_amp\": null,\n                    \"tank_size\": \"30 Gal\",\n                    \"yboe_country_of_origin_old\": null,\n                    \"yboe_appliance_input\": null,\n                    \"sohd_installation_type\": null,\n                    \"sohd_fm_approved\": null,\n                    \"ship_pack_height\": null,\n                    \"yboe_master_pack_desc\": \"Pack of 4\",\n                    \"sohd_collection\": null,\n                    \"computed_price\": null,\n                    \"twql_inner_pack_weight\": \"60 lbs\",\n                    \"twql_master_pack_desc\": \"Pack of 4\",\n                    \"yboe_assembly_instructions\": null,\n                    \"sohd_glove_type\": null,\n                    \"yboe_iic_approvals\": null,\n                    \"twql_ship_pack_height\": null,\n                    \"yboe_sell_pack_qty\": \"1\",\n                    \"yboe_dmpicklista\": null,\n                    \"ship_pack_length\": null,\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"sohd_mss_specifications\": null,\n                    \"yboe_product_color\": null,\n                    \"sohd_weight\": null,\n                    \"yboe_poisonous\": null,\n                    \"yboe_dc_cutting_diameter_mm\": null,\n                    \"sohd_watts\": null,\n                    \"yboe_pilot_diameter_mm\": null,\n                    \"yboe_vendor\": null,\n                    \"yboe_base_material_details\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"yboe_google_keywords\": null,\n                    \"yboe_shcs_size\": null,\n                    \"yboe_masterpack_width\": \"36\\\"\",\n                    \"yboe_supplier_intended_and_approved_use\": null,\n                    \"twql_inner_pack_length\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"yboe_certification_date\": null,\n                    \"yboe_selling_weight\": \"50 lbs\",\n                    \"main_image\": \"4070863028\",\n                    \"action_photo\": null,\n                    \"yboe_pilot_type\": null,\n                    \"lifestyle_image\": null,\n                    \"yboe_number_of_inserts\": null,\n                    \"yboe_gender\": null,\n                    \"material_type\": \"Steel\",\n                    \"muko_length\": null,\n                    \"sohd_light_bulb_shape_code\": null,\n                    \"sohd_alt_product_number\": null,\n                    \"purchasing_completeness\": \"50\",\n                    \"yboe_field_of_view\": null,\n                    \"sohd_x\": null,\n                    \"yboe_publish_to_b2b_website\": \"Yes\",\n                    \"twql_sell_pack_qty\": \"1\",\n                    \"yboe_pump_location\": null,\n                    \"sohd_ce_approved\": null,\n                    \"accessory_product\": null,\n                    \"sohd_video_asset_reference_id\": null,\n                    \"case_pack_quantity\": null,\n                    \"yboe_toolholder_style\": null,\n                    \"yboe_category\": \"Tools > Power Tools > Compressors\",\n                    \"inner_pack_width\": null,\n                    \"sohd_x_3\": null,\n                    \"sohd_x_2\": null,\n                    \"sohd_x_5\": null,\n                    \"ship_pack_desc\": null,\n                    \"yboe_dfdfdfd\": null,\n                    \"sohd_x_4\": null,\n                    \"yboe_top_manufactured_wood_type\": null,\n                    \"yboe_horse_power\": null,\n                    \"yboe_secondary_category\": null,\n                    \"selling_length\": \"18\\\"\",\n                    \"yboe_lens_type\": null,\n                    \"yboe_attribute_1\": null,\n                    \"yboe_attribute_2\": null,\n                    \"twql_master_pack_qty\": \"4\",\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"yboe_companywebsite\": null,\n                    \"asin\": \"32BH232H1\",\n                    \"sohd_number_of_pieces\": null,\n                    \"generated_description\": null,\n                    \"yboe_components\": null,\n                    \"action_shot\": null,\n                    \"yboe_lifestyle_image\": null,\n                    \"yboe_hazardous\": \"Yes\",\n                    \"yboe_action_photo\": null,\n                    \"sohd_ul_listed\": null,\n                    \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><strong>Product Dimensional Chart</strong></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr><tr><td>Weight</td><td>30 Lbs</td></tr></tbody></table></figure><ul><li><strong>Made in Canada</strong></li><li><strong>Tough Steel</strong></li><li><strong>Ergonomic Design</strong></li></ul>\",\n                    \"number\": \"RFOF-8052\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"yboe_iic\": null,\n                    \"sohd_nsf_specifications\": null,\n                    \"warranty\": \"1 Year\",\n                    \"yboe_repair_policy\": null,\n                    \"sohd_brand_type\": null,\n                    \"additional_images\": null,\n                    \"sohd_epa_compliant\": null,\n                    \"yboe_grainger_part_number\": \"1AD3433\",\n                    \"yboe_feature_benefit_6\": null,\n                    \"yboe_explosive\": \"Yes\",\n                    \"master_pack_qty\": \"4\",\n                    \"yboe_material_type\": \"Steel\",\n                    \"upc\": null,\n                    \"yboe_packaged_asset\": null,\n                    \"yboe_map_price\": null,\n                    \"twql_inner_pack_height\": null,\n                    \"zhz_material\": null,\n                    \"yboe_minimum_illumination\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"twql_sku\": \"RFOF-8052\",\n                    \"yboe_masterpack_length\": \"48\\\"\",\n                    \"status\": \"Active\",\n                    \"sohd_brand_names\": null,\n                    \"yboe_storage\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_seat_dimensions\": null,\n                    \"yboe_maximum_operating_temperature\": null,\n                    \"yboe_base_material\": null,\n                    \"yboe_drawers_included\": null,\n                    \"yboe_burner\": null,\n                    \"yboe_life_stage_2\": null,\n                    \"yboe_mkt_comp\": \"0\",\n                    \"yboe_dcon_connection_diameter_decimal_inch\": null,\n                    \"yboe_shelves_included\": null,\n                    \"yboe_sellpack_height\": \"9\\\"\",\n                    \"sohd_maximum_pressure\": null,\n                    \"muko_weight\": null,\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"sohd_ansi_specifications\": null,\n                    \"yboe_pilot_diameter_decimal_inch\": null,\n                    \"sohd_item_class\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_asse_standards\": null,\n                    \"muko_height\": null,\n                    \"coverage_level\": null,\n                    \"yboe_complementary_products\": null,\n                    \"mkt_comp\": \"0\",\n                    \"yboe_extra_long_name_for_website\": null,\n                    \"yboe_fuel\": null,\n                    \"sohd_size\": null,\n                    \"yboe_seat_height_from_floor\": null,\n                    \"sohd_colorfinish\": null,\n                    \"sohd_length\": null,\n                    \"twql_ship_pack_desc\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"sohd_submittals_asset_file_name\": null,\n                    \"sohd_scaqmd_compliant\": null,\n                    \"yboe_rated_voltage_v\": null,\n                    \"sohd_mfgsupplier_name_id\": null,\n                    \"keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"benefit_6\": null,\n                    \"benefit_4\": \"Easily stackable with removable handle\",\n                    \"benefit_5\": \"Made in USA\",\n                    \"benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"benefit_3\": \"Light and portable\",\n                    \"sohd_bulb_type\": null,\n                    \"sohd_lifestyle_image_file_name\": null,\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"yboe_rated_current_a\": null,\n                    \"sohd_energy_guide_file_name\": null,\n                    \"yboe_efficiency\": null,\n                    \"twql_ship_pack_length\": null,\n                    \"yboe_sell_pack_desc\": \"Each\",\n                    \"customer_part_number\": null,\n                    \"yboe_insert_holding_method\": null,\n                    \"yboe_spec_sheet\": null,\n                    \"yboe_environmental_rating\": null,\n                    \"yboe_used_with\": [\n                        \"20023094\"\n                    ],\n                    \"extra_long_name_for_website\": null,\n                    \"sohd_awwa_specifications\": null,\n                    \"yboe_supplier_stock_no\": \"8221291\",\n                    \"yboe_long_name_for_ebay\": null,\n                    \"sohd_fitting_size_1\": null,\n                    \"sohd_gender\": null,\n                    \"yboe_image_url\": null,\n                    \"sohd_carbotcleed_compliant\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8052\",\n                    \"sohd_optional_accessory\": null,\n                    \"sohd_baa_compliant\": null,\n                    \"sohd_top_view_image_file_name\": null,\n                    \"yboe_pan_speed\": null,\n                    \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_customer_part_number\": null,\n                    \"color_option\": \"Garden Green\",\n                    \"twql_sell_pack_weight\": \"50 lbs\",\n                    \"twql_sell_pack_width\": \"18\\\"\",\n                    \"sohd_required_accessory\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"sohd_reusable\": null,\n                    \"yboe_country_of_origin\": \"China\",\n                    \"yboe_max_resolution\": null,\n                    \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n                    \"yboe_color_multi\": null,\n                    \"sohd_upc\": null,\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"sohd_asme_specifications\": null,\n                    \"sohd_csa_certified\": null,\n                    \"sohd_sku_image_notes\": null,\n                    \"sohd_coating\": null,\n                    \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n                    \"yboe_arm_height_from_floor\": null,\n                    \"yboe_safety_data_sheet\": null,\n                    \"application\": null,\n                    \"sohd_brand_model_compatibility\": null,\n                    \"coverage_description_pt\": null,\n                    \"yboe_product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"3 Stage\",\n                    \"warranty_language\": \"Manufacturer Defects Only\",\n                    \"yboe_product_dimensions_w_x_d_x_h\": null,\n                    \"sell_pack_desc\": \"Each\",\n                    \"sohd_mfg_product_number\": \"RFOF-8052\",\n                    \"yboe_additional_images\": null,\n                    \"sohd_etl_listed\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"yboe_name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"map_price\": null,\n                    \"yboe_seat_number\": null,\n                    \"yboe_top_metal_finish_application\": null,\n                    \"yboe_color_option\": \"Garden Green\",\n                    \"sale_active\": \"Yes\",\n                    \"yboe_toy_color\": null,\n                    \"yboe_contact_configuration\": null,\n                    \"brand\": \"RedDot\",\n                    \"yboe_lu_maximum_counterbore_depth_mm\": null,\n                    \"height\": null,\n                    \"sohd_installation_instructions_file\": null,\n                    \"yboe_msrp\": \"$349\",\n                    \"sohd_indoor_outdoor\": null,\n                    \"yboe_back_dimensions\": null,\n                    \"sohd_maximum_temperature\": null,\n                    \"coverage_description_it\": null,\n                    \"sohd_back_view_image_file_name\": null,\n                    \"safety_data_sheet\": null,\n                    \"yboe_cost_string\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"yboe_dcon_connection_diameter_mm\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"yboe_side_image\": null,\n                    \"yboe_case_pack_packaging_description\": null,\n                    \"yboe_te\": null,\n                    \"assembly_instructions\": null,\n                    \"yboe_accessory_product\": null,\n                    \"twql_name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"case_pack_weight\": null,\n                    \"twql_master_pack_width\": \"36\\\"\",\n                    \"yboe_product_type_1\": \"Waste Basket\",\n                    \"sell_pack_qty\": \"1\",\n                    \"yboe_number_of_shelves\": null,\n                    \"twql_ship_pack_width\": null,\n                    \"yboe_case_pack_weight\": null,\n                    \"sohd_bottom_view_image_file_name\": null,\n                    \"sohd_warranty_file_name\": null,\n                    \"yboe_gtin\": \"013212121113\",\n                    \"vendor\": null,\n                    \"msrp\": \"$349\",\n                    \"yboe_ebc_amazon\": null,\n                    \"sohd_parts_breakdown_file\": null,\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"sohd_gauge\": null,\n                    \"yboe_weight_capacity\": null,\n                    \"sohd_phase\": null,\n                    \"sohd_features_benefits_10\": null,\n                    \"case_pack_width\": null,\n                    \"sohd_spare_part_product_reference\": null,\n                    \"yboe_sellpack_width\": \"18\\\"\",\n                    \"sohd_thickness\": null,\n                    \"yboe_aperture\": null,\n                    \"sale_price\": null,\n                    \"sohd_linebuy_id\": null,\n                    \"yboe_benefit_5\": \"Made in USA\",\n                    \"yboe_benefit_4\": \"Easily stackable with removable handle\",\n                    \"twql_material\": null,\n                    \"yboe_benefit_6\": null,\n                    \"yboe_benefit_1\": \"Made with high quality steel\",\n                    \"yboe_benefit_3\": \"Light and portable\",\n                    \"yboe_salesforce_id\": null,\n                    \"yboe_benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"yboe_head_length\": null,\n                    \"yboe_dc_cutting_diameter_decimal_inch\": null,\n                    \"sohd_clothing_size\": null,\n                    \"yrfa_price\": \"999\",\n                    \"yboe_lighted\": null,\n                    \"yboe_tarriff\": null,\n                    \"yboe_insert_style\": null,\n                    \"twql_sell_pack_desc\": \"Each\",\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"yboe_max_screw_diameter_compatibility_mm\": null,\n                    \"sohd_material\": null,\n                    \"yboe_number_of_flutes\": null,\n                    \"yboe_protein\": null,\n                    \"supplier_stock_no\": \"8221291\",\n                    \"sohd_battery_type\": null,\n                    \"twql_master_pack_length\": \"48\\\"\",\n                    \"coverage_description_es\": null,\n                    \"yboe_autoiris\": null,\n                    \"repair_policy\": null,\n                    \"yboe_ship_pack_qty\": null,\n                    \"coverage_description_en\": null,\n                    \"twql_sell_pack_height\": \"9\\\"\",\n                    \"product_type_1\": \"Waste Basket\",\n                    \"sohd_vendor_logo\": null,\n                    \"flammable\": \"No\",\n                    \"name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"grip_length\": null,\n                    \"sohd_step_id\": null,\n                    \"yboe_battery_capacity\": null,\n                    \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"psi\": \"120 PSI\",\n                    \"yboe_installation_partners\": \"Greenlee Conduit\",\n                    \"video\": null,\n                    \"poisonous\": null,\n                    \"sohd_smart_home_enabled\": null,\n                    \"sohd_osha_specifications\": null,\n                    \"yboe_accessory_size\": null,\n                    \"sohd_automatic_shutoff\": null,\n                    \"yboe_compatible_insert_hand\": null,\n                    \"gtin\": \"013212121113\",\n                    \"sohd_nema_specifications\": null,\n                    \"yboe_marking_code\": null,\n                    \"yboe_top_materials_details\": null,\n                    \"yboe_customer\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"yboe_keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"prop_65_compliant\": \"Yes\",\n                    \"yboe_sell_sheet\": null,\n                    \"yboe_ratings_information\": null,\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"yboe_warp_resistent\": null,\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"twql_ship_pack_qty\": null,\n                    \"amps\": null,\n                    \"yboe_main_image\": \"4070863028\",\n                    \"avg_hours\": null,\n                    \"yboe_prop_65_compliant\": \"Yes\",\n                    \"yboe_purchasing_completeness\": \"50\",\n                    \"yboe_regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 18\n                    },\n                    \"sohd_volts\": null,\n                    \"yboe_case_pack_quantity\": null,\n                    \"yboe_cutting_edge_length\": null,\n                    \"yboe_warranty_language\": \"Manufacturer Defects Only\",\n                    \"sohd_energy_star_compliant\": null,\n                    \"input_voltage\": \"110 V\",\n                    \"prop_65_warning\": \"No cancer causing chemicals\",\n                    \"sohd_use_and_care_file\": null,\n                    \"inner_pack_height\": null,\n                    \"ship_pack_qty\": null,\n                    \"yboe_min_screw_diameter_compatibility_mm\": null,\n                    \"sohd_end_connection_2\": null,\n                    \"sohd_end_connection_1\": null,\n                    \"yboe_master_pack_qty\": \"4\",\n                    \"multi_category\": null,\n                    \"sohd_iapmo_listed\": null,\n                    \"sohd_tool_type\": null,\n                    \"yboe_ship_pack_width\": null,\n                    \"yboe_model\": null,\n                    \"yboe_life_stage\": null,\n                    \"ship_pack_width\": null,\n                    \"yboe_upc\": null,\n                    \"yboe_supplier\": null,\n                    \"yboe_tilt_range\": null,\n                    \"sohd_glove_size\": null,\n                    \"sohd_origin\": null,\n                    \"yboe_wiring_capacity_phase_contacts\": null,\n                    \"muko_title\": null,\n                    \"twql_master_pack_height\": \"30\\\"\",\n                    \"yboe_image_2\": \"4070863023\",\n                    \"yboe_image_3\": null,\n                    \"sohd_gsa_approved\": null,\n                    \"sohd_ada_compliant\": null,\n                    \"sohd_material_type\": null,\n                    \"yboe_prop_65_warning\": \"No cancer causing chemicals\",\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"yboe_ship_pack_length\": null,\n                    \"yboe_inner_pack_length\": null,\n                    \"selling_weight\": \"50 lbs\",\n                    \"yboe_iic_multiple_approvals\": null,\n                    \"yboe_minimum_operating_temperature\": null,\n                    \"yboe_recommended_products\": null,\n                    \"sohd_diameter\": null,\n                    \"yboe_back_image\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"yboe_rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><strong>Product Dimensional Chart</strong></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr><tr><td>Weight</td><td>30 Lbs</td></tr></tbody></table></figure><ul><li><strong>Made in Canada</strong></li><li><strong>Tough Steel</strong></li><li><strong>Ergonomic Design</strong></li></ul>\",\n                    \"yboe_base_drawing_number\": null,\n                    \"yboe_shank_type\": null,\n                    \"twql_sell_pack_length\": \"18\\\"\",\n                    \"sohd_ma_approved\": null,\n                    \"yboe_focal_length\": null,\n                    \"sohd_features_benefits_06\": null,\n                    \"sohd_features_benefits_07\": null,\n                    \"sohd_features_benefits_04\": null,\n                    \"sohd_features_benefits_05\": null,\n                    \"sohd_features_benefits_02\": null,\n                    \"sohd_features_benefits_03\": null,\n                    \"sohd_features_benefits_01\": null,\n                    \"tank_capacity\": null,\n                    \"twql_master_pack_weight\": \"300 lbs\",\n                    \"sohd_product_short_description\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"video_2\": null,\n                    \"yboe_ship_pack_height\": null,\n                    \"sohd_includes\": null,\n                    \"case_pack_height\": null,\n                    \"sohd_features_benefits_08\": null,\n                    \"sohd_features_benefits_09\": null,\n                    \"yboe_lf_functional_length_mm\": null,\n                    \"inside_diameter\": \"45\",\n                    \"marketplace_category\": null,\n                    \"yboe_care_wash_and_usage_instructions\": null,\n                    \"yboe_case_pack_length\": null,\n                    \"sohd_cable_or_wire_type\": null,\n                    \"yboe_brand_name\": null,\n                    \"muko_item_id\": \"RFOF-8052\",\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"yboe_manufacturer_list\": null,\n                    \"sohd_astm_specifications\": null,\n                    \"long_name_for_ebay\": null,\n                    \"spec_sheet\": null,\n                    \"yboe_compatible_inserts_full\": null,\n                    \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"yboe_case_pack_height\": null,\n                    \"yboe_sale_active\": \"Yes\",\n                    \"yboe_warranty\": \"1 Year\",\n                    \"sohd_specification_file\": null,\n                    \"yboe_generated_description\": null,\n                    \"regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 15\n                    },\n                    \"yboe_inner_pack_height\": null,\n                    \"yboe_remote_control\": null,\n                    \"sohd_vendor_brand_logo\": null,\n                    \"priority_accessories\": null,\n                    \"sohd_package_quantity\": null,\n                    \"yboe_action_shot\": null,\n                    \"yboe_exchange_policy\": null,\n                    \"orientation\": null,\n                    \"cost\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 90\n                    },\n                    \"yboe_coolant_through_yesno\": null,\n                    \"yboe_case_pack_width\": null,\n                    \"twql_hero_image\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"yboe_application\": null,\n                    \"sohd_product_number_sku\": \"RFOF-8052\",\n                    \"yboe_brand\": \"RedDot\",\n                    \"twql_ship_pack_weight\": null,\n                    \"sohd_width\": null,\n                    \"sohd_temperature_range\": null,\n                    \"marking_code\": null,\n                    \"sohd_oracle_item_class_ref_classification_reference\": null,\n                    \"yboe_image_sensor\": null,\n                    \"yboe_shutter_time\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"sohd_depth\": null,\n                    \"sohd_lighting_facts_asset_file_name\": null\n                },\n                {\n                    \"id\": 17412007,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1743511313208,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676855,\n                        4004677654,\n                        4004680228\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"tools\": 100,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"yboe_ship_pack_desc\": null,\n                    \"yboe_peak_decibels\": null,\n                    \"explosive\": \"Yes\",\n                    \"warranty_language\": \"Defects Only\",\n                    \"yboe_product_dimensions_w_x_d_x_h\": null,\n                    \"sell_pack_desc\": \"Each\",\n                    \"yboe_compatible_inserts_partial\": null,\n                    \"yboe_selling_length\": \"18\\\"\",\n                    \"yboe_additional_images\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"yboe_name\": \"RedDot Oil-Free Air Compressor\",\n                    \"map_price\": null,\n                    \"yboe_seat_number\": null,\n                    \"yboe_max_pressure\": null,\n                    \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n                    \"yboe_masterpack_height\": \"30\\\"\",\n                    \"coverage_length\": null,\n                    \"yboe_top_material\": null,\n                    \"yboe_top_metal_finish_application\": null,\n                    \"grainger_part_number\": \"1AD3433\",\n                    \"yboe_color_option\": \"Green\",\n                    \"sale_active\": \"Yes\",\n                    \"yboe_test\": null,\n                    \"yboe_toy_color\": null,\n                    \"yboe_contact_configuration\": null,\n                    \"brand\": \"RedDot\",\n                    \"yboe_lu_maximum_counterbore_depth_mm\": null,\n                    \"yboe_pantiltzoom_functionalities\": null,\n                    \"height\": null,\n                    \"yboe_website\": null,\n                    \"yboe_screw_type_compatibility\": null,\n                    \"yboe_msrp\": \"3000\",\n                    \"yboe_unit_inchmm\": null,\n                    \"yboe_back_dimensions\": null,\n                    \"country_of_origin\": \"China\",\n                    \"hazardous\": \"Yes\",\n                    \"yboe_ship_pack_weight\": null,\n                    \"yboe_hand\": null,\n                    \"coverage_description_it\": null,\n                    \"safety_data_sheet\": null,\n                    \"yboe_cost_string\": null,\n                    \"case_pack_upcean\": null,\n                    \"yboe_delta\": null,\n                    \"yboe_stc\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"yboe_heat_capacity\": null,\n                    \"yboe_inner_pack_weight\": \"60 lbs\",\n                    \"yboe_dcon_connection_diameter_mm\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"main_material\": null,\n                    \"yboe_side_image\": null,\n                    \"ship_pack_weight\": null,\n                    \"yboe_case_pack_packaging_description\": null,\n                    \"yboe_pan_range\": null,\n                    \"auto_linked_image\": null,\n                    \"yboe_te\": null,\n                    \"assembly_instructions\": null,\n                    \"yboe_accessory_product\": null,\n                    \"yboe_case_pack_upcean\": null,\n                    \"case_pack_weight\": null,\n                    \"yboe_inner_pack_width\": null,\n                    \"sell_pack_qty\": \"1\",\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"yboe_product_type_1\": null,\n                    \"yboe_number_of_shelves\": null,\n                    \"yboe_case_pack_weight\": null,\n                    \"generate_technical_attributes\": null,\n                    \"yboe_tilt_speed\": null,\n                    \"yboe_asin\": \"32BH232H1\",\n                    \"vendor\": null,\n                    \"yboe_gtin\": null,\n                    \"msrp\": \"3000\",\n                    \"yboe_ebc_amazon\": null,\n                    \"yboe_flammable\": \"Yes\",\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_weight_capacity\": null,\n                    \"website\": null,\n                    \"case_pack_width\": null,\n                    \"yboe_masterpack_weight\": \"300 lbs\",\n                    \"yboe_status\": \"Active\",\n                    \"yboe_sellpack_width\": \"18\\\"\",\n                    \"yboe_grade\": \"D\",\n                    \"yboe_aperture\": null,\n                    \"list_price\": null,\n                    \"sale_price\": null,\n                    \"yrfa_uom\": null,\n                    \"yboe_benefit_5\": \"Made in USA\",\n                    \"yboe_master_code\": null,\n                    \"yboe_benefit_4\": \"Easily stackable with removable handle\",\n                    \"yboe_benefit_6\": null,\n                    \"yboe_benefit_1\": \"Made with high quality steel\",\n                    \"yboe_btu\": null,\n                    \"yboe_benefit_3\": \"Light and portable\",\n                    \"yboe_impact_rating\": null,\n                    \"yboe_salesforce_id\": null,\n                    \"yboe_benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"yboe_parent_sku\": \"RFOF-8052\",\n                    \"yboe_head_length\": null,\n                    \"yboe_weldon_flat\": null,\n                    \"yboe_dc_cutting_diameter_decimal_inch\": null,\n                    \"tank_size\": \"50 Gal\",\n                    \"yrfa_price\": \"999\",\n                    \"yboe_country_of_origin_old\": null,\n                    \"yboe_lighted\": null,\n                    \"yboe_appliance_input\": null,\n                    \"yboe_tarriff\": null,\n                    \"yboe_insert_style\": null,\n                    \"ship_pack_height\": null,\n                    \"yboe_master_pack_desc\": \"Pack of 4\",\n                    \"computed_price\": null,\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"yboe_max_screw_diameter_compatibility_mm\": null,\n                    \"yboe_assembly_instructions\": null,\n                    \"yboe_iic_approvals\": null,\n                    \"yboe_sell_pack_qty\": \"1\",\n                    \"yboe_dmpicklista\": null,\n                    \"yboe_number_of_flutes\": null,\n                    \"ship_pack_length\": null,\n                    \"yboe_protein\": null,\n                    \"supplier_stock_no\": \"8221295\",\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"coverage_description_es\": null,\n                    \"yboe_autoiris\": null,\n                    \"yboe_product_color\": null,\n                    \"repair_policy\": null,\n                    \"yboe_ship_pack_qty\": null,\n                    \"yboe_poisonous\": null,\n                    \"yboe_dc_cutting_diameter_mm\": null,\n                    \"coverage_description_en\": null,\n                    \"yboe_pilot_diameter_mm\": null,\n                    \"yboe_vendor\": null,\n                    \"product_type_1\": null,\n                    \"yboe_base_material_details\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"yboe_google_keywords\": null,\n                    \"yboe_shcs_size\": null,\n                    \"flammable\": \"Yes\",\n                    \"grip_length\": \"12\",\n                    \"name\": \"RedDot Oil-Free Air Compressor\",\n                    \"yboe_masterpack_width\": \"36\\\"\",\n                    \"yboe_supplier_intended_and_approved_use\": null,\n                    \"yboe_battery_capacity\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"yboe_certification_date\": null,\n                    \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_selling_weight\": \"50 lbs\",\n                    \"main_image\": \"4070863028\",\n                    \"psi\": \"120 PSI\",\n                    \"yboe_installation_partners\": \"Greenlee Conduit\",\n                    \"action_photo\": null,\n                    \"yboe_pilot_type\": null,\n                    \"lifestyle_image\": null,\n                    \"video\": null,\n                    \"poisonous\": null,\n                    \"yboe_number_of_inserts\": null,\n                    \"yboe_gender\": null,\n                    \"material_type\": \"Steel\",\n                    \"muko_length\": null,\n                    \"purchasing_completeness\": \"50\",\n                    \"yboe_field_of_view\": null,\n                    \"yboe_accessory_size\": null,\n                    \"yboe_publish_to_b2b_website\": \"Yes\",\n                    \"yboe_pump_location\": null,\n                    \"accessory_product\": null,\n                    \"yboe_compatible_insert_hand\": null,\n                    \"case_pack_quantity\": null,\n                    \"gtin\": null,\n                    \"yboe_toolholder_style\": null,\n                    \"yboe_category\": \"Tools > Power Tools > Compressors\",\n                    \"inner_pack_width\": null,\n                    \"yboe_marking_code\": null,\n                    \"ship_pack_desc\": null,\n                    \"yboe_top_materials_details\": null,\n                    \"yboe_customer\": null,\n                    \"yboe_dfdfdfd\": null,\n                    \"yboe_top_manufactured_wood_type\": null,\n                    \"yboe_horse_power\": null,\n                    \"yboe_secondary_category\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"selling_length\": \"18\\\"\",\n                    \"yboe_lens_type\": null,\n                    \"yboe_keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"yboe_attribute_1\": null,\n                    \"yboe_attribute_2\": null,\n                    \"prop_65_compliant\": \"Yes\",\n                    \"yboe_sell_sheet\": null,\n                    \"yboe_ratings_information\": null,\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"yboe_warp_resistent\": null,\n                    \"yboe_companywebsite\": null,\n                    \"asin\": \"32BH232H1\",\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"amps\": null,\n                    \"generated_description\": null,\n                    \"yboe_components\": null,\n                    \"avg_hours\": \"12\",\n                    \"yboe_main_image\": \"4070863028\",\n                    \"action_shot\": null,\n                    \"yboe_prop_65_compliant\": \"Yes\",\n                    \"yboe_purchasing_completeness\": \"50\",\n                    \"yboe_lifestyle_image\": null,\n                    \"yboe_hazardous\": \"Yes\",\n                    \"yboe_regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 18\n                    },\n                    \"yboe_case_pack_quantity\": null,\n                    \"yboe_action_photo\": null,\n                    \"yboe_cutting_edge_length\": null,\n                    \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><i><strong>This is html and being used to present rich information.</strong></i></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr></tbody></table></figure>\",\n                    \"number\": \"RFOF-8058\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"yboe_warranty_language\": \"Defects Only\",\n                    \"yboe_iic\": null,\n                    \"warranty\": \"5 Year\",\n                    \"yboe_repair_policy\": null,\n                    \"input_voltage\": \"110 V\",\n                    \"prop_65_warning\": null,\n                    \"additional_images\": null,\n                    \"inner_pack_height\": null,\n                    \"yboe_grainger_part_number\": \"1AD3433\",\n                    \"yboe_feature_benefit_6\": null,\n                    \"yboe_explosive\": \"Yes\",\n                    \"master_pack_qty\": \"4\",\n                    \"yboe_material_type\": \"Steel\",\n                    \"ship_pack_qty\": null,\n                    \"upc\": null,\n                    \"yboe_min_screw_diameter_compatibility_mm\": null,\n                    \"yboe_packaged_asset\": null,\n                    \"yboe_map_price\": null,\n                    \"yboe_master_pack_qty\": \"4\",\n                    \"multi_category\": null,\n                    \"zhz_material\": null,\n                    \"yboe_ship_pack_width\": null,\n                    \"yboe_minimum_illumination\": null,\n                    \"yboe_model\": null,\n                    \"yboe_life_stage\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"ship_pack_width\": null,\n                    \"yboe_masterpack_length\": \"48\\\"\",\n                    \"status\": \"Active\",\n                    \"yboe_upc\": null,\n                    \"yboe_supplier\": null,\n                    \"yboe_storage\": null,\n                    \"yboe_tilt_range\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_seat_dimensions\": null,\n                    \"yboe_maximum_operating_temperature\": null,\n                    \"yboe_wiring_capacity_phase_contacts\": null,\n                    \"muko_title\": null,\n                    \"yboe_base_material\": null,\n                    \"yboe_image_2\": \"4070863023\",\n                    \"yboe_image_3\": null,\n                    \"yboe_drawers_included\": null,\n                    \"yboe_burner\": null,\n                    \"yboe_life_stage_2\": null,\n                    \"yboe_mkt_comp\": \"0\",\n                    \"yboe_dcon_connection_diameter_decimal_inch\": null,\n                    \"yboe_shelves_included\": null,\n                    \"yboe_sellpack_height\": \"9\\\"\",\n                    \"yboe_prop_65_warning\": null,\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"yboe_ship_pack_length\": null,\n                    \"yboe_inner_pack_length\": null,\n                    \"muko_weight\": null,\n                    \"selling_weight\": \"50 lbs\",\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"yboe_pilot_diameter_decimal_inch\": null,\n                    \"yboe_iic_multiple_approvals\": null,\n                    \"yboe_minimum_operating_temperature\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"muko_height\": null,\n                    \"coverage_level\": null,\n                    \"yboe_complementary_products\": null,\n                    \"yboe_recommended_products\": null,\n                    \"mkt_comp\": \"0\",\n                    \"yboe_back_image\": null,\n                    \"yboe_extra_long_name_for_website\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"yboe_rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><i><strong>This is html and being used to present rich information.</strong></i></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr></tbody></table></figure>\",\n                    \"yboe_fuel\": null,\n                    \"yboe_seat_height_from_floor\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"yboe_base_drawing_number\": null,\n                    \"yboe_shank_type\": null,\n                    \"yboe_focal_length\": null,\n                    \"yboe_rated_voltage_v\": null,\n                    \"keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"benefit_6\": null,\n                    \"tank_capacity\": null,\n                    \"benefit_4\": \"Easily stackable with removable handle\",\n                    \"video_2\": null,\n                    \"yboe_ship_pack_height\": null,\n                    \"benefit_5\": \"Made in USA\",\n                    \"benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"case_pack_height\": null,\n                    \"benefit_3\": \"Light and portable\",\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"yboe_lf_functional_length_mm\": null,\n                    \"yboe_rated_current_a\": null,\n                    \"inside_diameter\": \"45\",\n                    \"yboe_efficiency\": null,\n                    \"yboe_sell_pack_desc\": \"Each\",\n                    \"marketplace_category\": null,\n                    \"yboe_care_wash_and_usage_instructions\": null,\n                    \"yboe_case_pack_length\": null,\n                    \"customer_part_number\": null,\n                    \"yboe_insert_holding_method\": null,\n                    \"yboe_brand_name\": null,\n                    \"yboe_spec_sheet\": null,\n                    \"muko_item_id\": \"RFOF-8058\",\n                    \"yboe_environmental_rating\": null,\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"yboe_manufacturer_list\": null,\n                    \"yboe_used_with\": [\n                        \"20023094\"\n                    ],\n                    \"long_name_for_ebay\": null,\n                    \"extra_long_name_for_website\": null,\n                    \"spec_sheet\": null,\n                    \"yboe_supplier_stock_no\": \"8221295\",\n                    \"yboe_compatible_inserts_full\": null,\n                    \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"yboe_case_pack_height\": null,\n                    \"yboe_sale_active\": \"Yes\",\n                    \"yboe_warranty\": \"5 Year\",\n                    \"yboe_long_name_for_ebay\": null,\n                    \"yboe_image_url\": null,\n                    \"yboe_generated_description\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8058\",\n                    \"regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 15\n                    },\n                    \"yboe_pan_speed\": null,\n                    \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_customer_part_number\": null,\n                    \"yboe_inner_pack_height\": null,\n                    \"color_option\": \"Green\",\n                    \"yboe_remote_control\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"priority_accessories\": null,\n                    \"yboe_country_of_origin\": \"China\",\n                    \"yboe_action_shot\": null,\n                    \"yboe_max_resolution\": null,\n                    \"yboe_exchange_policy\": null,\n                    \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n                    \"yboe_color_multi\": null,\n                    \"orientation\": null,\n                    \"cost\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 50\n                    },\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"yboe_coolant_through_yesno\": null,\n                    \"yboe_case_pack_width\": null,\n                    \"yboe_application\": null,\n                    \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n                    \"yboe_brand\": \"RedDot\",\n                    \"yboe_arm_height_from_floor\": null,\n                    \"yboe_safety_data_sheet\": null,\n                    \"application\": null,\n                    \"coverage_description_pt\": null,\n                    \"yboe_product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"marking_code\": null,\n                    \"yboe_image_sensor\": null,\n                    \"yboe_shutter_time\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"4 Stage\"\n                },\n                {\n                    \"id\": 17412004,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676855,\n                        4004677654,\n                        4004680318\n                    ],\n                    \"completeness_score\": 91,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"yboe_ad_export_annual\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"yboe_ship_pack_desc\": null,\n                    \"yboe_peak_decibels\": null,\n                    \"explosive\": null,\n                    \"yboe_compatible_inserts_partial\": null,\n                    \"yboe_selling_length\": \"18\\\"\",\n                    \"yboe_max_pressure\": null,\n                    \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n                    \"sohd_height\": null,\n                    \"yboe_masterpack_height\": \"30\\\"\",\n                    \"coverage_length\": null,\n                    \"sohd_iso_specifications\": null,\n                    \"yboe_top_material\": null,\n                    \"grainger_part_number\": \"32FSFD11\",\n                    \"yboe_test\": null,\n                    \"yboe_pantiltzoom_functionalities\": null,\n                    \"yboe_website\": null,\n                    \"yboe_screw_type_compatibility\": null,\n                    \"sohd_power_source\": null,\n                    \"yboe_unit_inchmm\": null,\n                    \"country_of_origin\": \"China\",\n                    \"hazardous\": \"No\",\n                    \"sohd_cad_drawings_file_name\": null,\n                    \"yboe_ship_pack_weight\": null,\n                    \"yboe_hand\": null,\n                    \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"sohd_scheduleclass\": null,\n                    \"case_pack_upcean\": null,\n                    \"yboe_delta\": null,\n                    \"yboe_stc\": null,\n                    \"yboe_heat_capacity\": null,\n                    \"yboe_inner_pack_weight\": \"60 lbs\",\n                    \"sohd_left_view_image_file_name\": null,\n                    \"main_material\": null,\n                    \"ship_pack_weight\": null,\n                    \"yboe_pan_range\": null,\n                    \"auto_linked_image\": null,\n                    \"yboe_case_pack_upcean\": null,\n                    \"yboe_inner_pack_width\": null,\n                    \"sohd_temperature_rating\": null,\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"sohd_cord_length\": null,\n                    \"generate_technical_attributes\": null,\n                    \"yboe_tilt_speed\": null,\n                    \"yboe_asin\": \"ABFDSDSD2\",\n                    \"yboe_flammable\": null,\n                    \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_disposable\": null,\n                    \"website\": null,\n                    \"sohd_niosh_specifications\": null,\n                    \"yboe_masterpack_weight\": \"300 lbs\",\n                    \"yboe_status\": \"Active\",\n                    \"yboe_grade\": \"D\",\n                    \"list_price\": \"$3150\",\n                    \"sohd_application\": null,\n                    \"yrfa_uom\": null,\n                    \"sohd_nsf_certified\": null,\n                    \"yboe_master_code\": null,\n                    \"sohd_right_view_image_file_name\": null,\n                    \"yboe_btu\": null,\n                    \"yboe_impact_rating\": null,\n                    \"yboe_parent_sku\": \"RFOF-8052\",\n                    \"sohd_wire_gauge\": null,\n                    \"yboe_weldon_flat\": null,\n                    \"sohd_amp\": null,\n                    \"sohd_product_type\": null,\n                    \"tank_size\": \"40 gal\",\n                    \"yboe_country_of_origin_old\": null,\n                    \"yboe_appliance_input\": null,\n                    \"sohd_installation_type\": null,\n                    \"sohd_fm_approved\": null,\n                    \"ship_pack_height\": null,\n                    \"yboe_master_pack_desc\": \"Pack of 4\",\n                    \"sohd_collection\": null,\n                    \"computed_price\": null,\n                    \"yboe_assembly_instructions\": null,\n                    \"sohd_glove_type\": null,\n                    \"yboe_iic_approvals\": null,\n                    \"yboe_sell_pack_qty\": \"1\",\n                    \"yboe_dmpicklista\": null,\n                    \"ship_pack_length\": null,\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"sohd_mss_specifications\": null,\n                    \"yboe_product_color\": null,\n                    \"sohd_weight\": null,\n                    \"yboe_poisonous\": null,\n                    \"yboe_dc_cutting_diameter_mm\": null,\n                    \"sohd_watts\": null,\n                    \"yboe_pilot_diameter_mm\": null,\n                    \"yboe_vendor\": null,\n                    \"yboe_base_material_details\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"yboe_google_keywords\": null,\n                    \"yboe_shcs_size\": null,\n                    \"yboe_masterpack_width\": \"36\\\"\",\n                    \"yboe_supplier_intended_and_approved_use\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"yboe_certification_date\": null,\n                    \"yboe_selling_weight\": \"50 lbs\",\n                    \"main_image\": \"4070863028\",\n                    \"action_photo\": null,\n                    \"yboe_pilot_type\": null,\n                    \"lifestyle_image\": null,\n                    \"yboe_number_of_inserts\": null,\n                    \"yboe_gender\": null,\n                    \"material_type\": \"Steel\",\n                    \"sohd_light_bulb_shape_code\": null,\n                    \"sohd_alt_product_number\": null,\n                    \"purchasing_completeness\": \"25\",\n                    \"yboe_field_of_view\": null,\n                    \"sohd_x\": null,\n                    \"yboe_publish_to_b2b_website\": \"Yes\",\n                    \"yboe_pump_location\": null,\n                    \"sohd_ce_approved\": null,\n                    \"accessory_product\": null,\n                    \"sohd_video_asset_reference_id\": null,\n                    \"case_pack_quantity\": null,\n                    \"yboe_toolholder_style\": null,\n                    \"yboe_category\": \"Tools > Power Tools > Compressors\",\n                    \"inner_pack_width\": null,\n                    \"sohd_x_3\": null,\n                    \"sohd_x_2\": null,\n                    \"sohd_x_5\": null,\n                    \"ship_pack_desc\": null,\n                    \"yboe_dfdfdfd\": null,\n                    \"sohd_x_4\": null,\n                    \"yboe_top_manufactured_wood_type\": null,\n                    \"yboe_horse_power\": null,\n                    \"yboe_secondary_category\": null,\n                    \"selling_length\": \"18\\\"\",\n                    \"yboe_lens_type\": null,\n                    \"yboe_attribute_1\": null,\n                    \"yboe_attribute_2\": null,\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"yboe_companywebsite\": null,\n                    \"asin\": \"ABFDSDSD2\",\n                    \"sohd_number_of_pieces\": null,\n                    \"generated_description\": null,\n                    \"yboe_components\": null,\n                    \"action_shot\": null,\n                    \"yboe_lifestyle_image\": null,\n                    \"yboe_hazardous\": \"No\",\n                    \"yboe_action_photo\": null,\n                    \"sohd_ul_listed\": null,\n                    \"rich_description\": \"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All steel </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\">connecting rods</span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.</span><br><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\"><strong>Removable 100% </strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">cast </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(120, 75%, 60%);font-size:15px;\\\"><strong>iron</strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat. This makes competitor pumps good for about a 40-50% duty cycle – while claiming a 100% duty cycle. Most of the pumps with aluminum cylinders have to be replaced in 1-2 years because they would not hold up under heavy use. Not our Air pumps! Our solid cast iron cylinders can “take the heat” and are designed to perform on heavy load demands.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All cast iron cylinder heads. Cast iron heads are more durable and dependable for trouble free operation.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">“Disc valve design” intake and exhaust valves. Disc valves have been around for over 100 years and have been proven to perform. Most of our competitors are using “throw-away” reed valves which are not nearly as durable and can’t be re-built. Our disc valves come right out of the top of the cylinder head where they can be serviced in minutes instead of hours like reed valves.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">Top quality compression and oil rings. Our rings ensure performance with low oil carry over (1-5 PPM).</span></p>\",\n                    \"number\": \"RFOF-8053\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"yboe_iic\": null,\n                    \"sohd_nsf_specifications\": null,\n                    \"warranty\": \"2 Year\",\n                    \"yboe_repair_policy\": null,\n                    \"sohd_brand_type\": null,\n                    \"additional_images\": null,\n                    \"sohd_epa_compliant\": null,\n                    \"yboe_grainger_part_number\": \"32FSFD11\",\n                    \"yboe_feature_benefit_6\": null,\n                    \"yboe_explosive\": null,\n                    \"master_pack_qty\": \"4\",\n                    \"yboe_material_type\": \"Steel\",\n                    \"upc\": null,\n                    \"yboe_packaged_asset\": null,\n                    \"yboe_map_price\": null,\n                    \"zhz_material\": null,\n                    \"yboe_minimum_illumination\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"yboe_masterpack_length\": \"48\\\"\",\n                    \"status\": \"Active\",\n                    \"sohd_brand_names\": null,\n                    \"yboe_storage\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_seat_dimensions\": null,\n                    \"yboe_maximum_operating_temperature\": null,\n                    \"yboe_base_material\": null,\n                    \"yboe_drawers_included\": null,\n                    \"yboe_burner\": null,\n                    \"yboe_life_stage_2\": null,\n                    \"yboe_mkt_comp\": \"0\",\n                    \"yboe_dcon_connection_diameter_decimal_inch\": null,\n                    \"yboe_shelves_included\": null,\n                    \"yboe_sellpack_height\": \"9\\\"\",\n                    \"sohd_maximum_pressure\": null,\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"sohd_ansi_specifications\": null,\n                    \"yboe_pilot_diameter_decimal_inch\": null,\n                    \"sohd_item_class\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_asse_standards\": null,\n                    \"coverage_level\": null,\n                    \"yboe_complementary_products\": null,\n                    \"mkt_comp\": \"0\",\n                    \"yboe_extra_long_name_for_website\": null,\n                    \"yboe_fuel\": null,\n                    \"sohd_size\": null,\n                    \"yboe_seat_height_from_floor\": null,\n                    \"sohd_colorfinish\": null,\n                    \"sohd_length\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"sohd_submittals_asset_file_name\": null,\n                    \"sohd_scaqmd_compliant\": null,\n                    \"yboe_rated_voltage_v\": null,\n                    \"sohd_mfgsupplier_name_id\": null,\n                    \"keyword_tags\": [\n                        \"bulk\",\n                        \"movable\",\n                        \"yellow\"\n                    ],\n                    \"benefit_6\": null,\n                    \"benefit_4\": \"Removable 100% cast iron cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat.\",\n                    \"benefit_5\": \"Made in USA\",\n                    \"benefit_2\": \"Our pump also features a precision balanced solid cast iron crankshaft with Timken-Style stainless steel roller bearings on the front and rear of the crankshaft to ensure smooth & efficient operation with less drag and less energy use.\",\n                    \"benefit_3\": \"ll steel connecting rods with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.\",\n                    \"sohd_bulb_type\": null,\n                    \"sohd_lifestyle_image_file_name\": null,\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"yboe_rated_current_a\": null,\n                    \"sohd_energy_guide_file_name\": null,\n                    \"yboe_efficiency\": null,\n                    \"yboe_sell_pack_desc\": \"Each\",\n                    \"customer_part_number\": \"78493433\",\n                    \"yboe_insert_holding_method\": null,\n                    \"yboe_spec_sheet\": null,\n                    \"yboe_environmental_rating\": null,\n                    \"yboe_used_with\": [\n                        \"20023094\"\n                    ],\n                    \"extra_long_name_for_website\": null,\n                    \"sohd_awwa_specifications\": null,\n                    \"yboe_supplier_stock_no\": \"8221292\",\n                    \"yboe_long_name_for_ebay\": null,\n                    \"sohd_fitting_size_1\": null,\n                    \"sohd_gender\": null,\n                    \"yboe_image_url\": null,\n                    \"sohd_carbotcleed_compliant\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8053\",\n                    \"sohd_optional_accessory\": null,\n                    \"sohd_baa_compliant\": null,\n                    \"sohd_top_view_image_file_name\": null,\n                    \"yboe_pan_speed\": null,\n                    \"yboe_customer_part_number\": \"78493433\",\n                    \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"color_option\": \"Deep Garnet Red\",\n                    \"sohd_required_accessory\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"sohd_reusable\": null,\n                    \"yboe_country_of_origin\": \"China\",\n                    \"yboe_max_resolution\": null,\n                    \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n                    \"yboe_color_multi\": null,\n                    \"sohd_upc\": null,\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"sohd_asme_specifications\": null,\n                    \"sohd_csa_certified\": null,\n                    \"sohd_sku_image_notes\": null,\n                    \"sohd_coating\": null,\n                    \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n                    \"yboe_arm_height_from_floor\": null,\n                    \"yboe_safety_data_sheet\": null,\n                    \"application\": null,\n                    \"sohd_brand_model_compatibility\": null,\n                    \"coverage_description_pt\": null,\n                    \"yboe_product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"3 Stage\",\n                    \"warranty_language\": \"English. (Does not cover theft)\",\n                    \"yboe_product_dimensions_w_x_d_x_h\": null,\n                    \"sell_pack_desc\": \"Each\",\n                    \"sohd_mfg_product_number\": \"RFOF-8053\",\n                    \"yboe_additional_images\": null,\n                    \"sohd_etl_listed\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"yboe_name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n                    \"map_price\": null,\n                    \"yboe_seat_number\": null,\n                    \"yboe_top_metal_finish_application\": null,\n                    \"yboe_color_option\": \"Deep Garnet Red\",\n                    \"sale_active\": \"Yes\",\n                    \"yboe_toy_color\": null,\n                    \"yboe_contact_configuration\": null,\n                    \"brand\": \"RedDot\",\n                    \"yboe_lu_maximum_counterbore_depth_mm\": null,\n                    \"sohd_installation_instructions_file\": null,\n                    \"yboe_msrp\": \"$3125.00\",\n                    \"sohd_indoor_outdoor\": null,\n                    \"yboe_back_dimensions\": null,\n                    \"sohd_maximum_temperature\": null,\n                    \"coverage_description_it\": null,\n                    \"sohd_back_view_image_file_name\": null,\n                    \"safety_data_sheet\": null,\n                    \"yboe_cost_string\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"yboe_dcon_connection_diameter_mm\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"yboe_side_image\": null,\n                    \"yboe_case_pack_packaging_description\": null,\n                    \"yboe_te\": null,\n                    \"assembly_instructions\": null,\n                    \"yboe_accessory_product\": null,\n                    \"case_pack_weight\": null,\n                    \"sell_pack_qty\": \"1\",\n                    \"yboe_product_type_1\": null,\n                    \"yboe_number_of_shelves\": null,\n                    \"yboe_case_pack_weight\": null,\n                    \"sohd_bottom_view_image_file_name\": null,\n                    \"sohd_warranty_file_name\": null,\n                    \"yboe_gtin\": \"0783932932321\",\n                    \"vendor\": null,\n                    \"msrp\": \"$3125.00\",\n                    \"yboe_ebc_amazon\": null,\n                    \"sohd_parts_breakdown_file\": null,\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"sohd_gauge\": null,\n                    \"yboe_weight_capacity\": null,\n                    \"sohd_phase\": null,\n                    \"sohd_features_benefits_10\": null,\n                    \"case_pack_width\": null,\n                    \"sohd_spare_part_product_reference\": null,\n                    \"yboe_sellpack_width\": \"18\\\"\",\n                    \"sohd_thickness\": null,\n                    \"yboe_aperture\": null,\n                    \"sale_price\": null,\n                    \"sohd_linebuy_id\": null,\n                    \"yboe_benefit_5\": \"Made in USA\",\n                    \"yboe_benefit_4\": \"Removable 100% cast iron cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat.\",\n                    \"yboe_benefit_6\": null,\n                    \"yboe_benefit_1\": \"Made with high quality steel\",\n                    \"yboe_benefit_3\": \"ll steel connecting rods with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.\",\n                    \"yboe_salesforce_id\": null,\n                    \"yboe_benefit_2\": \"Our pump also features a precision balanced solid cast iron crankshaft with Timken-Style stainless steel roller bearings on the front and rear of the crankshaft to ensure smooth & efficient operation with less drag and less energy use.\",\n                    \"yboe_head_length\": null,\n                    \"yboe_dc_cutting_diameter_decimal_inch\": null,\n                    \"sohd_clothing_size\": null,\n                    \"yrfa_price\": \"999\",\n                    \"yboe_lighted\": null,\n                    \"yboe_tarriff\": null,\n                    \"yboe_insert_style\": null,\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"yboe_max_screw_diameter_compatibility_mm\": null,\n                    \"sohd_material\": null,\n                    \"yboe_number_of_flutes\": null,\n                    \"yboe_protein\": null,\n                    \"supplier_stock_no\": \"8221292\",\n                    \"sohd_battery_type\": null,\n                    \"coverage_description_es\": null,\n                    \"yboe_autoiris\": null,\n                    \"repair_policy\": null,\n                    \"yboe_ship_pack_qty\": null,\n                    \"coverage_description_en\": null,\n                    \"product_type_1\": null,\n                    \"sohd_vendor_logo\": null,\n                    \"name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n                    \"flammable\": null,\n                    \"sohd_step_id\": null,\n                    \"yboe_battery_capacity\": null,\n                    \"psi\": \"120 PSi\",\n                    \"yboe_installation_partners\": \"Greenlee Conduit\",\n                    \"video\": null,\n                    \"poisonous\": null,\n                    \"sohd_smart_home_enabled\": null,\n                    \"sohd_osha_specifications\": null,\n                    \"yboe_accessory_size\": null,\n                    \"sohd_automatic_shutoff\": null,\n                    \"yboe_compatible_insert_hand\": null,\n                    \"gtin\": \"0783932932321\",\n                    \"sohd_nema_specifications\": null,\n                    \"yboe_marking_code\": null,\n                    \"yboe_top_materials_details\": null,\n                    \"yboe_customer\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"yboe_keyword_tags\": [\n                        \"bulk\",\n                        \"movable\",\n                        \"yellow\"\n                    ],\n                    \"prop_65_compliant\": \"Yes\",\n                    \"yboe_sell_sheet\": null,\n                    \"yboe_ratings_information\": null,\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"yboe_warp_resistent\": null,\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"amps\": null,\n                    \"avg_hours\": \"12\",\n                    \"yboe_main_image\": \"4070863028\",\n                    \"yboe_prop_65_compliant\": \"Yes\",\n                    \"yboe_purchasing_completeness\": \"25\",\n                    \"yboe_regular_price\": null,\n                    \"sohd_volts\": null,\n                    \"yboe_case_pack_quantity\": null,\n                    \"yboe_cutting_edge_length\": null,\n                    \"yboe_warranty_language\": \"English. (Does not cover theft)\",\n                    \"sohd_energy_star_compliant\": null,\n                    \"input_voltage\": \"110 V\",\n                    \"prop_65_warning\": \"N/A\",\n                    \"sohd_use_and_care_file\": null,\n                    \"inner_pack_height\": null,\n                    \"ship_pack_qty\": null,\n                    \"yboe_min_screw_diameter_compatibility_mm\": null,\n                    \"sohd_end_connection_2\": null,\n                    \"sohd_end_connection_1\": null,\n                    \"yboe_master_pack_qty\": \"4\",\n                    \"multi_category\": null,\n                    \"sohd_iapmo_listed\": null,\n                    \"sohd_tool_type\": null,\n                    \"yboe_ship_pack_width\": null,\n                    \"yboe_model\": null,\n                    \"yboe_life_stage\": null,\n                    \"ship_pack_width\": null,\n                    \"yboe_upc\": null,\n                    \"yboe_supplier\": null,\n                    \"yboe_tilt_range\": null,\n                    \"sohd_glove_size\": null,\n                    \"sohd_origin\": null,\n                    \"yboe_wiring_capacity_phase_contacts\": null,\n                    \"yboe_image_2\": \"4070863023\",\n                    \"yboe_image_3\": null,\n                    \"sohd_gsa_approved\": null,\n                    \"sohd_ada_compliant\": null,\n                    \"sohd_material_type\": null,\n                    \"yboe_prop_65_warning\": \"N/A\",\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"yboe_ship_pack_length\": null,\n                    \"yboe_inner_pack_length\": null,\n                    \"selling_weight\": \"50 lbs\",\n                    \"yboe_iic_multiple_approvals\": null,\n                    \"yboe_minimum_operating_temperature\": null,\n                    \"yboe_recommended_products\": null,\n                    \"sohd_diameter\": null,\n                    \"yboe_back_image\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"yboe_rich_description\": \"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All steel </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\">connecting rods</span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.</span><br><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\"><strong>Removable 100% </strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">cast </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(120, 75%, 60%);font-size:15px;\\\"><strong>iron</strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat. This makes competitor pumps good for about a 40-50% duty cycle – while claiming a 100% duty cycle. Most of the pumps with aluminum cylinders have to be replaced in 1-2 years because they would not hold up under heavy use. Not our Air pumps! Our solid cast iron cylinders can “take the heat” and are designed to perform on heavy load demands.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All cast iron cylinder heads. Cast iron heads are more durable and dependable for trouble free operation.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">“Disc valve design” intake and exhaust valves. Disc valves have been around for over 100 years and have been proven to perform. Most of our competitors are using “throw-away” reed valves which are not nearly as durable and can’t be re-built. Our disc valves come right out of the top of the cylinder head where they can be serviced in minutes instead of hours like reed valves.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">Top quality compression and oil rings. Our rings ensure performance with low oil carry over (1-5 PPM).</span></p>\",\n                    \"yboe_base_drawing_number\": null,\n                    \"yboe_shank_type\": null,\n                    \"sohd_ma_approved\": null,\n                    \"yboe_focal_length\": null,\n                    \"sohd_features_benefits_06\": null,\n                    \"sohd_features_benefits_07\": null,\n                    \"sohd_features_benefits_04\": null,\n                    \"sohd_features_benefits_05\": null,\n                    \"sohd_features_benefits_02\": null,\n                    \"sohd_features_benefits_03\": null,\n                    \"sohd_features_benefits_01\": null,\n                    \"tank_capacity\": null,\n                    \"sohd_product_short_description\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n                    \"video_2\": null,\n                    \"yboe_ship_pack_height\": null,\n                    \"sohd_includes\": null,\n                    \"case_pack_height\": null,\n                    \"sohd_features_benefits_08\": null,\n                    \"sohd_features_benefits_09\": null,\n                    \"yboe_lf_functional_length_mm\": null,\n                    \"inside_diameter\": \"45\",\n                    \"marketplace_category\": null,\n                    \"yboe_care_wash_and_usage_instructions\": null,\n                    \"yboe_case_pack_length\": null,\n                    \"sohd_cable_or_wire_type\": null,\n                    \"yboe_brand_name\": null,\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"yboe_manufacturer_list\": null,\n                    \"sohd_astm_specifications\": null,\n                    \"long_name_for_ebay\": null,\n                    \"spec_sheet\": null,\n                    \"yboe_compatible_inserts_full\": null,\n                    \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"yboe_case_pack_height\": null,\n                    \"yboe_sale_active\": \"Yes\",\n                    \"yboe_warranty\": \"2 Year\",\n                    \"sohd_specification_file\": null,\n                    \"yboe_generated_description\": null,\n                    \"regular_price\": null,\n                    \"yboe_inner_pack_height\": null,\n                    \"yboe_remote_control\": null,\n                    \"sohd_vendor_brand_logo\": null,\n                    \"priority_accessories\": null,\n                    \"sohd_package_quantity\": null,\n                    \"yboe_action_shot\": null,\n                    \"yboe_exchange_policy\": null,\n                    \"orientation\": null,\n                    \"cost\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 30\n                    },\n                    \"yboe_coolant_through_yesno\": null,\n                    \"yboe_case_pack_width\": null,\n                    \"yboe_application\": null,\n                    \"sohd_product_number_sku\": \"RFOF-8053\",\n                    \"yboe_brand\": \"RedDot\",\n                    \"sohd_width\": null,\n                    \"sohd_temperature_range\": null,\n                    \"marking_code\": null,\n                    \"sohd_oracle_item_class_ref_classification_reference\": null,\n                    \"yboe_image_sensor\": null,\n                    \"yboe_shutter_time\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"sohd_depth\": null,\n                    \"sohd_lighting_facts_asset_file_name\": null\n                },\n                {\n                    \"id\": 17412006,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680228,\n                        4004680318\n                    ],\n                    \"completeness_score\": 77,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 33,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"explosive\": null,\n                    \"warranty_language\": \"Defects Only\",\n                    \"sell_pack_desc\": \"Each\",\n                    \"sohd_mfg_product_number\": \"RFOF-8056\",\n                    \"sohd_etl_listed\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"map_price\": null,\n                    \"sohd_height\": null,\n                    \"coverage_length\": null,\n                    \"sohd_iso_specifications\": null,\n                    \"grainger_part_number\": \"1AD3433\",\n                    \"sale_active\": \"Yes\",\n                    \"brand\": null,\n                    \"sohd_installation_instructions_file\": null,\n                    \"sohd_power_source\": null,\n                    \"sohd_indoor_outdoor\": null,\n                    \"sohd_maximum_temperature\": null,\n                    \"hazardous\": \"Yes\",\n                    \"country_of_origin\": null,\n                    \"sohd_cad_drawings_file_name\": null,\n                    \"coverage_description_it\": null,\n                    \"sohd_back_view_image_file_name\": null,\n                    \"safety_data_sheet\": null,\n                    \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"sohd_scheduleclass\": null,\n                    \"case_pack_upcean\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"sohd_left_view_image_file_name\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"main_material\": null,\n                    \"ship_pack_weight\": null,\n                    \"auto_linked_image\": null,\n                    \"assembly_instructions\": null,\n                    \"case_pack_weight\": null,\n                    \"sohd_temperature_rating\": null,\n                    \"sell_pack_qty\": \"1\",\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"sohd_bottom_view_image_file_name\": null,\n                    \"sohd_cord_length\": null,\n                    \"generate_technical_attributes\": null,\n                    \"sohd_warranty_file_name\": null,\n                    \"vendor\": null,\n                    \"msrp\": \"3000\",\n                    \"sohd_parts_breakdown_file\": null,\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"sohd_gauge\": null,\n                    \"sohd_phase\": null,\n                    \"sohd_disposable\": null,\n                    \"sohd_features_benefits_10\": null,\n                    \"website\": null,\n                    \"case_pack_width\": null,\n                    \"sohd_niosh_specifications\": null,\n                    \"sohd_spare_part_product_reference\": null,\n                    \"sohd_thickness\": null,\n                    \"list_price\": null,\n                    \"sohd_application\": null,\n                    \"sale_price\": null,\n                    \"yrfa_uom\": null,\n                    \"sohd_linebuy_id\": null,\n                    \"sohd_nsf_certified\": null,\n                    \"sohd_right_view_image_file_name\": null,\n                    \"sohd_wire_gauge\": null,\n                    \"sohd_clothing_size\": null,\n                    \"sohd_amp\": null,\n                    \"sohd_product_type\": null,\n                    \"tank_size\": \"50 gal\",\n                    \"yrfa_price\": \"999\",\n                    \"sohd_installation_type\": null,\n                    \"sohd_fm_approved\": null,\n                    \"ship_pack_height\": null,\n                    \"sohd_collection\": null,\n                    \"computed_price\": null,\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"sohd_glove_type\": null,\n                    \"sohd_material\": null,\n                    \"ship_pack_length\": null,\n                    \"supplier_stock_no\": \"8221294\",\n                    \"sohd_battery_type\": null,\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"sohd_mss_specifications\": null,\n                    \"coverage_description_es\": null,\n                    \"repair_policy\": null,\n                    \"sohd_weight\": null,\n                    \"sohd_watts\": null,\n                    \"coverage_description_en\": null,\n                    \"product_type_1\": null,\n                    \"sohd_vendor_logo\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"name\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n                    \"flammable\": null,\n                    \"sohd_step_id\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"main_image\": \"4070863028\",\n                    \"psi\": \"150 PSI\",\n                    \"action_photo\": null,\n                    \"lifestyle_image\": null,\n                    \"video\": null,\n                    \"poisonous\": null,\n                    \"material_type\": \"Steel\",\n                    \"muko_length\": null,\n                    \"sohd_light_bulb_shape_code\": null,\n                    \"sohd_alt_product_number\": null,\n                    \"purchasing_completeness\": \"50\",\n                    \"sohd_smart_home_enabled\": null,\n                    \"sohd_osha_specifications\": null,\n                    \"sohd_x\": null,\n                    \"sohd_ce_approved\": null,\n                    \"accessory_product\": null,\n                    \"sohd_automatic_shutoff\": null,\n                    \"sohd_video_asset_reference_id\": null,\n                    \"case_pack_quantity\": null,\n                    \"gtin\": null,\n                    \"sohd_nema_specifications\": null,\n                    \"inner_pack_width\": null,\n                    \"sohd_x_3\": null,\n                    \"sohd_x_2\": null,\n                    \"sohd_x_5\": null,\n                    \"ship_pack_desc\": null,\n                    \"sohd_x_4\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"selling_length\": \"18\\\"\",\n                    \"prop_65_compliant\": \"Yes\",\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"asin\": \"32BH232H1\",\n                    \"sohd_number_of_pieces\": null,\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"amps\": null,\n                    \"generated_description\": null,\n                    \"avg_hours\": \"12\",\n                    \"action_shot\": null,\n                    \"sohd_volts\": null,\n                    \"sohd_ul_listed\": null,\n                    \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\">This is html</span></p>\",\n                    \"number\": \"RFOF-8056\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"sohd_nsf_specifications\": null,\n                    \"sohd_energy_star_compliant\": null,\n                    \"warranty\": \"4 Year\",\n                    \"input_voltage\": \"110 V\",\n                    \"sohd_brand_type\": null,\n                    \"prop_65_warning\": null,\n                    \"additional_images\": null,\n                    \"sohd_use_and_care_file\": null,\n                    \"sohd_epa_compliant\": null,\n                    \"inner_pack_height\": null,\n                    \"master_pack_qty\": \"4\",\n                    \"ship_pack_qty\": null,\n                    \"upc\": null,\n                    \"sohd_end_connection_2\": null,\n                    \"sohd_end_connection_1\": null,\n                    \"multi_category\": null,\n                    \"sohd_iapmo_listed\": null,\n                    \"sohd_tool_type\": null,\n                    \"zhz_material\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"ship_pack_width\": null,\n                    \"status\": \"Active\",\n                    \"sohd_brand_names\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_glove_size\": null,\n                    \"sohd_origin\": null,\n                    \"muko_title\": null,\n                    \"sohd_gsa_approved\": null,\n                    \"sohd_ada_compliant\": null,\n                    \"sohd_material_type\": null,\n                    \"sohd_maximum_pressure\": null,\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"muko_weight\": null,\n                    \"selling_weight\": \"50 lbs\",\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"sohd_ansi_specifications\": null,\n                    \"sohd_item_class\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_asse_standards\": null,\n                    \"muko_height\": null,\n                    \"coverage_level\": null,\n                    \"mkt_comp\": \"0\",\n                    \"sohd_diameter\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"sohd_size\": null,\n                    \"sohd_colorfinish\": null,\n                    \"sohd_length\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"sohd_submittals_asset_file_name\": null,\n                    \"sohd_ma_approved\": null,\n                    \"sohd_scaqmd_compliant\": null,\n                    \"sohd_features_benefits_06\": null,\n                    \"sohd_features_benefits_07\": null,\n                    \"sohd_features_benefits_04\": null,\n                    \"sohd_mfgsupplier_name_id\": null,\n                    \"sohd_features_benefits_05\": null,\n                    \"sohd_features_benefits_02\": null,\n                    \"sohd_features_benefits_03\": null,\n                    \"sohd_features_benefits_01\": null,\n                    \"keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"benefit_6\": null,\n                    \"tank_capacity\": null,\n                    \"benefit_4\": \"Easily stackable with removable handle\",\n                    \"sohd_product_short_description\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n                    \"video_2\": null,\n                    \"benefit_5\": \"Made in USA\",\n                    \"sohd_includes\": null,\n                    \"benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"case_pack_height\": null,\n                    \"benefit_3\": \"Light and portable\",\n                    \"sohd_bulb_type\": null,\n                    \"sohd_lifestyle_image_file_name\": null,\n                    \"sohd_features_benefits_08\": null,\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"sohd_features_benefits_09\": null,\n                    \"sohd_energy_guide_file_name\": null,\n                    \"inside_diameter\": \"45\",\n                    \"marketplace_category\": null,\n                    \"sohd_cable_or_wire_type\": null,\n                    \"customer_part_number\": null,\n                    \"muko_item_id\": \"RFOF-8056\",\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"sohd_astm_specifications\": null,\n                    \"long_name_for_ebay\": null,\n                    \"extra_long_name_for_website\": null,\n                    \"sohd_awwa_specifications\": null,\n                    \"spec_sheet\": null,\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"sohd_fitting_size_1\": null,\n                    \"sohd_gender\": null,\n                    \"sohd_specification_file\": null,\n                    \"sohd_carbotcleed_compliant\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8056\",\n                    \"sohd_optional_accessory\": null,\n                    \"sohd_baa_compliant\": null,\n                    \"sohd_top_view_image_file_name\": null,\n                    \"regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 15\n                    },\n                    \"color_option\": \"Green\",\n                    \"sohd_required_accessory\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"sohd_reusable\": null,\n                    \"sohd_vendor_brand_logo\": null,\n                    \"priority_accessories\": null,\n                    \"sohd_package_quantity\": null,\n                    \"sohd_upc\": null,\n                    \"orientation\": null,\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"cost\": null,\n                    \"sohd_asme_specifications\": null,\n                    \"sohd_csa_certified\": null,\n                    \"sohd_sku_image_notes\": null,\n                    \"sohd_coating\": null,\n                    \"sohd_product_number_sku\": \"RFOF-8056\",\n                    \"sohd_width\": null,\n                    \"application\": null,\n                    \"sohd_brand_model_compatibility\": null,\n                    \"coverage_description_pt\": null,\n                    \"sohd_temperature_range\": null,\n                    \"marking_code\": null,\n                    \"sohd_oracle_item_class_ref_classification_reference\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"sohd_depth\": null,\n                    \"sohd_lighting_facts_asset_file_name\": null,\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"2 Stage\"\n                },\n                {\n                    \"id\": 17412005,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680318\n                    ],\n                    \"completeness_score\": 77,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 33,\n                        \"recicompressors\": 100,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"explosive\": null,\n                    \"warranty_language\": \"Defects Only\",\n                    \"sell_pack_desc\": \"Each\",\n                    \"sohd_mfg_product_number\": \"RFOF-8055\",\n                    \"sohd_etl_listed\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"map_price\": null,\n                    \"sohd_height\": null,\n                    \"coverage_length\": null,\n                    \"sohd_iso_specifications\": null,\n                    \"grainger_part_number\": \"1AD3433\",\n                    \"sale_active\": \"Yes\",\n                    \"brand\": null,\n                    \"sohd_installation_instructions_file\": null,\n                    \"sohd_power_source\": null,\n                    \"sohd_indoor_outdoor\": null,\n                    \"sohd_maximum_temperature\": null,\n                    \"country_of_origin\": \"China\",\n                    \"hazardous\": \"Yes\",\n                    \"sohd_cad_drawings_file_name\": null,\n                    \"coverage_description_it\": null,\n                    \"sohd_back_view_image_file_name\": null,\n                    \"safety_data_sheet\": null,\n                    \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"sohd_scheduleclass\": null,\n                    \"case_pack_upcean\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"sohd_left_view_image_file_name\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"main_material\": null,\n                    \"ship_pack_weight\": null,\n                    \"auto_linked_image\": null,\n                    \"assembly_instructions\": null,\n                    \"case_pack_weight\": null,\n                    \"sohd_temperature_rating\": null,\n                    \"sell_pack_qty\": \"1\",\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"sohd_bottom_view_image_file_name\": null,\n                    \"sohd_cord_length\": null,\n                    \"generate_technical_attributes\": null,\n                    \"sohd_warranty_file_name\": null,\n                    \"vendor\": null,\n                    \"msrp\": \"3000\",\n                    \"sohd_parts_breakdown_file\": null,\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"sohd_gauge\": null,\n                    \"sohd_phase\": null,\n                    \"sohd_disposable\": null,\n                    \"sohd_features_benefits_10\": null,\n                    \"website\": null,\n                    \"case_pack_width\": null,\n                    \"sohd_niosh_specifications\": null,\n                    \"sohd_spare_part_product_reference\": null,\n                    \"sohd_thickness\": null,\n                    \"list_price\": null,\n                    \"sohd_application\": null,\n                    \"sale_price\": null,\n                    \"yrfa_uom\": null,\n                    \"sohd_linebuy_id\": null,\n                    \"sohd_nsf_certified\": null,\n                    \"sohd_right_view_image_file_name\": null,\n                    \"sohd_wire_gauge\": null,\n                    \"sohd_clothing_size\": null,\n                    \"sohd_amp\": null,\n                    \"sohd_product_type\": null,\n                    \"tank_size\": \"50 gal\",\n                    \"yrfa_price\": \"999\",\n                    \"sohd_installation_type\": null,\n                    \"sohd_fm_approved\": null,\n                    \"ship_pack_height\": null,\n                    \"sohd_collection\": null,\n                    \"computed_price\": null,\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"sohd_glove_type\": null,\n                    \"sohd_material\": null,\n                    \"ship_pack_length\": null,\n                    \"supplier_stock_no\": \"8221293\",\n                    \"sohd_battery_type\": null,\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"sohd_mss_specifications\": null,\n                    \"coverage_description_es\": null,\n                    \"repair_policy\": null,\n                    \"sohd_weight\": null,\n                    \"sohd_watts\": null,\n                    \"coverage_description_en\": null,\n                    \"product_type_1\": null,\n                    \"sohd_vendor_logo\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"name\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n                    \"flammable\": null,\n                    \"sohd_step_id\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"main_image\": \"4070863028\",\n                    \"psi\": \"125 PSI\",\n                    \"action_photo\": null,\n                    \"poisonous\": \"Yes\",\n                    \"lifestyle_image\": null,\n                    \"video\": null,\n                    \"material_type\": \"Steel\",\n                    \"sohd_light_bulb_shape_code\": null,\n                    \"sohd_alt_product_number\": null,\n                    \"purchasing_completeness\": \"50\",\n                    \"sohd_smart_home_enabled\": null,\n                    \"sohd_osha_specifications\": null,\n                    \"sohd_x\": null,\n                    \"sohd_ce_approved\": null,\n                    \"accessory_product\": null,\n                    \"sohd_automatic_shutoff\": null,\n                    \"sohd_video_asset_reference_id\": null,\n                    \"case_pack_quantity\": null,\n                    \"gtin\": null,\n                    \"sohd_nema_specifications\": null,\n                    \"inner_pack_width\": null,\n                    \"sohd_x_3\": null,\n                    \"sohd_x_2\": null,\n                    \"sohd_x_5\": null,\n                    \"ship_pack_desc\": null,\n                    \"sohd_x_4\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"selling_length\": \"18\\\"\",\n                    \"prop_65_compliant\": \"Yes\",\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"asin\": \"32BH232H1\",\n                    \"sohd_number_of_pieces\": null,\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"amps\": null,\n                    \"generated_description\": null,\n                    \"avg_hours\": \"12\",\n                    \"action_shot\": null,\n                    \"sohd_volts\": null,\n                    \"sohd_ul_listed\": null,\n                    \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\">This is html</span></p>\",\n                    \"number\": \"RFOF-8055\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"sohd_nsf_specifications\": null,\n                    \"sohd_energy_star_compliant\": null,\n                    \"warranty\": \"3 Year\",\n                    \"input_voltage\": \"110 V\",\n                    \"sohd_brand_type\": null,\n                    \"prop_65_warning\": null,\n                    \"additional_images\": null,\n                    \"sohd_use_and_care_file\": null,\n                    \"sohd_epa_compliant\": null,\n                    \"inner_pack_height\": null,\n                    \"master_pack_qty\": \"4\",\n                    \"ship_pack_qty\": null,\n                    \"upc\": null,\n                    \"sohd_end_connection_2\": null,\n                    \"sohd_end_connection_1\": null,\n                    \"multi_category\": null,\n                    \"sohd_iapmo_listed\": null,\n                    \"sohd_tool_type\": null,\n                    \"zhz_material\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"ship_pack_width\": null,\n                    \"status\": \"Active\",\n                    \"sohd_brand_names\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_glove_size\": null,\n                    \"sohd_origin\": null,\n                    \"sohd_gsa_approved\": null,\n                    \"sohd_ada_compliant\": null,\n                    \"sohd_material_type\": null,\n                    \"sohd_maximum_pressure\": null,\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"selling_weight\": \"50 lbs\",\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"sohd_ansi_specifications\": null,\n                    \"sohd_item_class\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_asse_standards\": null,\n                    \"coverage_level\": null,\n                    \"mkt_comp\": \"0\",\n                    \"sohd_diameter\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"sohd_size\": null,\n                    \"sohd_colorfinish\": null,\n                    \"sohd_length\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"sohd_submittals_asset_file_name\": null,\n                    \"sohd_ma_approved\": null,\n                    \"sohd_scaqmd_compliant\": null,\n                    \"sohd_features_benefits_06\": null,\n                    \"sohd_features_benefits_07\": null,\n                    \"sohd_features_benefits_04\": null,\n                    \"sohd_mfgsupplier_name_id\": null,\n                    \"sohd_features_benefits_05\": null,\n                    \"sohd_features_benefits_02\": null,\n                    \"sohd_features_benefits_03\": null,\n                    \"sohd_features_benefits_01\": null,\n                    \"keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"benefit_6\": null,\n                    \"tank_capacity\": null,\n                    \"benefit_4\": \"Easily stackable with removable handle\",\n                    \"sohd_product_short_description\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n                    \"video_2\": null,\n                    \"benefit_5\": \"Made in USA\",\n                    \"sohd_includes\": null,\n                    \"benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"case_pack_height\": null,\n                    \"benefit_3\": \"Light and portable\",\n                    \"sohd_bulb_type\": null,\n                    \"sohd_lifestyle_image_file_name\": null,\n                    \"sohd_features_benefits_08\": null,\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"sohd_features_benefits_09\": null,\n                    \"sohd_energy_guide_file_name\": null,\n                    \"inside_diameter\": \"45\",\n                    \"marketplace_category\": null,\n                    \"sohd_cable_or_wire_type\": null,\n                    \"customer_part_number\": null,\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"sohd_astm_specifications\": null,\n                    \"long_name_for_ebay\": null,\n                    \"extra_long_name_for_website\": null,\n                    \"sohd_awwa_specifications\": null,\n                    \"spec_sheet\": null,\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"sohd_fitting_size_1\": null,\n                    \"sohd_gender\": null,\n                    \"sohd_specification_file\": null,\n                    \"sohd_carbotcleed_compliant\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8055\",\n                    \"sohd_optional_accessory\": null,\n                    \"sohd_baa_compliant\": null,\n                    \"sohd_top_view_image_file_name\": null,\n                    \"regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 15\n                    },\n                    \"color_option\": \"Urban Navy\",\n                    \"sohd_required_accessory\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"sohd_reusable\": null,\n                    \"sohd_vendor_brand_logo\": null,\n                    \"priority_accessories\": null,\n                    \"sohd_package_quantity\": null,\n                    \"sohd_upc\": null,\n                    \"orientation\": null,\n                    \"cost\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 12\n                    },\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"sohd_asme_specifications\": null,\n                    \"sohd_csa_certified\": null,\n                    \"sohd_sku_image_notes\": null,\n                    \"sohd_coating\": null,\n                    \"sohd_product_number_sku\": \"RFOF-8055\",\n                    \"sohd_width\": null,\n                    \"application\": null,\n                    \"sohd_brand_model_compatibility\": null,\n                    \"coverage_description_pt\": null,\n                    \"sohd_temperature_range\": null,\n                    \"marking_code\": null,\n                    \"sohd_oracle_item_class_ref_classification_reference\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"sohd_depth\": null,\n                    \"sohd_lighting_facts_asset_file_name\": null,\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"2 Stage\"\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1743511313208,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004680228,\n                4004680318,\n                4004680743\n            ],\n            \"catsy$option_attributes\": [\n                {\n                    \"id\": 20586328,\n                    \"key\": \"psi\"\n                },\n                {\n                    \"id\": 20926107,\n                    \"key\": \"no_of_stages\"\n                },\n                {\n                    \"id\": 20586340,\n                    \"key\": \"tank_size\"\n                },\n                {\n                    \"id\": 20586341,\n                    \"key\": \"tank_style\"\n                },\n                {\n                    \"id\": 20586311,\n                    \"key\": \"cylinder_material\"\n                },\n                {\n                    \"id\": 20734475,\n                    \"key\": \"input_voltage\"\n                }\n            ],\n            \"child_item_count\": 5,\n            \"variant_skus\": [\n                \"RFOF-8052\",\n                \"RFOF-8058\",\n                \"RFOF-8053\",\n                \"RFOF-8056\",\n                \"RFOF-8055\"\n            ],\n            \"completeness_score\": 79,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"tools\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"yboe_ship_pack_desc\": null,\n            \"yboe_peak_decibels\": null,\n            \"explosive\": \"Yes\",\n            \"yboe_compatible_inserts_partial\": null,\n            \"yboe_selling_length\": \"18\\\"\",\n            \"yboe_max_pressure\": null,\n            \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n            \"sohd_height\": null,\n            \"yboe_masterpack_height\": \"30\\\"\",\n            \"coverage_length\": null,\n            \"sohd_iso_specifications\": null,\n            \"yboe_top_material\": null,\n            \"grainger_part_number\": \"1AD3433\",\n            \"yboe_test\": null,\n            \"yboe_pantiltzoom_functionalities\": null,\n            \"yboe_website\": null,\n            \"yboe_screw_type_compatibility\": null,\n            \"sohd_power_source\": null,\n            \"yboe_unit_inchmm\": null,\n            \"country_of_origin\": \"China\",\n            \"hazardous\": \"Yes\",\n            \"sohd_cad_drawings_file_name\": null,\n            \"yboe_ship_pack_weight\": null,\n            \"yboe_hand\": null,\n            \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"sohd_scheduleclass\": null,\n            \"case_pack_upcean\": null,\n            \"yboe_delta\": null,\n            \"yboe_stc\": null,\n            \"yboe_heat_capacity\": null,\n            \"yboe_inner_pack_weight\": \"60 lbs\",\n            \"sohd_left_view_image_file_name\": null,\n            \"main_material\": \"Brass\",\n            \"ship_pack_weight\": null,\n            \"yboe_pan_range\": null,\n            \"auto_linked_image\": null,\n            \"twql_inner_pack_width\": null,\n            \"yboe_case_pack_upcean\": null,\n            \"yboe_inner_pack_width\": null,\n            \"sohd_temperature_rating\": null,\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"sohd_cord_length\": null,\n            \"generate_technical_attributes\": null,\n            \"yboe_tilt_speed\": null,\n            \"yboe_asin\": \"32BH232H1\",\n            \"yboe_flammable\": \"No\",\n            \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ],\n            \"sohd_disposable\": null,\n            \"website\": null,\n            \"sohd_niosh_specifications\": null,\n            \"yboe_masterpack_weight\": \"300 lbs\",\n            \"yboe_status\": \"Active\",\n            \"yboe_grade\": \"D\",\n            \"list_price\": \"$350\",\n            \"sohd_application\": null,\n            \"yrfa_uom\": null,\n            \"sohd_nsf_certified\": null,\n            \"yboe_master_code\": null,\n            \"sohd_right_view_image_file_name\": null,\n            \"yboe_btu\": null,\n            \"yboe_impact_rating\": null,\n            \"yboe_parent_sku\": \"RFOF-8052\",\n            \"sohd_wire_gauge\": null,\n            \"yboe_weldon_flat\": null,\n            \"sohd_product_type\": \"Waste Basket\",\n            \"sohd_amp\": null,\n            \"tank_size\": \"30 Gal\",\n            \"yboe_country_of_origin_old\": null,\n            \"yboe_appliance_input\": null,\n            \"sohd_installation_type\": null,\n            \"sohd_fm_approved\": null,\n            \"ship_pack_height\": null,\n            \"yboe_master_pack_desc\": \"Pack of 4\",\n            \"sohd_collection\": null,\n            \"computed_price\": null,\n            \"twql_inner_pack_weight\": \"60 lbs\",\n            \"twql_master_pack_desc\": \"Pack of 4\",\n            \"yboe_assembly_instructions\": null,\n            \"sohd_glove_type\": null,\n            \"yboe_iic_approvals\": null,\n            \"twql_ship_pack_height\": null,\n            \"yboe_sell_pack_qty\": \"1\",\n            \"yboe_dmpicklista\": null,\n            \"ship_pack_length\": null,\n            \"yrfa_super_extral_long_desc\": null,\n            \"sohd_mss_specifications\": null,\n            \"yboe_product_color\": null,\n            \"sohd_weight\": null,\n            \"yboe_poisonous\": null,\n            \"yboe_dc_cutting_diameter_mm\": null,\n            \"sohd_watts\": null,\n            \"yboe_pilot_diameter_mm\": null,\n            \"yboe_vendor\": null,\n            \"yboe_base_material_details\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"yboe_google_keywords\": null,\n            \"yboe_shcs_size\": null,\n            \"yboe_masterpack_width\": \"36\\\"\",\n            \"yboe_supplier_intended_and_approved_use\": null,\n            \"twql_inner_pack_length\": null,\n            \"tank_style\": \"Horizontal\",\n            \"yboe_certification_date\": null,\n            \"yboe_selling_weight\": \"50 lbs\",\n            \"main_image\": \"4070863028\",\n            \"action_photo\": null,\n            \"yboe_pilot_type\": null,\n            \"lifestyle_image\": null,\n            \"yboe_number_of_inserts\": null,\n            \"yboe_gender\": null,\n            \"material_type\": \"Steel\",\n            \"muko_length\": null,\n            \"sohd_light_bulb_shape_code\": null,\n            \"sohd_alt_product_number\": null,\n            \"purchasing_completeness\": \"50\",\n            \"yboe_field_of_view\": null,\n            \"sohd_x\": null,\n            \"yboe_publish_to_b2b_website\": \"Yes\",\n            \"twql_sell_pack_qty\": \"1\",\n            \"yboe_pump_location\": null,\n            \"sohd_ce_approved\": null,\n            \"accessory_product\": null,\n            \"sohd_video_asset_reference_id\": null,\n            \"case_pack_quantity\": null,\n            \"yboe_toolholder_style\": null,\n            \"yboe_category\": \"Tools > Power Tools > Compressors\",\n            \"inner_pack_width\": null,\n            \"sohd_x_3\": null,\n            \"sohd_x_2\": null,\n            \"sohd_x_5\": null,\n            \"ship_pack_desc\": null,\n            \"yboe_dfdfdfd\": null,\n            \"sohd_x_4\": null,\n            \"yboe_top_manufactured_wood_type\": null,\n            \"yboe_horse_power\": null,\n            \"yboe_secondary_category\": null,\n            \"selling_length\": \"18\\\"\",\n            \"yboe_lens_type\": null,\n            \"yboe_attribute_1\": null,\n            \"yboe_attribute_2\": null,\n            \"twql_master_pack_qty\": \"4\",\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"yboe_companywebsite\": null,\n            \"asin\": \"32BH232H1\",\n            \"sohd_number_of_pieces\": null,\n            \"generated_description\": null,\n            \"yboe_components\": null,\n            \"action_shot\": null,\n            \"yboe_lifestyle_image\": null,\n            \"yboe_hazardous\": \"Yes\",\n            \"yboe_action_photo\": null,\n            \"sohd_ul_listed\": null,\n            \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><strong>Product Dimensional Chart</strong></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr><tr><td>Weight</td><td>30 Lbs</td></tr></tbody></table></figure><ul><li><strong>Made in Canada</strong></li><li><strong>Tough Steel</strong></li><li><strong>Ergonomic Design</strong></li></ul>\",\n            \"number\": \"RFOF-8052\",\n            \"sellpack_height\": \"9\\\"\",\n            \"yboe_iic\": null,\n            \"sohd_nsf_specifications\": null,\n            \"warranty\": \"1 Year\",\n            \"yboe_repair_policy\": null,\n            \"sohd_brand_type\": null,\n            \"additional_images\": null,\n            \"sohd_epa_compliant\": null,\n            \"yboe_grainger_part_number\": \"1AD3433\",\n            \"yboe_feature_benefit_6\": null,\n            \"yboe_explosive\": \"Yes\",\n            \"master_pack_qty\": \"4\",\n            \"yboe_material_type\": \"Steel\",\n            \"upc\": null,\n            \"yboe_packaged_asset\": null,\n            \"yboe_map_price\": null,\n            \"twql_inner_pack_height\": null,\n            \"zhz_material\": null,\n            \"yboe_minimum_illumination\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"twql_sku\": \"RFOF-8052\",\n            \"yboe_masterpack_length\": \"48\\\"\",\n            \"status\": \"Active\",\n            \"sohd_brand_names\": null,\n            \"yboe_storage\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_seat_dimensions\": null,\n            \"yboe_maximum_operating_temperature\": null,\n            \"yboe_base_material\": null,\n            \"yboe_drawers_included\": null,\n            \"yboe_burner\": null,\n            \"yboe_life_stage_2\": null,\n            \"yboe_mkt_comp\": \"0\",\n            \"yboe_dcon_connection_diameter_decimal_inch\": null,\n            \"yboe_shelves_included\": null,\n            \"yboe_sellpack_height\": \"9\\\"\",\n            \"sohd_maximum_pressure\": null,\n            \"muko_weight\": null,\n            \"parent_sku\": \"RFOF-8052\",\n            \"sohd_ansi_specifications\": null,\n            \"yboe_pilot_diameter_decimal_inch\": null,\n            \"sohd_item_class\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_asse_standards\": null,\n            \"muko_height\": null,\n            \"coverage_level\": null,\n            \"yboe_complementary_products\": null,\n            \"mkt_comp\": \"0\",\n            \"yboe_extra_long_name_for_website\": null,\n            \"yboe_fuel\": null,\n            \"sohd_size\": null,\n            \"yboe_seat_height_from_floor\": null,\n            \"sohd_colorfinish\": null,\n            \"sohd_length\": null,\n            \"twql_ship_pack_desc\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"sohd_submittals_asset_file_name\": null,\n            \"sohd_scaqmd_compliant\": null,\n            \"yboe_rated_voltage_v\": null,\n            \"sohd_mfgsupplier_name_id\": null,\n            \"keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"benefit_6\": null,\n            \"benefit_4\": \"Easily stackable with removable handle\",\n            \"benefit_5\": \"Made in USA\",\n            \"benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"benefit_3\": \"Light and portable\",\n            \"sohd_bulb_type\": null,\n            \"sohd_lifestyle_image_file_name\": null,\n            \"benefit_1\": \"Made with high quality steel\",\n            \"yboe_rated_current_a\": null,\n            \"sohd_energy_guide_file_name\": null,\n            \"yboe_efficiency\": null,\n            \"twql_ship_pack_length\": null,\n            \"yboe_sell_pack_desc\": \"Each\",\n            \"customer_part_number\": null,\n            \"yboe_insert_holding_method\": null,\n            \"yboe_spec_sheet\": null,\n            \"yboe_environmental_rating\": null,\n            \"yboe_used_with\": [\n                \"20023094\"\n            ],\n            \"extra_long_name_for_website\": null,\n            \"sohd_awwa_specifications\": null,\n            \"yboe_supplier_stock_no\": \"8221291\",\n            \"yboe_long_name_for_ebay\": null,\n            \"sohd_fitting_size_1\": null,\n            \"sohd_gender\": null,\n            \"yboe_image_url\": null,\n            \"sohd_carbotcleed_compliant\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8052\",\n            \"sohd_optional_accessory\": null,\n            \"sohd_baa_compliant\": null,\n            \"sohd_top_view_image_file_name\": null,\n            \"yboe_pan_speed\": null,\n            \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_customer_part_number\": null,\n            \"color_option\": \"Garden Green\",\n            \"twql_sell_pack_weight\": \"50 lbs\",\n            \"twql_sell_pack_width\": \"18\\\"\",\n            \"sohd_required_accessory\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"sohd_reusable\": null,\n            \"yboe_country_of_origin\": \"China\",\n            \"yboe_max_resolution\": null,\n            \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n            \"yboe_color_multi\": null,\n            \"sohd_upc\": null,\n            \"master_pack_desc\": \"Pack of 4\",\n            \"sohd_asme_specifications\": null,\n            \"sohd_csa_certified\": null,\n            \"sohd_sku_image_notes\": null,\n            \"sohd_coating\": null,\n            \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n            \"yboe_arm_height_from_floor\": null,\n            \"yboe_safety_data_sheet\": null,\n            \"application\": null,\n            \"sohd_brand_model_compatibility\": null,\n            \"coverage_description_pt\": null,\n            \"yboe_product_type\": [\n                \"recicompressors\"\n            ],\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"3 Stage\",\n            \"warranty_language\": \"Manufacturer Defects Only\",\n            \"yboe_product_dimensions_w_x_d_x_h\": null,\n            \"sell_pack_desc\": \"Each\",\n            \"sohd_mfg_product_number\": \"RFOF-8052\",\n            \"yboe_additional_images\": null,\n            \"sohd_etl_listed\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"yboe_name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"map_price\": null,\n            \"yboe_seat_number\": null,\n            \"yboe_top_metal_finish_application\": null,\n            \"yboe_color_option\": \"Garden Green\",\n            \"sale_active\": \"Yes\",\n            \"yboe_toy_color\": null,\n            \"yboe_contact_configuration\": null,\n            \"brand\": \"RedDot\",\n            \"yboe_lu_maximum_counterbore_depth_mm\": null,\n            \"height\": null,\n            \"sohd_installation_instructions_file\": null,\n            \"yboe_msrp\": \"$349\",\n            \"sohd_indoor_outdoor\": null,\n            \"yboe_back_dimensions\": null,\n            \"sohd_maximum_temperature\": null,\n            \"coverage_description_it\": null,\n            \"sohd_back_view_image_file_name\": null,\n            \"safety_data_sheet\": null,\n            \"yboe_cost_string\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"yboe_dcon_connection_diameter_mm\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"yboe_side_image\": null,\n            \"yboe_case_pack_packaging_description\": null,\n            \"yboe_te\": null,\n            \"assembly_instructions\": null,\n            \"yboe_accessory_product\": null,\n            \"twql_name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"case_pack_weight\": null,\n            \"twql_master_pack_width\": \"36\\\"\",\n            \"yboe_product_type_1\": \"Waste Basket\",\n            \"sell_pack_qty\": \"1\",\n            \"yboe_number_of_shelves\": null,\n            \"twql_ship_pack_width\": null,\n            \"yboe_case_pack_weight\": null,\n            \"sohd_bottom_view_image_file_name\": null,\n            \"sohd_warranty_file_name\": null,\n            \"yboe_gtin\": \"013212121113\",\n            \"vendor\": null,\n            \"msrp\": \"$349\",\n            \"yboe_ebc_amazon\": null,\n            \"sohd_parts_breakdown_file\": null,\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"sohd_gauge\": null,\n            \"yboe_weight_capacity\": null,\n            \"sohd_phase\": null,\n            \"sohd_features_benefits_10\": null,\n            \"case_pack_width\": null,\n            \"sohd_spare_part_product_reference\": null,\n            \"yboe_sellpack_width\": \"18\\\"\",\n            \"sohd_thickness\": null,\n            \"yboe_aperture\": null,\n            \"sale_price\": null,\n            \"sohd_linebuy_id\": null,\n            \"yboe_benefit_5\": \"Made in USA\",\n            \"yboe_benefit_4\": \"Easily stackable with removable handle\",\n            \"twql_material\": null,\n            \"yboe_benefit_6\": null,\n            \"yboe_benefit_1\": \"Made with high quality steel\",\n            \"yboe_benefit_3\": \"Light and portable\",\n            \"yboe_salesforce_id\": null,\n            \"yboe_benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"yboe_head_length\": null,\n            \"yboe_dc_cutting_diameter_decimal_inch\": null,\n            \"sohd_clothing_size\": null,\n            \"yrfa_price\": \"999\",\n            \"yboe_lighted\": null,\n            \"yboe_tarriff\": null,\n            \"yboe_insert_style\": null,\n            \"twql_sell_pack_desc\": \"Each\",\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"yboe_max_screw_diameter_compatibility_mm\": null,\n            \"sohd_material\": null,\n            \"yboe_number_of_flutes\": null,\n            \"yboe_protein\": null,\n            \"supplier_stock_no\": \"8221291\",\n            \"sohd_battery_type\": null,\n            \"twql_master_pack_length\": \"48\\\"\",\n            \"coverage_description_es\": null,\n            \"yboe_autoiris\": null,\n            \"repair_policy\": null,\n            \"yboe_ship_pack_qty\": null,\n            \"coverage_description_en\": null,\n            \"twql_sell_pack_height\": \"9\\\"\",\n            \"product_type_1\": \"Waste Basket\",\n            \"sohd_vendor_logo\": null,\n            \"flammable\": \"No\",\n            \"name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"grip_length\": null,\n            \"sohd_step_id\": null,\n            \"yboe_battery_capacity\": null,\n            \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"psi\": \"120 PSI\",\n            \"yboe_installation_partners\": \"Greenlee Conduit\",\n            \"video\": null,\n            \"poisonous\": null,\n            \"sohd_smart_home_enabled\": null,\n            \"sohd_osha_specifications\": null,\n            \"yboe_accessory_size\": null,\n            \"sohd_automatic_shutoff\": null,\n            \"yboe_compatible_insert_hand\": null,\n            \"gtin\": \"013212121113\",\n            \"sohd_nema_specifications\": null,\n            \"yboe_marking_code\": null,\n            \"yboe_top_materials_details\": null,\n            \"yboe_customer\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"yboe_keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"prop_65_compliant\": \"Yes\",\n            \"yboe_sell_sheet\": null,\n            \"yboe_ratings_information\": null,\n            \"publish_to_b2b_website\": \"Yes\",\n            \"yboe_warp_resistent\": null,\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"twql_ship_pack_qty\": null,\n            \"amps\": null,\n            \"yboe_main_image\": \"4070863028\",\n            \"avg_hours\": null,\n            \"yboe_prop_65_compliant\": \"Yes\",\n            \"yboe_purchasing_completeness\": \"50\",\n            \"yboe_regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 18\n            },\n            \"sohd_volts\": null,\n            \"yboe_case_pack_quantity\": null,\n            \"yboe_cutting_edge_length\": null,\n            \"yboe_warranty_language\": \"Manufacturer Defects Only\",\n            \"sohd_energy_star_compliant\": null,\n            \"input_voltage\": \"110 V\",\n            \"prop_65_warning\": \"No cancer causing chemicals\",\n            \"sohd_use_and_care_file\": null,\n            \"inner_pack_height\": null,\n            \"ship_pack_qty\": null,\n            \"yboe_min_screw_diameter_compatibility_mm\": null,\n            \"sohd_end_connection_2\": null,\n            \"sohd_end_connection_1\": null,\n            \"yboe_master_pack_qty\": \"4\",\n            \"multi_category\": null,\n            \"sohd_iapmo_listed\": null,\n            \"sohd_tool_type\": null,\n            \"yboe_ship_pack_width\": null,\n            \"yboe_model\": null,\n            \"yboe_life_stage\": null,\n            \"ship_pack_width\": null,\n            \"yboe_upc\": null,\n            \"yboe_supplier\": null,\n            \"yboe_tilt_range\": null,\n            \"sohd_glove_size\": null,\n            \"sohd_origin\": null,\n            \"yboe_wiring_capacity_phase_contacts\": null,\n            \"muko_title\": null,\n            \"twql_master_pack_height\": \"30\\\"\",\n            \"yboe_image_2\": \"4070863023\",\n            \"yboe_image_3\": null,\n            \"sohd_gsa_approved\": null,\n            \"sohd_ada_compliant\": null,\n            \"sohd_material_type\": null,\n            \"yboe_prop_65_warning\": \"No cancer causing chemicals\",\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"yboe_ship_pack_length\": null,\n            \"yboe_inner_pack_length\": null,\n            \"selling_weight\": \"50 lbs\",\n            \"yboe_iic_multiple_approvals\": null,\n            \"yboe_minimum_operating_temperature\": null,\n            \"yboe_recommended_products\": null,\n            \"sohd_diameter\": null,\n            \"yboe_back_image\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"yboe_rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><strong>Product Dimensional Chart</strong></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr><tr><td>Weight</td><td>30 Lbs</td></tr></tbody></table></figure><ul><li><strong>Made in Canada</strong></li><li><strong>Tough Steel</strong></li><li><strong>Ergonomic Design</strong></li></ul>\",\n            \"yboe_base_drawing_number\": null,\n            \"yboe_shank_type\": null,\n            \"twql_sell_pack_length\": \"18\\\"\",\n            \"sohd_ma_approved\": null,\n            \"yboe_focal_length\": null,\n            \"sohd_features_benefits_06\": null,\n            \"sohd_features_benefits_07\": null,\n            \"sohd_features_benefits_04\": null,\n            \"sohd_features_benefits_05\": null,\n            \"sohd_features_benefits_02\": null,\n            \"sohd_features_benefits_03\": null,\n            \"sohd_features_benefits_01\": null,\n            \"tank_capacity\": null,\n            \"twql_master_pack_weight\": \"300 lbs\",\n            \"sohd_product_short_description\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"video_2\": null,\n            \"yboe_ship_pack_height\": null,\n            \"sohd_includes\": null,\n            \"case_pack_height\": null,\n            \"sohd_features_benefits_08\": null,\n            \"sohd_features_benefits_09\": null,\n            \"yboe_lf_functional_length_mm\": null,\n            \"inside_diameter\": \"45\",\n            \"marketplace_category\": null,\n            \"yboe_care_wash_and_usage_instructions\": null,\n            \"yboe_case_pack_length\": null,\n            \"sohd_cable_or_wire_type\": null,\n            \"yboe_brand_name\": null,\n            \"muko_item_id\": \"RFOF-8052\",\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"yboe_manufacturer_list\": null,\n            \"sohd_astm_specifications\": null,\n            \"long_name_for_ebay\": null,\n            \"spec_sheet\": null,\n            \"yboe_compatible_inserts_full\": null,\n            \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"yboe_case_pack_height\": null,\n            \"yboe_sale_active\": \"Yes\",\n            \"yboe_warranty\": \"1 Year\",\n            \"sohd_specification_file\": null,\n            \"yboe_generated_description\": null,\n            \"regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 15\n            },\n            \"yboe_inner_pack_height\": null,\n            \"yboe_remote_control\": null,\n            \"sohd_vendor_brand_logo\": null,\n            \"priority_accessories\": null,\n            \"sohd_package_quantity\": null,\n            \"yboe_action_shot\": null,\n            \"yboe_exchange_policy\": null,\n            \"orientation\": null,\n            \"cost\": {\n                \"currency\": \"USD\",\n                \"amount\": 90\n            },\n            \"yboe_coolant_through_yesno\": null,\n            \"yboe_case_pack_width\": null,\n            \"twql_hero_image\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"yboe_application\": null,\n            \"sohd_product_number_sku\": \"RFOF-8052\",\n            \"yboe_brand\": \"RedDot\",\n            \"twql_ship_pack_weight\": null,\n            \"sohd_width\": null,\n            \"sohd_temperature_range\": null,\n            \"marking_code\": null,\n            \"sohd_oracle_item_class_ref_classification_reference\": null,\n            \"yboe_image_sensor\": null,\n            \"yboe_shutter_time\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"sohd_depth\": null,\n            \"sohd_lighting_facts_asset_file_name\": null\n        },\n        {\n            \"id\": 17412007,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1743511313208,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676855,\n                4004677654,\n                4004680228\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"tools\": 100,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"yboe_ship_pack_desc\": null,\n            \"yboe_peak_decibels\": null,\n            \"explosive\": \"Yes\",\n            \"warranty_language\": \"Defects Only\",\n            \"yboe_product_dimensions_w_x_d_x_h\": null,\n            \"sell_pack_desc\": \"Each\",\n            \"yboe_compatible_inserts_partial\": null,\n            \"yboe_selling_length\": \"18\\\"\",\n            \"yboe_additional_images\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"yboe_name\": \"RedDot Oil-Free Air Compressor\",\n            \"map_price\": null,\n            \"yboe_seat_number\": null,\n            \"yboe_max_pressure\": null,\n            \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n            \"yboe_masterpack_height\": \"30\\\"\",\n            \"coverage_length\": null,\n            \"yboe_top_material\": null,\n            \"yboe_top_metal_finish_application\": null,\n            \"grainger_part_number\": \"1AD3433\",\n            \"yboe_color_option\": \"Green\",\n            \"sale_active\": \"Yes\",\n            \"yboe_test\": null,\n            \"yboe_toy_color\": null,\n            \"yboe_contact_configuration\": null,\n            \"brand\": \"RedDot\",\n            \"yboe_lu_maximum_counterbore_depth_mm\": null,\n            \"yboe_pantiltzoom_functionalities\": null,\n            \"height\": null,\n            \"yboe_website\": null,\n            \"yboe_screw_type_compatibility\": null,\n            \"yboe_msrp\": \"3000\",\n            \"yboe_unit_inchmm\": null,\n            \"yboe_back_dimensions\": null,\n            \"country_of_origin\": \"China\",\n            \"hazardous\": \"Yes\",\n            \"yboe_ship_pack_weight\": null,\n            \"yboe_hand\": null,\n            \"coverage_description_it\": null,\n            \"safety_data_sheet\": null,\n            \"yboe_cost_string\": null,\n            \"case_pack_upcean\": null,\n            \"yboe_delta\": null,\n            \"yboe_stc\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"yboe_heat_capacity\": null,\n            \"yboe_inner_pack_weight\": \"60 lbs\",\n            \"yboe_dcon_connection_diameter_mm\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"main_material\": null,\n            \"yboe_side_image\": null,\n            \"ship_pack_weight\": null,\n            \"yboe_case_pack_packaging_description\": null,\n            \"yboe_pan_range\": null,\n            \"auto_linked_image\": null,\n            \"yboe_te\": null,\n            \"assembly_instructions\": null,\n            \"yboe_accessory_product\": null,\n            \"yboe_case_pack_upcean\": null,\n            \"case_pack_weight\": null,\n            \"yboe_inner_pack_width\": null,\n            \"sell_pack_qty\": \"1\",\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"yboe_product_type_1\": null,\n            \"yboe_number_of_shelves\": null,\n            \"yboe_case_pack_weight\": null,\n            \"generate_technical_attributes\": null,\n            \"yboe_tilt_speed\": null,\n            \"yboe_asin\": \"32BH232H1\",\n            \"vendor\": null,\n            \"yboe_gtin\": null,\n            \"msrp\": \"3000\",\n            \"yboe_ebc_amazon\": null,\n            \"yboe_flammable\": \"Yes\",\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_weight_capacity\": null,\n            \"website\": null,\n            \"case_pack_width\": null,\n            \"yboe_masterpack_weight\": \"300 lbs\",\n            \"yboe_status\": \"Active\",\n            \"yboe_sellpack_width\": \"18\\\"\",\n            \"yboe_grade\": \"D\",\n            \"yboe_aperture\": null,\n            \"list_price\": null,\n            \"sale_price\": null,\n            \"yrfa_uom\": null,\n            \"yboe_benefit_5\": \"Made in USA\",\n            \"yboe_master_code\": null,\n            \"yboe_benefit_4\": \"Easily stackable with removable handle\",\n            \"yboe_benefit_6\": null,\n            \"yboe_benefit_1\": \"Made with high quality steel\",\n            \"yboe_btu\": null,\n            \"yboe_benefit_3\": \"Light and portable\",\n            \"yboe_impact_rating\": null,\n            \"yboe_salesforce_id\": null,\n            \"yboe_benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"yboe_parent_sku\": \"RFOF-8052\",\n            \"yboe_head_length\": null,\n            \"yboe_weldon_flat\": null,\n            \"yboe_dc_cutting_diameter_decimal_inch\": null,\n            \"tank_size\": \"50 Gal\",\n            \"yrfa_price\": \"999\",\n            \"yboe_country_of_origin_old\": null,\n            \"yboe_lighted\": null,\n            \"yboe_appliance_input\": null,\n            \"yboe_tarriff\": null,\n            \"yboe_insert_style\": null,\n            \"ship_pack_height\": null,\n            \"yboe_master_pack_desc\": \"Pack of 4\",\n            \"computed_price\": null,\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"yboe_max_screw_diameter_compatibility_mm\": null,\n            \"yboe_assembly_instructions\": null,\n            \"yboe_iic_approvals\": null,\n            \"yboe_sell_pack_qty\": \"1\",\n            \"yboe_dmpicklista\": null,\n            \"yboe_number_of_flutes\": null,\n            \"ship_pack_length\": null,\n            \"yboe_protein\": null,\n            \"supplier_stock_no\": \"8221295\",\n            \"yrfa_super_extral_long_desc\": null,\n            \"coverage_description_es\": null,\n            \"yboe_autoiris\": null,\n            \"yboe_product_color\": null,\n            \"repair_policy\": null,\n            \"yboe_ship_pack_qty\": null,\n            \"yboe_poisonous\": null,\n            \"yboe_dc_cutting_diameter_mm\": null,\n            \"coverage_description_en\": null,\n            \"yboe_pilot_diameter_mm\": null,\n            \"yboe_vendor\": null,\n            \"product_type_1\": null,\n            \"yboe_base_material_details\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"yboe_google_keywords\": null,\n            \"yboe_shcs_size\": null,\n            \"flammable\": \"Yes\",\n            \"grip_length\": \"12\",\n            \"name\": \"RedDot Oil-Free Air Compressor\",\n            \"yboe_masterpack_width\": \"36\\\"\",\n            \"yboe_supplier_intended_and_approved_use\": null,\n            \"yboe_battery_capacity\": null,\n            \"tank_style\": \"Horizontal\",\n            \"yboe_certification_date\": null,\n            \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_selling_weight\": \"50 lbs\",\n            \"main_image\": \"4070863028\",\n            \"psi\": \"120 PSI\",\n            \"yboe_installation_partners\": \"Greenlee Conduit\",\n            \"action_photo\": null,\n            \"yboe_pilot_type\": null,\n            \"lifestyle_image\": null,\n            \"video\": null,\n            \"poisonous\": null,\n            \"yboe_number_of_inserts\": null,\n            \"yboe_gender\": null,\n            \"material_type\": \"Steel\",\n            \"muko_length\": null,\n            \"purchasing_completeness\": \"50\",\n            \"yboe_field_of_view\": null,\n            \"yboe_accessory_size\": null,\n            \"yboe_publish_to_b2b_website\": \"Yes\",\n            \"yboe_pump_location\": null,\n            \"accessory_product\": null,\n            \"yboe_compatible_insert_hand\": null,\n            \"case_pack_quantity\": null,\n            \"gtin\": null,\n            \"yboe_toolholder_style\": null,\n            \"yboe_category\": \"Tools > Power Tools > Compressors\",\n            \"inner_pack_width\": null,\n            \"yboe_marking_code\": null,\n            \"ship_pack_desc\": null,\n            \"yboe_top_materials_details\": null,\n            \"yboe_customer\": null,\n            \"yboe_dfdfdfd\": null,\n            \"yboe_top_manufactured_wood_type\": null,\n            \"yboe_horse_power\": null,\n            \"yboe_secondary_category\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"selling_length\": \"18\\\"\",\n            \"yboe_lens_type\": null,\n            \"yboe_keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"yboe_attribute_1\": null,\n            \"yboe_attribute_2\": null,\n            \"prop_65_compliant\": \"Yes\",\n            \"yboe_sell_sheet\": null,\n            \"yboe_ratings_information\": null,\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"publish_to_b2b_website\": \"Yes\",\n            \"yboe_warp_resistent\": null,\n            \"yboe_companywebsite\": null,\n            \"asin\": \"32BH232H1\",\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"amps\": null,\n            \"generated_description\": null,\n            \"yboe_components\": null,\n            \"avg_hours\": \"12\",\n            \"yboe_main_image\": \"4070863028\",\n            \"action_shot\": null,\n            \"yboe_prop_65_compliant\": \"Yes\",\n            \"yboe_purchasing_completeness\": \"50\",\n            \"yboe_lifestyle_image\": null,\n            \"yboe_hazardous\": \"Yes\",\n            \"yboe_regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 18\n            },\n            \"yboe_case_pack_quantity\": null,\n            \"yboe_action_photo\": null,\n            \"yboe_cutting_edge_length\": null,\n            \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><i><strong>This is html and being used to present rich information.</strong></i></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr></tbody></table></figure>\",\n            \"number\": \"RFOF-8058\",\n            \"sellpack_height\": \"9\\\"\",\n            \"yboe_warranty_language\": \"Defects Only\",\n            \"yboe_iic\": null,\n            \"warranty\": \"5 Year\",\n            \"yboe_repair_policy\": null,\n            \"input_voltage\": \"110 V\",\n            \"prop_65_warning\": null,\n            \"additional_images\": null,\n            \"inner_pack_height\": null,\n            \"yboe_grainger_part_number\": \"1AD3433\",\n            \"yboe_feature_benefit_6\": null,\n            \"yboe_explosive\": \"Yes\",\n            \"master_pack_qty\": \"4\",\n            \"yboe_material_type\": \"Steel\",\n            \"ship_pack_qty\": null,\n            \"upc\": null,\n            \"yboe_min_screw_diameter_compatibility_mm\": null,\n            \"yboe_packaged_asset\": null,\n            \"yboe_map_price\": null,\n            \"yboe_master_pack_qty\": \"4\",\n            \"multi_category\": null,\n            \"zhz_material\": null,\n            \"yboe_ship_pack_width\": null,\n            \"yboe_minimum_illumination\": null,\n            \"yboe_model\": null,\n            \"yboe_life_stage\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"ship_pack_width\": null,\n            \"yboe_masterpack_length\": \"48\\\"\",\n            \"status\": \"Active\",\n            \"yboe_upc\": null,\n            \"yboe_supplier\": null,\n            \"yboe_storage\": null,\n            \"yboe_tilt_range\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_seat_dimensions\": null,\n            \"yboe_maximum_operating_temperature\": null,\n            \"yboe_wiring_capacity_phase_contacts\": null,\n            \"muko_title\": null,\n            \"yboe_base_material\": null,\n            \"yboe_image_2\": \"4070863023\",\n            \"yboe_image_3\": null,\n            \"yboe_drawers_included\": null,\n            \"yboe_burner\": null,\n            \"yboe_life_stage_2\": null,\n            \"yboe_mkt_comp\": \"0\",\n            \"yboe_dcon_connection_diameter_decimal_inch\": null,\n            \"yboe_shelves_included\": null,\n            \"yboe_sellpack_height\": \"9\\\"\",\n            \"yboe_prop_65_warning\": null,\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"yboe_ship_pack_length\": null,\n            \"yboe_inner_pack_length\": null,\n            \"muko_weight\": null,\n            \"selling_weight\": \"50 lbs\",\n            \"parent_sku\": \"RFOF-8052\",\n            \"yboe_pilot_diameter_decimal_inch\": null,\n            \"yboe_iic_multiple_approvals\": null,\n            \"yboe_minimum_operating_temperature\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"muko_height\": null,\n            \"coverage_level\": null,\n            \"yboe_complementary_products\": null,\n            \"yboe_recommended_products\": null,\n            \"mkt_comp\": \"0\",\n            \"yboe_back_image\": null,\n            \"yboe_extra_long_name_for_website\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"yboe_rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><i><strong>This is html and being used to present rich information.</strong></i></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr></tbody></table></figure>\",\n            \"yboe_fuel\": null,\n            \"yboe_seat_height_from_floor\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"yboe_base_drawing_number\": null,\n            \"yboe_shank_type\": null,\n            \"yboe_focal_length\": null,\n            \"yboe_rated_voltage_v\": null,\n            \"keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"benefit_6\": null,\n            \"tank_capacity\": null,\n            \"benefit_4\": \"Easily stackable with removable handle\",\n            \"video_2\": null,\n            \"yboe_ship_pack_height\": null,\n            \"benefit_5\": \"Made in USA\",\n            \"benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"case_pack_height\": null,\n            \"benefit_3\": \"Light and portable\",\n            \"benefit_1\": \"Made with high quality steel\",\n            \"yboe_lf_functional_length_mm\": null,\n            \"yboe_rated_current_a\": null,\n            \"inside_diameter\": \"45\",\n            \"yboe_efficiency\": null,\n            \"yboe_sell_pack_desc\": \"Each\",\n            \"marketplace_category\": null,\n            \"yboe_care_wash_and_usage_instructions\": null,\n            \"yboe_case_pack_length\": null,\n            \"customer_part_number\": null,\n            \"yboe_insert_holding_method\": null,\n            \"yboe_brand_name\": null,\n            \"yboe_spec_sheet\": null,\n            \"muko_item_id\": \"RFOF-8058\",\n            \"yboe_environmental_rating\": null,\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"yboe_manufacturer_list\": null,\n            \"yboe_used_with\": [\n                \"20023094\"\n            ],\n            \"long_name_for_ebay\": null,\n            \"extra_long_name_for_website\": null,\n            \"spec_sheet\": null,\n            \"yboe_supplier_stock_no\": \"8221295\",\n            \"yboe_compatible_inserts_full\": null,\n            \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"yboe_case_pack_height\": null,\n            \"yboe_sale_active\": \"Yes\",\n            \"yboe_warranty\": \"5 Year\",\n            \"yboe_long_name_for_ebay\": null,\n            \"yboe_image_url\": null,\n            \"yboe_generated_description\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8058\",\n            \"regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 15\n            },\n            \"yboe_pan_speed\": null,\n            \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_customer_part_number\": null,\n            \"yboe_inner_pack_height\": null,\n            \"color_option\": \"Green\",\n            \"yboe_remote_control\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"priority_accessories\": null,\n            \"yboe_country_of_origin\": \"China\",\n            \"yboe_action_shot\": null,\n            \"yboe_max_resolution\": null,\n            \"yboe_exchange_policy\": null,\n            \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n            \"yboe_color_multi\": null,\n            \"orientation\": null,\n            \"cost\": {\n                \"currency\": \"USD\",\n                \"amount\": 50\n            },\n            \"master_pack_desc\": \"Pack of 4\",\n            \"yboe_coolant_through_yesno\": null,\n            \"yboe_case_pack_width\": null,\n            \"yboe_application\": null,\n            \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n            \"yboe_brand\": \"RedDot\",\n            \"yboe_arm_height_from_floor\": null,\n            \"yboe_safety_data_sheet\": null,\n            \"application\": null,\n            \"coverage_description_pt\": null,\n            \"yboe_product_type\": [\n                \"recicompressors\"\n            ],\n            \"marking_code\": null,\n            \"yboe_image_sensor\": null,\n            \"yboe_shutter_time\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"4 Stage\"\n        },\n        {\n            \"id\": 17412004,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676855,\n                4004677654,\n                4004680318\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"yboe_ad_export_annual\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"yboe_ship_pack_desc\": null,\n            \"yboe_peak_decibels\": null,\n            \"explosive\": null,\n            \"yboe_compatible_inserts_partial\": null,\n            \"yboe_selling_length\": \"18\\\"\",\n            \"yboe_max_pressure\": null,\n            \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n            \"sohd_height\": null,\n            \"yboe_masterpack_height\": \"30\\\"\",\n            \"coverage_length\": null,\n            \"sohd_iso_specifications\": null,\n            \"yboe_top_material\": null,\n            \"grainger_part_number\": \"32FSFD11\",\n            \"yboe_test\": null,\n            \"yboe_pantiltzoom_functionalities\": null,\n            \"yboe_website\": null,\n            \"yboe_screw_type_compatibility\": null,\n            \"sohd_power_source\": null,\n            \"yboe_unit_inchmm\": null,\n            \"country_of_origin\": \"China\",\n            \"hazardous\": \"No\",\n            \"sohd_cad_drawings_file_name\": null,\n            \"yboe_ship_pack_weight\": null,\n            \"yboe_hand\": null,\n            \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"sohd_scheduleclass\": null,\n            \"case_pack_upcean\": null,\n            \"yboe_delta\": null,\n            \"yboe_stc\": null,\n            \"yboe_heat_capacity\": null,\n            \"yboe_inner_pack_weight\": \"60 lbs\",\n            \"sohd_left_view_image_file_name\": null,\n            \"main_material\": null,\n            \"ship_pack_weight\": null,\n            \"yboe_pan_range\": null,\n            \"auto_linked_image\": null,\n            \"yboe_case_pack_upcean\": null,\n            \"yboe_inner_pack_width\": null,\n            \"sohd_temperature_rating\": null,\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"sohd_cord_length\": null,\n            \"generate_technical_attributes\": null,\n            \"yboe_tilt_speed\": null,\n            \"yboe_asin\": \"ABFDSDSD2\",\n            \"yboe_flammable\": null,\n            \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_disposable\": null,\n            \"website\": null,\n            \"sohd_niosh_specifications\": null,\n            \"yboe_masterpack_weight\": \"300 lbs\",\n            \"yboe_status\": \"Active\",\n            \"yboe_grade\": \"D\",\n            \"list_price\": \"$3150\",\n            \"sohd_application\": null,\n            \"yrfa_uom\": null,\n            \"sohd_nsf_certified\": null,\n            \"yboe_master_code\": null,\n            \"sohd_right_view_image_file_name\": null,\n            \"yboe_btu\": null,\n            \"yboe_impact_rating\": null,\n            \"yboe_parent_sku\": \"RFOF-8052\",\n            \"sohd_wire_gauge\": null,\n            \"yboe_weldon_flat\": null,\n            \"sohd_amp\": null,\n            \"sohd_product_type\": null,\n            \"tank_size\": \"40 gal\",\n            \"yboe_country_of_origin_old\": null,\n            \"yboe_appliance_input\": null,\n            \"sohd_installation_type\": null,\n            \"sohd_fm_approved\": null,\n            \"ship_pack_height\": null,\n            \"yboe_master_pack_desc\": \"Pack of 4\",\n            \"sohd_collection\": null,\n            \"computed_price\": null,\n            \"yboe_assembly_instructions\": null,\n            \"sohd_glove_type\": null,\n            \"yboe_iic_approvals\": null,\n            \"yboe_sell_pack_qty\": \"1\",\n            \"yboe_dmpicklista\": null,\n            \"ship_pack_length\": null,\n            \"yrfa_super_extral_long_desc\": null,\n            \"sohd_mss_specifications\": null,\n            \"yboe_product_color\": null,\n            \"sohd_weight\": null,\n            \"yboe_poisonous\": null,\n            \"yboe_dc_cutting_diameter_mm\": null,\n            \"sohd_watts\": null,\n            \"yboe_pilot_diameter_mm\": null,\n            \"yboe_vendor\": null,\n            \"yboe_base_material_details\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"yboe_google_keywords\": null,\n            \"yboe_shcs_size\": null,\n            \"yboe_masterpack_width\": \"36\\\"\",\n            \"yboe_supplier_intended_and_approved_use\": null,\n            \"tank_style\": \"Horizontal\",\n            \"yboe_certification_date\": null,\n            \"yboe_selling_weight\": \"50 lbs\",\n            \"main_image\": \"4070863028\",\n            \"action_photo\": null,\n            \"yboe_pilot_type\": null,\n            \"lifestyle_image\": null,\n            \"yboe_number_of_inserts\": null,\n            \"yboe_gender\": null,\n            \"material_type\": \"Steel\",\n            \"sohd_light_bulb_shape_code\": null,\n            \"sohd_alt_product_number\": null,\n            \"purchasing_completeness\": \"25\",\n            \"yboe_field_of_view\": null,\n            \"sohd_x\": null,\n            \"yboe_publish_to_b2b_website\": \"Yes\",\n            \"yboe_pump_location\": null,\n            \"sohd_ce_approved\": null,\n            \"accessory_product\": null,\n            \"sohd_video_asset_reference_id\": null,\n            \"case_pack_quantity\": null,\n            \"yboe_toolholder_style\": null,\n            \"yboe_category\": \"Tools > Power Tools > Compressors\",\n            \"inner_pack_width\": null,\n            \"sohd_x_3\": null,\n            \"sohd_x_2\": null,\n            \"sohd_x_5\": null,\n            \"ship_pack_desc\": null,\n            \"yboe_dfdfdfd\": null,\n            \"sohd_x_4\": null,\n            \"yboe_top_manufactured_wood_type\": null,\n            \"yboe_horse_power\": null,\n            \"yboe_secondary_category\": null,\n            \"selling_length\": \"18\\\"\",\n            \"yboe_lens_type\": null,\n            \"yboe_attribute_1\": null,\n            \"yboe_attribute_2\": null,\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"yboe_companywebsite\": null,\n            \"asin\": \"ABFDSDSD2\",\n            \"sohd_number_of_pieces\": null,\n            \"generated_description\": null,\n            \"yboe_components\": null,\n            \"action_shot\": null,\n            \"yboe_lifestyle_image\": null,\n            \"yboe_hazardous\": \"No\",\n            \"yboe_action_photo\": null,\n            \"sohd_ul_listed\": null,\n            \"rich_description\": \"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All steel </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\">connecting rods</span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.</span><br><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\"><strong>Removable 100% </strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">cast </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(120, 75%, 60%);font-size:15px;\\\"><strong>iron</strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat. This makes competitor pumps good for about a 40-50% duty cycle – while claiming a 100% duty cycle. Most of the pumps with aluminum cylinders have to be replaced in 1-2 years because they would not hold up under heavy use. Not our Air pumps! Our solid cast iron cylinders can “take the heat” and are designed to perform on heavy load demands.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All cast iron cylinder heads. Cast iron heads are more durable and dependable for trouble free operation.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">“Disc valve design” intake and exhaust valves. Disc valves have been around for over 100 years and have been proven to perform. Most of our competitors are using “throw-away” reed valves which are not nearly as durable and can’t be re-built. Our disc valves come right out of the top of the cylinder head where they can be serviced in minutes instead of hours like reed valves.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">Top quality compression and oil rings. Our rings ensure performance with low oil carry over (1-5 PPM).</span></p>\",\n            \"number\": \"RFOF-8053\",\n            \"sellpack_height\": \"9\\\"\",\n            \"yboe_iic\": null,\n            \"sohd_nsf_specifications\": null,\n            \"warranty\": \"2 Year\",\n            \"yboe_repair_policy\": null,\n            \"sohd_brand_type\": null,\n            \"additional_images\": null,\n            \"sohd_epa_compliant\": null,\n            \"yboe_grainger_part_number\": \"32FSFD11\",\n            \"yboe_feature_benefit_6\": null,\n            \"yboe_explosive\": null,\n            \"master_pack_qty\": \"4\",\n            \"yboe_material_type\": \"Steel\",\n            \"upc\": null,\n            \"yboe_packaged_asset\": null,\n            \"yboe_map_price\": null,\n            \"zhz_material\": null,\n            \"yboe_minimum_illumination\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"yboe_masterpack_length\": \"48\\\"\",\n            \"status\": \"Active\",\n            \"sohd_brand_names\": null,\n            \"yboe_storage\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_seat_dimensions\": null,\n            \"yboe_maximum_operating_temperature\": null,\n            \"yboe_base_material\": null,\n            \"yboe_drawers_included\": null,\n            \"yboe_burner\": null,\n            \"yboe_life_stage_2\": null,\n            \"yboe_mkt_comp\": \"0\",\n            \"yboe_dcon_connection_diameter_decimal_inch\": null,\n            \"yboe_shelves_included\": null,\n            \"yboe_sellpack_height\": \"9\\\"\",\n            \"sohd_maximum_pressure\": null,\n            \"parent_sku\": \"RFOF-8052\",\n            \"sohd_ansi_specifications\": null,\n            \"yboe_pilot_diameter_decimal_inch\": null,\n            \"sohd_item_class\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_asse_standards\": null,\n            \"coverage_level\": null,\n            \"yboe_complementary_products\": null,\n            \"mkt_comp\": \"0\",\n            \"yboe_extra_long_name_for_website\": null,\n            \"yboe_fuel\": null,\n            \"sohd_size\": null,\n            \"yboe_seat_height_from_floor\": null,\n            \"sohd_colorfinish\": null,\n            \"sohd_length\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"sohd_submittals_asset_file_name\": null,\n            \"sohd_scaqmd_compliant\": null,\n            \"yboe_rated_voltage_v\": null,\n            \"sohd_mfgsupplier_name_id\": null,\n            \"keyword_tags\": [\n                \"bulk\",\n                \"movable\",\n                \"yellow\"\n            ],\n            \"benefit_6\": null,\n            \"benefit_4\": \"Removable 100% cast iron cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat.\",\n            \"benefit_5\": \"Made in USA\",\n            \"benefit_2\": \"Our pump also features a precision balanced solid cast iron crankshaft with Timken-Style stainless steel roller bearings on the front and rear of the crankshaft to ensure smooth & efficient operation with less drag and less energy use.\",\n            \"benefit_3\": \"ll steel connecting rods with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.\",\n            \"sohd_bulb_type\": null,\n            \"sohd_lifestyle_image_file_name\": null,\n            \"benefit_1\": \"Made with high quality steel\",\n            \"yboe_rated_current_a\": null,\n            \"sohd_energy_guide_file_name\": null,\n            \"yboe_efficiency\": null,\n            \"yboe_sell_pack_desc\": \"Each\",\n            \"customer_part_number\": \"78493433\",\n            \"yboe_insert_holding_method\": null,\n            \"yboe_spec_sheet\": null,\n            \"yboe_environmental_rating\": null,\n            \"yboe_used_with\": [\n                \"20023094\"\n            ],\n            \"extra_long_name_for_website\": null,\n            \"sohd_awwa_specifications\": null,\n            \"yboe_supplier_stock_no\": \"8221292\",\n            \"yboe_long_name_for_ebay\": null,\n            \"sohd_fitting_size_1\": null,\n            \"sohd_gender\": null,\n            \"yboe_image_url\": null,\n            \"sohd_carbotcleed_compliant\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8053\",\n            \"sohd_optional_accessory\": null,\n            \"sohd_baa_compliant\": null,\n            \"sohd_top_view_image_file_name\": null,\n            \"yboe_pan_speed\": null,\n            \"yboe_customer_part_number\": \"78493433\",\n            \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"color_option\": \"Deep Garnet Red\",\n            \"sohd_required_accessory\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"sohd_reusable\": null,\n            \"yboe_country_of_origin\": \"China\",\n            \"yboe_max_resolution\": null,\n            \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n            \"yboe_color_multi\": null,\n            \"sohd_upc\": null,\n            \"master_pack_desc\": \"Pack of 4\",\n            \"sohd_asme_specifications\": null,\n            \"sohd_csa_certified\": null,\n            \"sohd_sku_image_notes\": null,\n            \"sohd_coating\": null,\n            \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n            \"yboe_arm_height_from_floor\": null,\n            \"yboe_safety_data_sheet\": null,\n            \"application\": null,\n            \"sohd_brand_model_compatibility\": null,\n            \"coverage_description_pt\": null,\n            \"yboe_product_type\": [\n                \"recicompressors\"\n            ],\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"3 Stage\",\n            \"warranty_language\": \"English. (Does not cover theft)\",\n            \"yboe_product_dimensions_w_x_d_x_h\": null,\n            \"sell_pack_desc\": \"Each\",\n            \"sohd_mfg_product_number\": \"RFOF-8053\",\n            \"yboe_additional_images\": null,\n            \"sohd_etl_listed\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"yboe_name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n            \"map_price\": null,\n            \"yboe_seat_number\": null,\n            \"yboe_top_metal_finish_application\": null,\n            \"yboe_color_option\": \"Deep Garnet Red\",\n            \"sale_active\": \"Yes\",\n            \"yboe_toy_color\": null,\n            \"yboe_contact_configuration\": null,\n            \"brand\": \"RedDot\",\n            \"yboe_lu_maximum_counterbore_depth_mm\": null,\n            \"sohd_installation_instructions_file\": null,\n            \"yboe_msrp\": \"$3125.00\",\n            \"sohd_indoor_outdoor\": null,\n            \"yboe_back_dimensions\": null,\n            \"sohd_maximum_temperature\": null,\n            \"coverage_description_it\": null,\n            \"sohd_back_view_image_file_name\": null,\n            \"safety_data_sheet\": null,\n            \"yboe_cost_string\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"yboe_dcon_connection_diameter_mm\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"yboe_side_image\": null,\n            \"yboe_case_pack_packaging_description\": null,\n            \"yboe_te\": null,\n            \"assembly_instructions\": null,\n            \"yboe_accessory_product\": null,\n            \"case_pack_weight\": null,\n            \"sell_pack_qty\": \"1\",\n            \"yboe_product_type_1\": null,\n            \"yboe_number_of_shelves\": null,\n            \"yboe_case_pack_weight\": null,\n            \"sohd_bottom_view_image_file_name\": null,\n            \"sohd_warranty_file_name\": null,\n            \"yboe_gtin\": \"0783932932321\",\n            \"vendor\": null,\n            \"msrp\": \"$3125.00\",\n            \"yboe_ebc_amazon\": null,\n            \"sohd_parts_breakdown_file\": null,\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"sohd_gauge\": null,\n            \"yboe_weight_capacity\": null,\n            \"sohd_phase\": null,\n            \"sohd_features_benefits_10\": null,\n            \"case_pack_width\": null,\n            \"sohd_spare_part_product_reference\": null,\n            \"yboe_sellpack_width\": \"18\\\"\",\n            \"sohd_thickness\": null,\n            \"yboe_aperture\": null,\n            \"sale_price\": null,\n            \"sohd_linebuy_id\": null,\n            \"yboe_benefit_5\": \"Made in USA\",\n            \"yboe_benefit_4\": \"Removable 100% cast iron cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat.\",\n            \"yboe_benefit_6\": null,\n            \"yboe_benefit_1\": \"Made with high quality steel\",\n            \"yboe_benefit_3\": \"ll steel connecting rods with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.\",\n            \"yboe_salesforce_id\": null,\n            \"yboe_benefit_2\": \"Our pump also features a precision balanced solid cast iron crankshaft with Timken-Style stainless steel roller bearings on the front and rear of the crankshaft to ensure smooth & efficient operation with less drag and less energy use.\",\n            \"yboe_head_length\": null,\n            \"yboe_dc_cutting_diameter_decimal_inch\": null,\n            \"sohd_clothing_size\": null,\n            \"yrfa_price\": \"999\",\n            \"yboe_lighted\": null,\n            \"yboe_tarriff\": null,\n            \"yboe_insert_style\": null,\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"yboe_max_screw_diameter_compatibility_mm\": null,\n            \"sohd_material\": null,\n            \"yboe_number_of_flutes\": null,\n            \"yboe_protein\": null,\n            \"supplier_stock_no\": \"8221292\",\n            \"sohd_battery_type\": null,\n            \"coverage_description_es\": null,\n            \"yboe_autoiris\": null,\n            \"repair_policy\": null,\n            \"yboe_ship_pack_qty\": null,\n            \"coverage_description_en\": null,\n            \"product_type_1\": null,\n            \"sohd_vendor_logo\": null,\n            \"name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n            \"flammable\": null,\n            \"sohd_step_id\": null,\n            \"yboe_battery_capacity\": null,\n            \"psi\": \"120 PSi\",\n            \"yboe_installation_partners\": \"Greenlee Conduit\",\n            \"video\": null,\n            \"poisonous\": null,\n            \"sohd_smart_home_enabled\": null,\n            \"sohd_osha_specifications\": null,\n            \"yboe_accessory_size\": null,\n            \"sohd_automatic_shutoff\": null,\n            \"yboe_compatible_insert_hand\": null,\n            \"gtin\": \"0783932932321\",\n            \"sohd_nema_specifications\": null,\n            \"yboe_marking_code\": null,\n            \"yboe_top_materials_details\": null,\n            \"yboe_customer\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"yboe_keyword_tags\": [\n                \"bulk\",\n                \"movable\",\n                \"yellow\"\n            ],\n            \"prop_65_compliant\": \"Yes\",\n            \"yboe_sell_sheet\": null,\n            \"yboe_ratings_information\": null,\n            \"publish_to_b2b_website\": \"Yes\",\n            \"yboe_warp_resistent\": null,\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"amps\": null,\n            \"avg_hours\": \"12\",\n            \"yboe_main_image\": \"4070863028\",\n            \"yboe_prop_65_compliant\": \"Yes\",\n            \"yboe_purchasing_completeness\": \"25\",\n            \"yboe_regular_price\": null,\n            \"sohd_volts\": null,\n            \"yboe_case_pack_quantity\": null,\n            \"yboe_cutting_edge_length\": null,\n            \"yboe_warranty_language\": \"English. (Does not cover theft)\",\n            \"sohd_energy_star_compliant\": null,\n            \"input_voltage\": \"110 V\",\n            \"prop_65_warning\": \"N/A\",\n            \"sohd_use_and_care_file\": null,\n            \"inner_pack_height\": null,\n            \"ship_pack_qty\": null,\n            \"yboe_min_screw_diameter_compatibility_mm\": null,\n            \"sohd_end_connection_2\": null,\n            \"sohd_end_connection_1\": null,\n            \"yboe_master_pack_qty\": \"4\",\n            \"multi_category\": null,\n            \"sohd_iapmo_listed\": null,\n            \"sohd_tool_type\": null,\n            \"yboe_ship_pack_width\": null,\n            \"yboe_model\": null,\n            \"yboe_life_stage\": null,\n            \"ship_pack_width\": null,\n            \"yboe_upc\": null,\n            \"yboe_supplier\": null,\n            \"yboe_tilt_range\": null,\n            \"sohd_glove_size\": null,\n            \"sohd_origin\": null,\n            \"yboe_wiring_capacity_phase_contacts\": null,\n            \"yboe_image_2\": \"4070863023\",\n            \"yboe_image_3\": null,\n            \"sohd_gsa_approved\": null,\n            \"sohd_ada_compliant\": null,\n            \"sohd_material_type\": null,\n            \"yboe_prop_65_warning\": \"N/A\",\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"yboe_ship_pack_length\": null,\n            \"yboe_inner_pack_length\": null,\n            \"selling_weight\": \"50 lbs\",\n            \"yboe_iic_multiple_approvals\": null,\n            \"yboe_minimum_operating_temperature\": null,\n            \"yboe_recommended_products\": null,\n            \"sohd_diameter\": null,\n            \"yboe_back_image\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"yboe_rich_description\": \"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All steel </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\">connecting rods</span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.</span><br><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\"><strong>Removable 100% </strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">cast </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(120, 75%, 60%);font-size:15px;\\\"><strong>iron</strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat. This makes competitor pumps good for about a 40-50% duty cycle – while claiming a 100% duty cycle. Most of the pumps with aluminum cylinders have to be replaced in 1-2 years because they would not hold up under heavy use. Not our Air pumps! Our solid cast iron cylinders can “take the heat” and are designed to perform on heavy load demands.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All cast iron cylinder heads. Cast iron heads are more durable and dependable for trouble free operation.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">“Disc valve design” intake and exhaust valves. Disc valves have been around for over 100 years and have been proven to perform. Most of our competitors are using “throw-away” reed valves which are not nearly as durable and can’t be re-built. Our disc valves come right out of the top of the cylinder head where they can be serviced in minutes instead of hours like reed valves.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">Top quality compression and oil rings. Our rings ensure performance with low oil carry over (1-5 PPM).</span></p>\",\n            \"yboe_base_drawing_number\": null,\n            \"yboe_shank_type\": null,\n            \"sohd_ma_approved\": null,\n            \"yboe_focal_length\": null,\n            \"sohd_features_benefits_06\": null,\n            \"sohd_features_benefits_07\": null,\n            \"sohd_features_benefits_04\": null,\n            \"sohd_features_benefits_05\": null,\n            \"sohd_features_benefits_02\": null,\n            \"sohd_features_benefits_03\": null,\n            \"sohd_features_benefits_01\": null,\n            \"tank_capacity\": null,\n            \"sohd_product_short_description\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n            \"video_2\": null,\n            \"yboe_ship_pack_height\": null,\n            \"sohd_includes\": null,\n            \"case_pack_height\": null,\n            \"sohd_features_benefits_08\": null,\n            \"sohd_features_benefits_09\": null,\n            \"yboe_lf_functional_length_mm\": null,\n            \"inside_diameter\": \"45\",\n            \"marketplace_category\": null,\n            \"yboe_care_wash_and_usage_instructions\": null,\n            \"yboe_case_pack_length\": null,\n            \"sohd_cable_or_wire_type\": null,\n            \"yboe_brand_name\": null,\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"yboe_manufacturer_list\": null,\n            \"sohd_astm_specifications\": null,\n            \"long_name_for_ebay\": null,\n            \"spec_sheet\": null,\n            \"yboe_compatible_inserts_full\": null,\n            \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"yboe_case_pack_height\": null,\n            \"yboe_sale_active\": \"Yes\",\n            \"yboe_warranty\": \"2 Year\",\n            \"sohd_specification_file\": null,\n            \"yboe_generated_description\": null,\n            \"regular_price\": null,\n            \"yboe_inner_pack_height\": null,\n            \"yboe_remote_control\": null,\n            \"sohd_vendor_brand_logo\": null,\n            \"priority_accessories\": null,\n            \"sohd_package_quantity\": null,\n            \"yboe_action_shot\": null,\n            \"yboe_exchange_policy\": null,\n            \"orientation\": null,\n            \"cost\": {\n                \"currency\": \"USD\",\n                \"amount\": 30\n            },\n            \"yboe_coolant_through_yesno\": null,\n            \"yboe_case_pack_width\": null,\n            \"yboe_application\": null,\n            \"sohd_product_number_sku\": \"RFOF-8053\",\n            \"yboe_brand\": \"RedDot\",\n            \"sohd_width\": null,\n            \"sohd_temperature_range\": null,\n            \"marking_code\": null,\n            \"sohd_oracle_item_class_ref_classification_reference\": null,\n            \"yboe_image_sensor\": null,\n            \"yboe_shutter_time\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"sohd_depth\": null,\n            \"sohd_lighting_facts_asset_file_name\": null\n        },\n        {\n            \"id\": 17412006,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004680228,\n                4004680318\n            ],\n            \"completeness_score\": 77,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"specifications\": 33,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"explosive\": null,\n            \"warranty_language\": \"Defects Only\",\n            \"sell_pack_desc\": \"Each\",\n            \"sohd_mfg_product_number\": \"RFOF-8056\",\n            \"sohd_etl_listed\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"map_price\": null,\n            \"sohd_height\": null,\n            \"coverage_length\": null,\n            \"sohd_iso_specifications\": null,\n            \"grainger_part_number\": \"1AD3433\",\n            \"sale_active\": \"Yes\",\n            \"brand\": null,\n            \"sohd_installation_instructions_file\": null,\n            \"sohd_power_source\": null,\n            \"sohd_indoor_outdoor\": null,\n            \"sohd_maximum_temperature\": null,\n            \"hazardous\": \"Yes\",\n            \"country_of_origin\": null,\n            \"sohd_cad_drawings_file_name\": null,\n            \"coverage_description_it\": null,\n            \"sohd_back_view_image_file_name\": null,\n            \"safety_data_sheet\": null,\n            \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"sohd_scheduleclass\": null,\n            \"case_pack_upcean\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"sohd_left_view_image_file_name\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"main_material\": null,\n            \"ship_pack_weight\": null,\n            \"auto_linked_image\": null,\n            \"assembly_instructions\": null,\n            \"case_pack_weight\": null,\n            \"sohd_temperature_rating\": null,\n            \"sell_pack_qty\": \"1\",\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"sohd_bottom_view_image_file_name\": null,\n            \"sohd_cord_length\": null,\n            \"generate_technical_attributes\": null,\n            \"sohd_warranty_file_name\": null,\n            \"vendor\": null,\n            \"msrp\": \"3000\",\n            \"sohd_parts_breakdown_file\": null,\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"sohd_gauge\": null,\n            \"sohd_phase\": null,\n            \"sohd_disposable\": null,\n            \"sohd_features_benefits_10\": null,\n            \"website\": null,\n            \"case_pack_width\": null,\n            \"sohd_niosh_specifications\": null,\n            \"sohd_spare_part_product_reference\": null,\n            \"sohd_thickness\": null,\n            \"list_price\": null,\n            \"sohd_application\": null,\n            \"sale_price\": null,\n            \"yrfa_uom\": null,\n            \"sohd_linebuy_id\": null,\n            \"sohd_nsf_certified\": null,\n            \"sohd_right_view_image_file_name\": null,\n            \"sohd_wire_gauge\": null,\n            \"sohd_clothing_size\": null,\n            \"sohd_amp\": null,\n            \"sohd_product_type\": null,\n            \"tank_size\": \"50 gal\",\n            \"yrfa_price\": \"999\",\n            \"sohd_installation_type\": null,\n            \"sohd_fm_approved\": null,\n            \"ship_pack_height\": null,\n            \"sohd_collection\": null,\n            \"computed_price\": null,\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"sohd_glove_type\": null,\n            \"sohd_material\": null,\n            \"ship_pack_length\": null,\n            \"supplier_stock_no\": \"8221294\",\n            \"sohd_battery_type\": null,\n            \"yrfa_super_extral_long_desc\": null,\n            \"sohd_mss_specifications\": null,\n            \"coverage_description_es\": null,\n            \"repair_policy\": null,\n            \"sohd_weight\": null,\n            \"sohd_watts\": null,\n            \"coverage_description_en\": null,\n            \"product_type_1\": null,\n            \"sohd_vendor_logo\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"name\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n            \"flammable\": null,\n            \"sohd_step_id\": null,\n            \"tank_style\": \"Horizontal\",\n            \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"main_image\": \"4070863028\",\n            \"psi\": \"150 PSI\",\n            \"action_photo\": null,\n            \"lifestyle_image\": null,\n            \"video\": null,\n            \"poisonous\": null,\n            \"material_type\": \"Steel\",\n            \"muko_length\": null,\n            \"sohd_light_bulb_shape_code\": null,\n            \"sohd_alt_product_number\": null,\n            \"purchasing_completeness\": \"50\",\n            \"sohd_smart_home_enabled\": null,\n            \"sohd_osha_specifications\": null,\n            \"sohd_x\": null,\n            \"sohd_ce_approved\": null,\n            \"accessory_product\": null,\n            \"sohd_automatic_shutoff\": null,\n            \"sohd_video_asset_reference_id\": null,\n            \"case_pack_quantity\": null,\n            \"gtin\": null,\n            \"sohd_nema_specifications\": null,\n            \"inner_pack_width\": null,\n            \"sohd_x_3\": null,\n            \"sohd_x_2\": null,\n            \"sohd_x_5\": null,\n            \"ship_pack_desc\": null,\n            \"sohd_x_4\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"selling_length\": \"18\\\"\",\n            \"prop_65_compliant\": \"Yes\",\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"publish_to_b2b_website\": \"Yes\",\n            \"asin\": \"32BH232H1\",\n            \"sohd_number_of_pieces\": null,\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"amps\": null,\n            \"generated_description\": null,\n            \"avg_hours\": \"12\",\n            \"action_shot\": null,\n            \"sohd_volts\": null,\n            \"sohd_ul_listed\": null,\n            \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\">This is html</span></p>\",\n            \"number\": \"RFOF-8056\",\n            \"sellpack_height\": \"9\\\"\",\n            \"sohd_nsf_specifications\": null,\n            \"sohd_energy_star_compliant\": null,\n            \"warranty\": \"4 Year\",\n            \"input_voltage\": \"110 V\",\n            \"sohd_brand_type\": null,\n            \"prop_65_warning\": null,\n            \"additional_images\": null,\n            \"sohd_use_and_care_file\": null,\n            \"sohd_epa_compliant\": null,\n            \"inner_pack_height\": null,\n            \"master_pack_qty\": \"4\",\n            \"ship_pack_qty\": null,\n            \"upc\": null,\n            \"sohd_end_connection_2\": null,\n            \"sohd_end_connection_1\": null,\n            \"multi_category\": null,\n            \"sohd_iapmo_listed\": null,\n            \"sohd_tool_type\": null,\n            \"zhz_material\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"ship_pack_width\": null,\n            \"status\": \"Active\",\n            \"sohd_brand_names\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_glove_size\": null,\n            \"sohd_origin\": null,\n            \"muko_title\": null,\n            \"sohd_gsa_approved\": null,\n            \"sohd_ada_compliant\": null,\n            \"sohd_material_type\": null,\n            \"sohd_maximum_pressure\": null,\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"muko_weight\": null,\n            \"selling_weight\": \"50 lbs\",\n            \"parent_sku\": \"RFOF-8052\",\n            \"sohd_ansi_specifications\": null,\n            \"sohd_item_class\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_asse_standards\": null,\n            \"muko_height\": null,\n            \"coverage_level\": null,\n            \"mkt_comp\": \"0\",\n            \"sohd_diameter\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"sohd_size\": null,\n            \"sohd_colorfinish\": null,\n            \"sohd_length\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"sohd_submittals_asset_file_name\": null,\n            \"sohd_ma_approved\": null,\n            \"sohd_scaqmd_compliant\": null,\n            \"sohd_features_benefits_06\": null,\n            \"sohd_features_benefits_07\": null,\n            \"sohd_features_benefits_04\": null,\n            \"sohd_mfgsupplier_name_id\": null,\n            \"sohd_features_benefits_05\": null,\n            \"sohd_features_benefits_02\": null,\n            \"sohd_features_benefits_03\": null,\n            \"sohd_features_benefits_01\": null,\n            \"keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"benefit_6\": null,\n            \"tank_capacity\": null,\n            \"benefit_4\": \"Easily stackable with removable handle\",\n            \"sohd_product_short_description\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n            \"video_2\": null,\n            \"benefit_5\": \"Made in USA\",\n            \"sohd_includes\": null,\n            \"benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"case_pack_height\": null,\n            \"benefit_3\": \"Light and portable\",\n            \"sohd_bulb_type\": null,\n            \"sohd_lifestyle_image_file_name\": null,\n            \"sohd_features_benefits_08\": null,\n            \"benefit_1\": \"Made with high quality steel\",\n            \"sohd_features_benefits_09\": null,\n            \"sohd_energy_guide_file_name\": null,\n            \"inside_diameter\": \"45\",\n            \"marketplace_category\": null,\n            \"sohd_cable_or_wire_type\": null,\n            \"customer_part_number\": null,\n            \"muko_item_id\": \"RFOF-8056\",\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"sohd_astm_specifications\": null,\n            \"long_name_for_ebay\": null,\n            \"extra_long_name_for_website\": null,\n            \"sohd_awwa_specifications\": null,\n            \"spec_sheet\": null,\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"sohd_fitting_size_1\": null,\n            \"sohd_gender\": null,\n            \"sohd_specification_file\": null,\n            \"sohd_carbotcleed_compliant\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8056\",\n            \"sohd_optional_accessory\": null,\n            \"sohd_baa_compliant\": null,\n            \"sohd_top_view_image_file_name\": null,\n            \"regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 15\n            },\n            \"color_option\": \"Green\",\n            \"sohd_required_accessory\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"sohd_reusable\": null,\n            \"sohd_vendor_brand_logo\": null,\n            \"priority_accessories\": null,\n            \"sohd_package_quantity\": null,\n            \"sohd_upc\": null,\n            \"orientation\": null,\n            \"master_pack_desc\": \"Pack of 4\",\n            \"cost\": null,\n            \"sohd_asme_specifications\": null,\n            \"sohd_csa_certified\": null,\n            \"sohd_sku_image_notes\": null,\n            \"sohd_coating\": null,\n            \"sohd_product_number_sku\": \"RFOF-8056\",\n            \"sohd_width\": null,\n            \"application\": null,\n            \"sohd_brand_model_compatibility\": null,\n            \"coverage_description_pt\": null,\n            \"sohd_temperature_range\": null,\n            \"marking_code\": null,\n            \"sohd_oracle_item_class_ref_classification_reference\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"sohd_depth\": null,\n            \"sohd_lighting_facts_asset_file_name\": null,\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"2 Stage\"\n        },\n        {\n            \"id\": 17412005,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004680318\n            ],\n            \"completeness_score\": 77,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 33,\n                \"recicompressors\": 100,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"explosive\": null,\n            \"warranty_language\": \"Defects Only\",\n            \"sell_pack_desc\": \"Each\",\n            \"sohd_mfg_product_number\": \"RFOF-8055\",\n            \"sohd_etl_listed\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"map_price\": null,\n            \"sohd_height\": null,\n            \"coverage_length\": null,\n            \"sohd_iso_specifications\": null,\n            \"grainger_part_number\": \"1AD3433\",\n            \"sale_active\": \"Yes\",\n            \"brand\": null,\n            \"sohd_installation_instructions_file\": null,\n            \"sohd_power_source\": null,\n            \"sohd_indoor_outdoor\": null,\n            \"sohd_maximum_temperature\": null,\n            \"country_of_origin\": \"China\",\n            \"hazardous\": \"Yes\",\n            \"sohd_cad_drawings_file_name\": null,\n            \"coverage_description_it\": null,\n            \"sohd_back_view_image_file_name\": null,\n            \"safety_data_sheet\": null,\n            \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"sohd_scheduleclass\": null,\n            \"case_pack_upcean\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"sohd_left_view_image_file_name\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"main_material\": null,\n            \"ship_pack_weight\": null,\n            \"auto_linked_image\": null,\n            \"assembly_instructions\": null,\n            \"case_pack_weight\": null,\n            \"sohd_temperature_rating\": null,\n            \"sell_pack_qty\": \"1\",\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"sohd_bottom_view_image_file_name\": null,\n            \"sohd_cord_length\": null,\n            \"generate_technical_attributes\": null,\n            \"sohd_warranty_file_name\": null,\n            \"vendor\": null,\n            \"msrp\": \"3000\",\n            \"sohd_parts_breakdown_file\": null,\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"sohd_gauge\": null,\n            \"sohd_phase\": null,\n            \"sohd_disposable\": null,\n            \"sohd_features_benefits_10\": null,\n            \"website\": null,\n            \"case_pack_width\": null,\n            \"sohd_niosh_specifications\": null,\n            \"sohd_spare_part_product_reference\": null,\n            \"sohd_thickness\": null,\n            \"list_price\": null,\n            \"sohd_application\": null,\n            \"sale_price\": null,\n            \"yrfa_uom\": null,\n            \"sohd_linebuy_id\": null,\n            \"sohd_nsf_certified\": null,\n            \"sohd_right_view_image_file_name\": null,\n            \"sohd_wire_gauge\": null,\n            \"sohd_clothing_size\": null,\n            \"sohd_amp\": null,\n            \"sohd_product_type\": null,\n            \"tank_size\": \"50 gal\",\n            \"yrfa_price\": \"999\",\n            \"sohd_installation_type\": null,\n            \"sohd_fm_approved\": null,\n            \"ship_pack_height\": null,\n            \"sohd_collection\": null,\n            \"computed_price\": null,\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"sohd_glove_type\": null,\n            \"sohd_material\": null,\n            \"ship_pack_length\": null,\n            \"supplier_stock_no\": \"8221293\",\n            \"sohd_battery_type\": null,\n            \"yrfa_super_extral_long_desc\": null,\n            \"sohd_mss_specifications\": null,\n            \"coverage_description_es\": null,\n            \"repair_policy\": null,\n            \"sohd_weight\": null,\n            \"sohd_watts\": null,\n            \"coverage_description_en\": null,\n            \"product_type_1\": null,\n            \"sohd_vendor_logo\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"name\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n            \"flammable\": null,\n            \"sohd_step_id\": null,\n            \"tank_style\": \"Horizontal\",\n            \"main_image\": \"4070863028\",\n            \"psi\": \"125 PSI\",\n            \"action_photo\": null,\n            \"poisonous\": \"Yes\",\n            \"lifestyle_image\": null,\n            \"video\": null,\n            \"material_type\": \"Steel\",\n            \"sohd_light_bulb_shape_code\": null,\n            \"sohd_alt_product_number\": null,\n            \"purchasing_completeness\": \"50\",\n            \"sohd_smart_home_enabled\": null,\n            \"sohd_osha_specifications\": null,\n            \"sohd_x\": null,\n            \"sohd_ce_approved\": null,\n            \"accessory_product\": null,\n            \"sohd_automatic_shutoff\": null,\n            \"sohd_video_asset_reference_id\": null,\n            \"case_pack_quantity\": null,\n            \"gtin\": null,\n            \"sohd_nema_specifications\": null,\n            \"inner_pack_width\": null,\n            \"sohd_x_3\": null,\n            \"sohd_x_2\": null,\n            \"sohd_x_5\": null,\n            \"ship_pack_desc\": null,\n            \"sohd_x_4\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"selling_length\": \"18\\\"\",\n            \"prop_65_compliant\": \"Yes\",\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"publish_to_b2b_website\": \"Yes\",\n            \"asin\": \"32BH232H1\",\n            \"sohd_number_of_pieces\": null,\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"amps\": null,\n            \"generated_description\": null,\n            \"avg_hours\": \"12\",\n            \"action_shot\": null,\n            \"sohd_volts\": null,\n            \"sohd_ul_listed\": null,\n            \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\">This is html</span></p>\",\n            \"number\": \"RFOF-8055\",\n            \"sellpack_height\": \"9\\\"\",\n            \"sohd_nsf_specifications\": null,\n            \"sohd_energy_star_compliant\": null,\n            \"warranty\": \"3 Year\",\n            \"input_voltage\": \"110 V\",\n            \"sohd_brand_type\": null,\n            \"prop_65_warning\": null,\n            \"additional_images\": null,\n            \"sohd_use_and_care_file\": null,\n            \"sohd_epa_compliant\": null,\n            \"inner_pack_height\": null,\n            \"master_pack_qty\": \"4\",\n            \"ship_pack_qty\": null,\n            \"upc\": null,\n            \"sohd_end_connection_2\": null,\n            \"sohd_end_connection_1\": null,\n            \"multi_category\": null,\n            \"sohd_iapmo_listed\": null,\n            \"sohd_tool_type\": null,\n            \"zhz_material\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"ship_pack_width\": null,\n            \"status\": \"Active\",\n            \"sohd_brand_names\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_glove_size\": null,\n            \"sohd_origin\": null,\n            \"sohd_gsa_approved\": null,\n            \"sohd_ada_compliant\": null,\n            \"sohd_material_type\": null,\n            \"sohd_maximum_pressure\": null,\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"selling_weight\": \"50 lbs\",\n            \"parent_sku\": \"RFOF-8052\",\n            \"sohd_ansi_specifications\": null,\n            \"sohd_item_class\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_asse_standards\": null,\n            \"coverage_level\": null,\n            \"mkt_comp\": \"0\",\n            \"sohd_diameter\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"sohd_size\": null,\n            \"sohd_colorfinish\": null,\n            \"sohd_length\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"sohd_submittals_asset_file_name\": null,\n            \"sohd_ma_approved\": null,\n            \"sohd_scaqmd_compliant\": null,\n            \"sohd_features_benefits_06\": null,\n            \"sohd_features_benefits_07\": null,\n            \"sohd_features_benefits_04\": null,\n            \"sohd_mfgsupplier_name_id\": null,\n            \"sohd_features_benefits_05\": null,\n            \"sohd_features_benefits_02\": null,\n            \"sohd_features_benefits_03\": null,\n            \"sohd_features_benefits_01\": null,\n            \"keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"benefit_6\": null,\n            \"tank_capacity\": null,\n            \"benefit_4\": \"Easily stackable with removable handle\",\n            \"sohd_product_short_description\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n            \"video_2\": null,\n            \"benefit_5\": \"Made in USA\",\n            \"sohd_includes\": null,\n            \"benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"case_pack_height\": null,\n            \"benefit_3\": \"Light and portable\",\n            \"sohd_bulb_type\": null,\n            \"sohd_lifestyle_image_file_name\": null,\n            \"sohd_features_benefits_08\": null,\n            \"benefit_1\": \"Made with high quality steel\",\n            \"sohd_features_benefits_09\": null,\n            \"sohd_energy_guide_file_name\": null,\n            \"inside_diameter\": \"45\",\n            \"marketplace_category\": null,\n            \"sohd_cable_or_wire_type\": null,\n            \"customer_part_number\": null,\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"sohd_astm_specifications\": null,\n            \"long_name_for_ebay\": null,\n            \"extra_long_name_for_website\": null,\n            \"sohd_awwa_specifications\": null,\n            \"spec_sheet\": null,\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"sohd_fitting_size_1\": null,\n            \"sohd_gender\": null,\n            \"sohd_specification_file\": null,\n            \"sohd_carbotcleed_compliant\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8055\",\n            \"sohd_optional_accessory\": null,\n            \"sohd_baa_compliant\": null,\n            \"sohd_top_view_image_file_name\": null,\n            \"regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 15\n            },\n            \"color_option\": \"Urban Navy\",\n            \"sohd_required_accessory\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"sohd_reusable\": null,\n            \"sohd_vendor_brand_logo\": null,\n            \"priority_accessories\": null,\n            \"sohd_package_quantity\": null,\n            \"sohd_upc\": null,\n            \"orientation\": null,\n            \"cost\": {\n                \"currency\": \"USD\",\n                \"amount\": 12\n            },\n            \"master_pack_desc\": \"Pack of 4\",\n            \"sohd_asme_specifications\": null,\n            \"sohd_csa_certified\": null,\n            \"sohd_sku_image_notes\": null,\n            \"sohd_coating\": null,\n            \"sohd_product_number_sku\": \"RFOF-8055\",\n            \"sohd_width\": null,\n            \"application\": null,\n            \"sohd_brand_model_compatibility\": null,\n            \"coverage_description_pt\": null,\n            \"sohd_temperature_range\": null,\n            \"marking_code\": null,\n            \"sohd_oracle_item_class_ref_classification_reference\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"sohd_depth\": null,\n            \"sohd_lighting_facts_asset_file_name\": null,\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"2 Stage\"\n        }\n    ]\n}"},{"id":"47c42baa-18b4-4ffc-b0c3-06ba0abd8fc7","name":"Attribute IDs Only","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/products/:product_id/variants?attribute_ids_only=true","host":["https://api.catsy.com/v4"],"path":["products",":product_id","variants"],"query":[{"key":"attribute_ids_only","value":"true","description":"When set to true, the response will only include the attribute IDs for each variant instead of full variant details."}],"variable":[{"key":"product_id","value":"17412003","description":"Internal Product ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 17:48:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=%2B%2FGFzey0l66aOU6azblkoi2GbJXTtiwMYD%2BDSiJw3LsjnqoWqxe8vXnTYx8VEoJFiWcH7biDUf7%2BldGrnb%2B1ytkPnG%2BHIjLDevSINXdPb6h8y3fG4%2F93U9gz6XeWrHs%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933eb6655cf75ed0-EWR","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=9146&min_rtt=8896&rtt_var=3514&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1135&delivery_rate=162769&cwnd=57&unsent_bytes=0&cid=c6bd414346ec7c10&ts=1296&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"attributeIds\": [\n        20586328,\n        20926107,\n        20586340,\n        20586341,\n        20586311,\n        20734475,\n        20586324\n    ],\n    \"variants\": [\n        {\n            \"id\": 17412003,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"variants\": [\n                {\n                    \"id\": 17412003,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1743511313208,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680318,\n                        4004680743\n                    ],\n                    \"completeness_score\": 79,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"tools\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"yboe_ship_pack_desc\": null,\n                    \"yboe_peak_decibels\": null,\n                    \"explosive\": \"Yes\",\n                    \"yboe_compatible_inserts_partial\": null,\n                    \"yboe_selling_length\": \"18\\\"\",\n                    \"yboe_max_pressure\": null,\n                    \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n                    \"sohd_height\": null,\n                    \"yboe_masterpack_height\": \"30\\\"\",\n                    \"coverage_length\": null,\n                    \"sohd_iso_specifications\": null,\n                    \"yboe_top_material\": null,\n                    \"grainger_part_number\": \"1AD3433\",\n                    \"yboe_test\": null,\n                    \"yboe_pantiltzoom_functionalities\": null,\n                    \"yboe_website\": null,\n                    \"yboe_screw_type_compatibility\": null,\n                    \"sohd_power_source\": null,\n                    \"yboe_unit_inchmm\": null,\n                    \"country_of_origin\": \"China\",\n                    \"hazardous\": \"Yes\",\n                    \"sohd_cad_drawings_file_name\": null,\n                    \"yboe_ship_pack_weight\": null,\n                    \"yboe_hand\": null,\n                    \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"sohd_scheduleclass\": null,\n                    \"case_pack_upcean\": null,\n                    \"yboe_delta\": null,\n                    \"yboe_stc\": null,\n                    \"yboe_heat_capacity\": null,\n                    \"yboe_inner_pack_weight\": \"60 lbs\",\n                    \"sohd_left_view_image_file_name\": null,\n                    \"main_material\": \"Brass\",\n                    \"ship_pack_weight\": null,\n                    \"yboe_pan_range\": null,\n                    \"auto_linked_image\": null,\n                    \"twql_inner_pack_width\": null,\n                    \"yboe_case_pack_upcean\": null,\n                    \"yboe_inner_pack_width\": null,\n                    \"sohd_temperature_rating\": null,\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"sohd_cord_length\": null,\n                    \"generate_technical_attributes\": null,\n                    \"yboe_tilt_speed\": null,\n                    \"yboe_asin\": \"32BH232H1\",\n                    \"yboe_flammable\": \"No\",\n                    \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_disposable\": null,\n                    \"website\": null,\n                    \"sohd_niosh_specifications\": null,\n                    \"yboe_masterpack_weight\": \"300 lbs\",\n                    \"yboe_status\": \"Active\",\n                    \"yboe_grade\": \"D\",\n                    \"list_price\": \"$350\",\n                    \"sohd_application\": null,\n                    \"yrfa_uom\": null,\n                    \"sohd_nsf_certified\": null,\n                    \"yboe_master_code\": null,\n                    \"sohd_right_view_image_file_name\": null,\n                    \"yboe_btu\": null,\n                    \"yboe_impact_rating\": null,\n                    \"yboe_parent_sku\": \"RFOF-8052\",\n                    \"sohd_wire_gauge\": null,\n                    \"yboe_weldon_flat\": null,\n                    \"sohd_product_type\": \"Waste Basket\",\n                    \"sohd_amp\": null,\n                    \"tank_size\": \"30 Gal\",\n                    \"yboe_country_of_origin_old\": null,\n                    \"yboe_appliance_input\": null,\n                    \"sohd_installation_type\": null,\n                    \"sohd_fm_approved\": null,\n                    \"ship_pack_height\": null,\n                    \"yboe_master_pack_desc\": \"Pack of 4\",\n                    \"sohd_collection\": null,\n                    \"computed_price\": null,\n                    \"twql_inner_pack_weight\": \"60 lbs\",\n                    \"twql_master_pack_desc\": \"Pack of 4\",\n                    \"yboe_assembly_instructions\": null,\n                    \"sohd_glove_type\": null,\n                    \"yboe_iic_approvals\": null,\n                    \"twql_ship_pack_height\": null,\n                    \"yboe_sell_pack_qty\": \"1\",\n                    \"yboe_dmpicklista\": null,\n                    \"ship_pack_length\": null,\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"sohd_mss_specifications\": null,\n                    \"yboe_product_color\": null,\n                    \"sohd_weight\": null,\n                    \"yboe_poisonous\": null,\n                    \"yboe_dc_cutting_diameter_mm\": null,\n                    \"sohd_watts\": null,\n                    \"yboe_pilot_diameter_mm\": null,\n                    \"yboe_vendor\": null,\n                    \"yboe_base_material_details\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"yboe_google_keywords\": null,\n                    \"yboe_shcs_size\": null,\n                    \"yboe_masterpack_width\": \"36\\\"\",\n                    \"yboe_supplier_intended_and_approved_use\": null,\n                    \"twql_inner_pack_length\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"yboe_certification_date\": null,\n                    \"yboe_selling_weight\": \"50 lbs\",\n                    \"main_image\": \"4070863028\",\n                    \"action_photo\": null,\n                    \"yboe_pilot_type\": null,\n                    \"lifestyle_image\": null,\n                    \"yboe_number_of_inserts\": null,\n                    \"yboe_gender\": null,\n                    \"material_type\": \"Steel\",\n                    \"muko_length\": null,\n                    \"sohd_light_bulb_shape_code\": null,\n                    \"sohd_alt_product_number\": null,\n                    \"purchasing_completeness\": \"50\",\n                    \"yboe_field_of_view\": null,\n                    \"sohd_x\": null,\n                    \"yboe_publish_to_b2b_website\": \"Yes\",\n                    \"twql_sell_pack_qty\": \"1\",\n                    \"yboe_pump_location\": null,\n                    \"sohd_ce_approved\": null,\n                    \"accessory_product\": null,\n                    \"sohd_video_asset_reference_id\": null,\n                    \"case_pack_quantity\": null,\n                    \"yboe_toolholder_style\": null,\n                    \"yboe_category\": \"Tools > Power Tools > Compressors\",\n                    \"inner_pack_width\": null,\n                    \"sohd_x_3\": null,\n                    \"sohd_x_2\": null,\n                    \"sohd_x_5\": null,\n                    \"ship_pack_desc\": null,\n                    \"yboe_dfdfdfd\": null,\n                    \"sohd_x_4\": null,\n                    \"yboe_top_manufactured_wood_type\": null,\n                    \"yboe_horse_power\": null,\n                    \"yboe_secondary_category\": null,\n                    \"selling_length\": \"18\\\"\",\n                    \"yboe_lens_type\": null,\n                    \"yboe_attribute_1\": null,\n                    \"yboe_attribute_2\": null,\n                    \"twql_master_pack_qty\": \"4\",\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"yboe_companywebsite\": null,\n                    \"asin\": \"32BH232H1\",\n                    \"sohd_number_of_pieces\": null,\n                    \"generated_description\": null,\n                    \"yboe_components\": null,\n                    \"action_shot\": null,\n                    \"yboe_lifestyle_image\": null,\n                    \"yboe_hazardous\": \"Yes\",\n                    \"yboe_action_photo\": null,\n                    \"sohd_ul_listed\": null,\n                    \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><strong>Product Dimensional Chart</strong></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr><tr><td>Weight</td><td>30 Lbs</td></tr></tbody></table></figure><ul><li><strong>Made in Canada</strong></li><li><strong>Tough Steel</strong></li><li><strong>Ergonomic Design</strong></li></ul>\",\n                    \"number\": \"RFOF-8052\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"yboe_iic\": null,\n                    \"sohd_nsf_specifications\": null,\n                    \"warranty\": \"1 Year\",\n                    \"yboe_repair_policy\": null,\n                    \"sohd_brand_type\": null,\n                    \"additional_images\": null,\n                    \"sohd_epa_compliant\": null,\n                    \"yboe_grainger_part_number\": \"1AD3433\",\n                    \"yboe_feature_benefit_6\": null,\n                    \"yboe_explosive\": \"Yes\",\n                    \"master_pack_qty\": \"4\",\n                    \"yboe_material_type\": \"Steel\",\n                    \"upc\": null,\n                    \"yboe_packaged_asset\": null,\n                    \"yboe_map_price\": null,\n                    \"twql_inner_pack_height\": null,\n                    \"zhz_material\": null,\n                    \"yboe_minimum_illumination\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"twql_sku\": \"RFOF-8052\",\n                    \"yboe_masterpack_length\": \"48\\\"\",\n                    \"status\": \"Active\",\n                    \"sohd_brand_names\": null,\n                    \"yboe_storage\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_seat_dimensions\": null,\n                    \"yboe_maximum_operating_temperature\": null,\n                    \"yboe_base_material\": null,\n                    \"yboe_drawers_included\": null,\n                    \"yboe_burner\": null,\n                    \"yboe_life_stage_2\": null,\n                    \"yboe_mkt_comp\": \"0\",\n                    \"yboe_dcon_connection_diameter_decimal_inch\": null,\n                    \"yboe_shelves_included\": null,\n                    \"yboe_sellpack_height\": \"9\\\"\",\n                    \"sohd_maximum_pressure\": null,\n                    \"muko_weight\": null,\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"sohd_ansi_specifications\": null,\n                    \"yboe_pilot_diameter_decimal_inch\": null,\n                    \"sohd_item_class\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_asse_standards\": null,\n                    \"muko_height\": null,\n                    \"coverage_level\": null,\n                    \"yboe_complementary_products\": null,\n                    \"mkt_comp\": \"0\",\n                    \"yboe_extra_long_name_for_website\": null,\n                    \"yboe_fuel\": null,\n                    \"sohd_size\": null,\n                    \"yboe_seat_height_from_floor\": null,\n                    \"sohd_colorfinish\": null,\n                    \"sohd_length\": null,\n                    \"twql_ship_pack_desc\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"sohd_submittals_asset_file_name\": null,\n                    \"sohd_scaqmd_compliant\": null,\n                    \"yboe_rated_voltage_v\": null,\n                    \"sohd_mfgsupplier_name_id\": null,\n                    \"keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"benefit_6\": null,\n                    \"benefit_4\": \"Easily stackable with removable handle\",\n                    \"benefit_5\": \"Made in USA\",\n                    \"benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"benefit_3\": \"Light and portable\",\n                    \"sohd_bulb_type\": null,\n                    \"sohd_lifestyle_image_file_name\": null,\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"yboe_rated_current_a\": null,\n                    \"sohd_energy_guide_file_name\": null,\n                    \"yboe_efficiency\": null,\n                    \"twql_ship_pack_length\": null,\n                    \"yboe_sell_pack_desc\": \"Each\",\n                    \"customer_part_number\": null,\n                    \"yboe_insert_holding_method\": null,\n                    \"yboe_spec_sheet\": null,\n                    \"yboe_environmental_rating\": null,\n                    \"yboe_used_with\": [\n                        \"20023094\"\n                    ],\n                    \"extra_long_name_for_website\": null,\n                    \"sohd_awwa_specifications\": null,\n                    \"yboe_supplier_stock_no\": \"8221291\",\n                    \"yboe_long_name_for_ebay\": null,\n                    \"sohd_fitting_size_1\": null,\n                    \"sohd_gender\": null,\n                    \"yboe_image_url\": null,\n                    \"sohd_carbotcleed_compliant\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8052\",\n                    \"sohd_optional_accessory\": null,\n                    \"sohd_baa_compliant\": null,\n                    \"sohd_top_view_image_file_name\": null,\n                    \"yboe_pan_speed\": null,\n                    \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_customer_part_number\": null,\n                    \"color_option\": \"Garden Green\",\n                    \"twql_sell_pack_weight\": \"50 lbs\",\n                    \"twql_sell_pack_width\": \"18\\\"\",\n                    \"sohd_required_accessory\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"sohd_reusable\": null,\n                    \"yboe_country_of_origin\": \"China\",\n                    \"yboe_max_resolution\": null,\n                    \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n                    \"yboe_color_multi\": null,\n                    \"sohd_upc\": null,\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"sohd_asme_specifications\": null,\n                    \"sohd_csa_certified\": null,\n                    \"sohd_sku_image_notes\": null,\n                    \"sohd_coating\": null,\n                    \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n                    \"yboe_arm_height_from_floor\": null,\n                    \"yboe_safety_data_sheet\": null,\n                    \"application\": null,\n                    \"sohd_brand_model_compatibility\": null,\n                    \"coverage_description_pt\": null,\n                    \"yboe_product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"3 Stage\",\n                    \"warranty_language\": \"Manufacturer Defects Only\",\n                    \"yboe_product_dimensions_w_x_d_x_h\": null,\n                    \"sell_pack_desc\": \"Each\",\n                    \"sohd_mfg_product_number\": \"RFOF-8052\",\n                    \"yboe_additional_images\": null,\n                    \"sohd_etl_listed\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"yboe_name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"map_price\": null,\n                    \"yboe_seat_number\": null,\n                    \"yboe_top_metal_finish_application\": null,\n                    \"yboe_color_option\": \"Garden Green\",\n                    \"sale_active\": \"Yes\",\n                    \"yboe_toy_color\": null,\n                    \"yboe_contact_configuration\": null,\n                    \"brand\": \"RedDot\",\n                    \"yboe_lu_maximum_counterbore_depth_mm\": null,\n                    \"height\": null,\n                    \"sohd_installation_instructions_file\": null,\n                    \"yboe_msrp\": \"$349\",\n                    \"sohd_indoor_outdoor\": null,\n                    \"yboe_back_dimensions\": null,\n                    \"sohd_maximum_temperature\": null,\n                    \"coverage_description_it\": null,\n                    \"sohd_back_view_image_file_name\": null,\n                    \"safety_data_sheet\": null,\n                    \"yboe_cost_string\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"yboe_dcon_connection_diameter_mm\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"yboe_side_image\": null,\n                    \"yboe_case_pack_packaging_description\": null,\n                    \"yboe_te\": null,\n                    \"assembly_instructions\": null,\n                    \"yboe_accessory_product\": null,\n                    \"twql_name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"case_pack_weight\": null,\n                    \"twql_master_pack_width\": \"36\\\"\",\n                    \"yboe_product_type_1\": \"Waste Basket\",\n                    \"sell_pack_qty\": \"1\",\n                    \"yboe_number_of_shelves\": null,\n                    \"twql_ship_pack_width\": null,\n                    \"yboe_case_pack_weight\": null,\n                    \"sohd_bottom_view_image_file_name\": null,\n                    \"sohd_warranty_file_name\": null,\n                    \"yboe_gtin\": \"013212121113\",\n                    \"vendor\": null,\n                    \"msrp\": \"$349\",\n                    \"yboe_ebc_amazon\": null,\n                    \"sohd_parts_breakdown_file\": null,\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"sohd_gauge\": null,\n                    \"yboe_weight_capacity\": null,\n                    \"sohd_phase\": null,\n                    \"sohd_features_benefits_10\": null,\n                    \"case_pack_width\": null,\n                    \"sohd_spare_part_product_reference\": null,\n                    \"yboe_sellpack_width\": \"18\\\"\",\n                    \"sohd_thickness\": null,\n                    \"yboe_aperture\": null,\n                    \"sale_price\": null,\n                    \"sohd_linebuy_id\": null,\n                    \"yboe_benefit_5\": \"Made in USA\",\n                    \"yboe_benefit_4\": \"Easily stackable with removable handle\",\n                    \"twql_material\": null,\n                    \"yboe_benefit_6\": null,\n                    \"yboe_benefit_1\": \"Made with high quality steel\",\n                    \"yboe_benefit_3\": \"Light and portable\",\n                    \"yboe_salesforce_id\": null,\n                    \"yboe_benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"yboe_head_length\": null,\n                    \"yboe_dc_cutting_diameter_decimal_inch\": null,\n                    \"sohd_clothing_size\": null,\n                    \"yrfa_price\": \"999\",\n                    \"yboe_lighted\": null,\n                    \"yboe_tarriff\": null,\n                    \"yboe_insert_style\": null,\n                    \"twql_sell_pack_desc\": \"Each\",\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"yboe_max_screw_diameter_compatibility_mm\": null,\n                    \"sohd_material\": null,\n                    \"yboe_number_of_flutes\": null,\n                    \"yboe_protein\": null,\n                    \"supplier_stock_no\": \"8221291\",\n                    \"sohd_battery_type\": null,\n                    \"twql_master_pack_length\": \"48\\\"\",\n                    \"coverage_description_es\": null,\n                    \"yboe_autoiris\": null,\n                    \"repair_policy\": null,\n                    \"yboe_ship_pack_qty\": null,\n                    \"coverage_description_en\": null,\n                    \"twql_sell_pack_height\": \"9\\\"\",\n                    \"product_type_1\": \"Waste Basket\",\n                    \"sohd_vendor_logo\": null,\n                    \"flammable\": \"No\",\n                    \"name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"grip_length\": null,\n                    \"sohd_step_id\": null,\n                    \"yboe_battery_capacity\": null,\n                    \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"psi\": \"120 PSI\",\n                    \"yboe_installation_partners\": \"Greenlee Conduit\",\n                    \"video\": null,\n                    \"poisonous\": null,\n                    \"sohd_smart_home_enabled\": null,\n                    \"sohd_osha_specifications\": null,\n                    \"yboe_accessory_size\": null,\n                    \"sohd_automatic_shutoff\": null,\n                    \"yboe_compatible_insert_hand\": null,\n                    \"gtin\": \"013212121113\",\n                    \"sohd_nema_specifications\": null,\n                    \"yboe_marking_code\": null,\n                    \"yboe_top_materials_details\": null,\n                    \"yboe_customer\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"yboe_keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"prop_65_compliant\": \"Yes\",\n                    \"yboe_sell_sheet\": null,\n                    \"yboe_ratings_information\": null,\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"yboe_warp_resistent\": null,\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"twql_ship_pack_qty\": null,\n                    \"amps\": null,\n                    \"yboe_main_image\": \"4070863028\",\n                    \"avg_hours\": null,\n                    \"yboe_prop_65_compliant\": \"Yes\",\n                    \"yboe_purchasing_completeness\": \"50\",\n                    \"yboe_regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 18\n                    },\n                    \"sohd_volts\": null,\n                    \"yboe_case_pack_quantity\": null,\n                    \"yboe_cutting_edge_length\": null,\n                    \"yboe_warranty_language\": \"Manufacturer Defects Only\",\n                    \"sohd_energy_star_compliant\": null,\n                    \"input_voltage\": \"110 V\",\n                    \"prop_65_warning\": \"No cancer causing chemicals\",\n                    \"sohd_use_and_care_file\": null,\n                    \"inner_pack_height\": null,\n                    \"ship_pack_qty\": null,\n                    \"yboe_min_screw_diameter_compatibility_mm\": null,\n                    \"sohd_end_connection_2\": null,\n                    \"sohd_end_connection_1\": null,\n                    \"yboe_master_pack_qty\": \"4\",\n                    \"multi_category\": null,\n                    \"sohd_iapmo_listed\": null,\n                    \"sohd_tool_type\": null,\n                    \"yboe_ship_pack_width\": null,\n                    \"yboe_model\": null,\n                    \"yboe_life_stage\": null,\n                    \"ship_pack_width\": null,\n                    \"yboe_upc\": null,\n                    \"yboe_supplier\": null,\n                    \"yboe_tilt_range\": null,\n                    \"sohd_glove_size\": null,\n                    \"sohd_origin\": null,\n                    \"yboe_wiring_capacity_phase_contacts\": null,\n                    \"muko_title\": null,\n                    \"twql_master_pack_height\": \"30\\\"\",\n                    \"yboe_image_2\": \"4070863023\",\n                    \"yboe_image_3\": null,\n                    \"sohd_gsa_approved\": null,\n                    \"sohd_ada_compliant\": null,\n                    \"sohd_material_type\": null,\n                    \"yboe_prop_65_warning\": \"No cancer causing chemicals\",\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"yboe_ship_pack_length\": null,\n                    \"yboe_inner_pack_length\": null,\n                    \"selling_weight\": \"50 lbs\",\n                    \"yboe_iic_multiple_approvals\": null,\n                    \"yboe_minimum_operating_temperature\": null,\n                    \"yboe_recommended_products\": null,\n                    \"sohd_diameter\": null,\n                    \"yboe_back_image\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"yboe_rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><strong>Product Dimensional Chart</strong></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr><tr><td>Weight</td><td>30 Lbs</td></tr></tbody></table></figure><ul><li><strong>Made in Canada</strong></li><li><strong>Tough Steel</strong></li><li><strong>Ergonomic Design</strong></li></ul>\",\n                    \"yboe_base_drawing_number\": null,\n                    \"yboe_shank_type\": null,\n                    \"twql_sell_pack_length\": \"18\\\"\",\n                    \"sohd_ma_approved\": null,\n                    \"yboe_focal_length\": null,\n                    \"sohd_features_benefits_06\": null,\n                    \"sohd_features_benefits_07\": null,\n                    \"sohd_features_benefits_04\": null,\n                    \"sohd_features_benefits_05\": null,\n                    \"sohd_features_benefits_02\": null,\n                    \"sohd_features_benefits_03\": null,\n                    \"sohd_features_benefits_01\": null,\n                    \"tank_capacity\": null,\n                    \"twql_master_pack_weight\": \"300 lbs\",\n                    \"sohd_product_short_description\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"video_2\": null,\n                    \"yboe_ship_pack_height\": null,\n                    \"sohd_includes\": null,\n                    \"case_pack_height\": null,\n                    \"sohd_features_benefits_08\": null,\n                    \"sohd_features_benefits_09\": null,\n                    \"yboe_lf_functional_length_mm\": null,\n                    \"inside_diameter\": \"45\",\n                    \"marketplace_category\": null,\n                    \"yboe_care_wash_and_usage_instructions\": null,\n                    \"yboe_case_pack_length\": null,\n                    \"sohd_cable_or_wire_type\": null,\n                    \"yboe_brand_name\": null,\n                    \"muko_item_id\": \"RFOF-8052\",\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"yboe_manufacturer_list\": null,\n                    \"sohd_astm_specifications\": null,\n                    \"long_name_for_ebay\": null,\n                    \"spec_sheet\": null,\n                    \"yboe_compatible_inserts_full\": null,\n                    \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"yboe_case_pack_height\": null,\n                    \"yboe_sale_active\": \"Yes\",\n                    \"yboe_warranty\": \"1 Year\",\n                    \"sohd_specification_file\": null,\n                    \"yboe_generated_description\": null,\n                    \"regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 15\n                    },\n                    \"yboe_inner_pack_height\": null,\n                    \"yboe_remote_control\": null,\n                    \"sohd_vendor_brand_logo\": null,\n                    \"priority_accessories\": null,\n                    \"sohd_package_quantity\": null,\n                    \"yboe_action_shot\": null,\n                    \"yboe_exchange_policy\": null,\n                    \"orientation\": null,\n                    \"cost\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 90\n                    },\n                    \"yboe_coolant_through_yesno\": null,\n                    \"yboe_case_pack_width\": null,\n                    \"twql_hero_image\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"yboe_application\": null,\n                    \"sohd_product_number_sku\": \"RFOF-8052\",\n                    \"yboe_brand\": \"RedDot\",\n                    \"twql_ship_pack_weight\": null,\n                    \"sohd_width\": null,\n                    \"sohd_temperature_range\": null,\n                    \"marking_code\": null,\n                    \"sohd_oracle_item_class_ref_classification_reference\": null,\n                    \"yboe_image_sensor\": null,\n                    \"yboe_shutter_time\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"sohd_depth\": null,\n                    \"sohd_lighting_facts_asset_file_name\": null\n                },\n                {\n                    \"id\": 17412007,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1743511313208,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676855,\n                        4004677654,\n                        4004680228\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"tools\": 100,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"yboe_ship_pack_desc\": null,\n                    \"yboe_peak_decibels\": null,\n                    \"explosive\": \"Yes\",\n                    \"warranty_language\": \"Defects Only\",\n                    \"yboe_product_dimensions_w_x_d_x_h\": null,\n                    \"sell_pack_desc\": \"Each\",\n                    \"yboe_compatible_inserts_partial\": null,\n                    \"yboe_selling_length\": \"18\\\"\",\n                    \"yboe_additional_images\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"yboe_name\": \"RedDot Oil-Free Air Compressor\",\n                    \"map_price\": null,\n                    \"yboe_seat_number\": null,\n                    \"yboe_max_pressure\": null,\n                    \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n                    \"yboe_masterpack_height\": \"30\\\"\",\n                    \"coverage_length\": null,\n                    \"yboe_top_material\": null,\n                    \"yboe_top_metal_finish_application\": null,\n                    \"grainger_part_number\": \"1AD3433\",\n                    \"yboe_color_option\": \"Green\",\n                    \"sale_active\": \"Yes\",\n                    \"yboe_test\": null,\n                    \"yboe_toy_color\": null,\n                    \"yboe_contact_configuration\": null,\n                    \"brand\": \"RedDot\",\n                    \"yboe_lu_maximum_counterbore_depth_mm\": null,\n                    \"yboe_pantiltzoom_functionalities\": null,\n                    \"height\": null,\n                    \"yboe_website\": null,\n                    \"yboe_screw_type_compatibility\": null,\n                    \"yboe_msrp\": \"3000\",\n                    \"yboe_unit_inchmm\": null,\n                    \"yboe_back_dimensions\": null,\n                    \"country_of_origin\": \"China\",\n                    \"hazardous\": \"Yes\",\n                    \"yboe_ship_pack_weight\": null,\n                    \"yboe_hand\": null,\n                    \"coverage_description_it\": null,\n                    \"safety_data_sheet\": null,\n                    \"yboe_cost_string\": null,\n                    \"case_pack_upcean\": null,\n                    \"yboe_delta\": null,\n                    \"yboe_stc\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"yboe_heat_capacity\": null,\n                    \"yboe_inner_pack_weight\": \"60 lbs\",\n                    \"yboe_dcon_connection_diameter_mm\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"main_material\": null,\n                    \"yboe_side_image\": null,\n                    \"ship_pack_weight\": null,\n                    \"yboe_case_pack_packaging_description\": null,\n                    \"yboe_pan_range\": null,\n                    \"auto_linked_image\": null,\n                    \"yboe_te\": null,\n                    \"assembly_instructions\": null,\n                    \"yboe_accessory_product\": null,\n                    \"yboe_case_pack_upcean\": null,\n                    \"case_pack_weight\": null,\n                    \"yboe_inner_pack_width\": null,\n                    \"sell_pack_qty\": \"1\",\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"yboe_product_type_1\": null,\n                    \"yboe_number_of_shelves\": null,\n                    \"yboe_case_pack_weight\": null,\n                    \"generate_technical_attributes\": null,\n                    \"yboe_tilt_speed\": null,\n                    \"yboe_asin\": \"32BH232H1\",\n                    \"vendor\": null,\n                    \"yboe_gtin\": null,\n                    \"msrp\": \"3000\",\n                    \"yboe_ebc_amazon\": null,\n                    \"yboe_flammable\": \"Yes\",\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_weight_capacity\": null,\n                    \"website\": null,\n                    \"case_pack_width\": null,\n                    \"yboe_masterpack_weight\": \"300 lbs\",\n                    \"yboe_status\": \"Active\",\n                    \"yboe_sellpack_width\": \"18\\\"\",\n                    \"yboe_grade\": \"D\",\n                    \"yboe_aperture\": null,\n                    \"list_price\": null,\n                    \"sale_price\": null,\n                    \"yrfa_uom\": null,\n                    \"yboe_benefit_5\": \"Made in USA\",\n                    \"yboe_master_code\": null,\n                    \"yboe_benefit_4\": \"Easily stackable with removable handle\",\n                    \"yboe_benefit_6\": null,\n                    \"yboe_benefit_1\": \"Made with high quality steel\",\n                    \"yboe_btu\": null,\n                    \"yboe_benefit_3\": \"Light and portable\",\n                    \"yboe_impact_rating\": null,\n                    \"yboe_salesforce_id\": null,\n                    \"yboe_benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"yboe_parent_sku\": \"RFOF-8052\",\n                    \"yboe_head_length\": null,\n                    \"yboe_weldon_flat\": null,\n                    \"yboe_dc_cutting_diameter_decimal_inch\": null,\n                    \"tank_size\": \"50 Gal\",\n                    \"yrfa_price\": \"999\",\n                    \"yboe_country_of_origin_old\": null,\n                    \"yboe_lighted\": null,\n                    \"yboe_appliance_input\": null,\n                    \"yboe_tarriff\": null,\n                    \"yboe_insert_style\": null,\n                    \"ship_pack_height\": null,\n                    \"yboe_master_pack_desc\": \"Pack of 4\",\n                    \"computed_price\": null,\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"yboe_max_screw_diameter_compatibility_mm\": null,\n                    \"yboe_assembly_instructions\": null,\n                    \"yboe_iic_approvals\": null,\n                    \"yboe_sell_pack_qty\": \"1\",\n                    \"yboe_dmpicklista\": null,\n                    \"yboe_number_of_flutes\": null,\n                    \"ship_pack_length\": null,\n                    \"yboe_protein\": null,\n                    \"supplier_stock_no\": \"8221295\",\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"coverage_description_es\": null,\n                    \"yboe_autoiris\": null,\n                    \"yboe_product_color\": null,\n                    \"repair_policy\": null,\n                    \"yboe_ship_pack_qty\": null,\n                    \"yboe_poisonous\": null,\n                    \"yboe_dc_cutting_diameter_mm\": null,\n                    \"coverage_description_en\": null,\n                    \"yboe_pilot_diameter_mm\": null,\n                    \"yboe_vendor\": null,\n                    \"product_type_1\": null,\n                    \"yboe_base_material_details\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"yboe_google_keywords\": null,\n                    \"yboe_shcs_size\": null,\n                    \"flammable\": \"Yes\",\n                    \"grip_length\": \"12\",\n                    \"name\": \"RedDot Oil-Free Air Compressor\",\n                    \"yboe_masterpack_width\": \"36\\\"\",\n                    \"yboe_supplier_intended_and_approved_use\": null,\n                    \"yboe_battery_capacity\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"yboe_certification_date\": null,\n                    \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_selling_weight\": \"50 lbs\",\n                    \"main_image\": \"4070863028\",\n                    \"psi\": \"120 PSI\",\n                    \"yboe_installation_partners\": \"Greenlee Conduit\",\n                    \"action_photo\": null,\n                    \"yboe_pilot_type\": null,\n                    \"lifestyle_image\": null,\n                    \"video\": null,\n                    \"poisonous\": null,\n                    \"yboe_number_of_inserts\": null,\n                    \"yboe_gender\": null,\n                    \"material_type\": \"Steel\",\n                    \"muko_length\": null,\n                    \"purchasing_completeness\": \"50\",\n                    \"yboe_field_of_view\": null,\n                    \"yboe_accessory_size\": null,\n                    \"yboe_publish_to_b2b_website\": \"Yes\",\n                    \"yboe_pump_location\": null,\n                    \"accessory_product\": null,\n                    \"yboe_compatible_insert_hand\": null,\n                    \"case_pack_quantity\": null,\n                    \"gtin\": null,\n                    \"yboe_toolholder_style\": null,\n                    \"yboe_category\": \"Tools > Power Tools > Compressors\",\n                    \"inner_pack_width\": null,\n                    \"yboe_marking_code\": null,\n                    \"ship_pack_desc\": null,\n                    \"yboe_top_materials_details\": null,\n                    \"yboe_customer\": null,\n                    \"yboe_dfdfdfd\": null,\n                    \"yboe_top_manufactured_wood_type\": null,\n                    \"yboe_horse_power\": null,\n                    \"yboe_secondary_category\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"selling_length\": \"18\\\"\",\n                    \"yboe_lens_type\": null,\n                    \"yboe_keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"yboe_attribute_1\": null,\n                    \"yboe_attribute_2\": null,\n                    \"prop_65_compliant\": \"Yes\",\n                    \"yboe_sell_sheet\": null,\n                    \"yboe_ratings_information\": null,\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"yboe_warp_resistent\": null,\n                    \"yboe_companywebsite\": null,\n                    \"asin\": \"32BH232H1\",\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"amps\": null,\n                    \"generated_description\": null,\n                    \"yboe_components\": null,\n                    \"avg_hours\": \"12\",\n                    \"yboe_main_image\": \"4070863028\",\n                    \"action_shot\": null,\n                    \"yboe_prop_65_compliant\": \"Yes\",\n                    \"yboe_purchasing_completeness\": \"50\",\n                    \"yboe_lifestyle_image\": null,\n                    \"yboe_hazardous\": \"Yes\",\n                    \"yboe_regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 18\n                    },\n                    \"yboe_case_pack_quantity\": null,\n                    \"yboe_action_photo\": null,\n                    \"yboe_cutting_edge_length\": null,\n                    \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><i><strong>This is html and being used to present rich information.</strong></i></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr></tbody></table></figure>\",\n                    \"number\": \"RFOF-8058\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"yboe_warranty_language\": \"Defects Only\",\n                    \"yboe_iic\": null,\n                    \"warranty\": \"5 Year\",\n                    \"yboe_repair_policy\": null,\n                    \"input_voltage\": \"110 V\",\n                    \"prop_65_warning\": null,\n                    \"additional_images\": null,\n                    \"inner_pack_height\": null,\n                    \"yboe_grainger_part_number\": \"1AD3433\",\n                    \"yboe_feature_benefit_6\": null,\n                    \"yboe_explosive\": \"Yes\",\n                    \"master_pack_qty\": \"4\",\n                    \"yboe_material_type\": \"Steel\",\n                    \"ship_pack_qty\": null,\n                    \"upc\": null,\n                    \"yboe_min_screw_diameter_compatibility_mm\": null,\n                    \"yboe_packaged_asset\": null,\n                    \"yboe_map_price\": null,\n                    \"yboe_master_pack_qty\": \"4\",\n                    \"multi_category\": null,\n                    \"zhz_material\": null,\n                    \"yboe_ship_pack_width\": null,\n                    \"yboe_minimum_illumination\": null,\n                    \"yboe_model\": null,\n                    \"yboe_life_stage\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"ship_pack_width\": null,\n                    \"yboe_masterpack_length\": \"48\\\"\",\n                    \"status\": \"Active\",\n                    \"yboe_upc\": null,\n                    \"yboe_supplier\": null,\n                    \"yboe_storage\": null,\n                    \"yboe_tilt_range\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_seat_dimensions\": null,\n                    \"yboe_maximum_operating_temperature\": null,\n                    \"yboe_wiring_capacity_phase_contacts\": null,\n                    \"muko_title\": null,\n                    \"yboe_base_material\": null,\n                    \"yboe_image_2\": \"4070863023\",\n                    \"yboe_image_3\": null,\n                    \"yboe_drawers_included\": null,\n                    \"yboe_burner\": null,\n                    \"yboe_life_stage_2\": null,\n                    \"yboe_mkt_comp\": \"0\",\n                    \"yboe_dcon_connection_diameter_decimal_inch\": null,\n                    \"yboe_shelves_included\": null,\n                    \"yboe_sellpack_height\": \"9\\\"\",\n                    \"yboe_prop_65_warning\": null,\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"yboe_ship_pack_length\": null,\n                    \"yboe_inner_pack_length\": null,\n                    \"muko_weight\": null,\n                    \"selling_weight\": \"50 lbs\",\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"yboe_pilot_diameter_decimal_inch\": null,\n                    \"yboe_iic_multiple_approvals\": null,\n                    \"yboe_minimum_operating_temperature\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"muko_height\": null,\n                    \"coverage_level\": null,\n                    \"yboe_complementary_products\": null,\n                    \"yboe_recommended_products\": null,\n                    \"mkt_comp\": \"0\",\n                    \"yboe_back_image\": null,\n                    \"yboe_extra_long_name_for_website\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"yboe_rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><i><strong>This is html and being used to present rich information.</strong></i></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr></tbody></table></figure>\",\n                    \"yboe_fuel\": null,\n                    \"yboe_seat_height_from_floor\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"yboe_base_drawing_number\": null,\n                    \"yboe_shank_type\": null,\n                    \"yboe_focal_length\": null,\n                    \"yboe_rated_voltage_v\": null,\n                    \"keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"benefit_6\": null,\n                    \"tank_capacity\": null,\n                    \"benefit_4\": \"Easily stackable with removable handle\",\n                    \"video_2\": null,\n                    \"yboe_ship_pack_height\": null,\n                    \"benefit_5\": \"Made in USA\",\n                    \"benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"case_pack_height\": null,\n                    \"benefit_3\": \"Light and portable\",\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"yboe_lf_functional_length_mm\": null,\n                    \"yboe_rated_current_a\": null,\n                    \"inside_diameter\": \"45\",\n                    \"yboe_efficiency\": null,\n                    \"yboe_sell_pack_desc\": \"Each\",\n                    \"marketplace_category\": null,\n                    \"yboe_care_wash_and_usage_instructions\": null,\n                    \"yboe_case_pack_length\": null,\n                    \"customer_part_number\": null,\n                    \"yboe_insert_holding_method\": null,\n                    \"yboe_brand_name\": null,\n                    \"yboe_spec_sheet\": null,\n                    \"muko_item_id\": \"RFOF-8058\",\n                    \"yboe_environmental_rating\": null,\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"yboe_manufacturer_list\": null,\n                    \"yboe_used_with\": [\n                        \"20023094\"\n                    ],\n                    \"long_name_for_ebay\": null,\n                    \"extra_long_name_for_website\": null,\n                    \"spec_sheet\": null,\n                    \"yboe_supplier_stock_no\": \"8221295\",\n                    \"yboe_compatible_inserts_full\": null,\n                    \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"yboe_case_pack_height\": null,\n                    \"yboe_sale_active\": \"Yes\",\n                    \"yboe_warranty\": \"5 Year\",\n                    \"yboe_long_name_for_ebay\": null,\n                    \"yboe_image_url\": null,\n                    \"yboe_generated_description\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8058\",\n                    \"regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 15\n                    },\n                    \"yboe_pan_speed\": null,\n                    \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_customer_part_number\": null,\n                    \"yboe_inner_pack_height\": null,\n                    \"color_option\": \"Green\",\n                    \"yboe_remote_control\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"priority_accessories\": null,\n                    \"yboe_country_of_origin\": \"China\",\n                    \"yboe_action_shot\": null,\n                    \"yboe_max_resolution\": null,\n                    \"yboe_exchange_policy\": null,\n                    \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n                    \"yboe_color_multi\": null,\n                    \"orientation\": null,\n                    \"cost\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 50\n                    },\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"yboe_coolant_through_yesno\": null,\n                    \"yboe_case_pack_width\": null,\n                    \"yboe_application\": null,\n                    \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n                    \"yboe_brand\": \"RedDot\",\n                    \"yboe_arm_height_from_floor\": null,\n                    \"yboe_safety_data_sheet\": null,\n                    \"application\": null,\n                    \"coverage_description_pt\": null,\n                    \"yboe_product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"marking_code\": null,\n                    \"yboe_image_sensor\": null,\n                    \"yboe_shutter_time\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"4 Stage\"\n                },\n                {\n                    \"id\": 17412004,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676855,\n                        4004677654,\n                        4004680318\n                    ],\n                    \"completeness_score\": 91,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"yboe_ad_export_annual\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"yboe_ship_pack_desc\": null,\n                    \"yboe_peak_decibels\": null,\n                    \"explosive\": null,\n                    \"yboe_compatible_inserts_partial\": null,\n                    \"yboe_selling_length\": \"18\\\"\",\n                    \"yboe_max_pressure\": null,\n                    \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n                    \"sohd_height\": null,\n                    \"yboe_masterpack_height\": \"30\\\"\",\n                    \"coverage_length\": null,\n                    \"sohd_iso_specifications\": null,\n                    \"yboe_top_material\": null,\n                    \"grainger_part_number\": \"32FSFD11\",\n                    \"yboe_test\": null,\n                    \"yboe_pantiltzoom_functionalities\": null,\n                    \"yboe_website\": null,\n                    \"yboe_screw_type_compatibility\": null,\n                    \"sohd_power_source\": null,\n                    \"yboe_unit_inchmm\": null,\n                    \"country_of_origin\": \"China\",\n                    \"hazardous\": \"No\",\n                    \"sohd_cad_drawings_file_name\": null,\n                    \"yboe_ship_pack_weight\": null,\n                    \"yboe_hand\": null,\n                    \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"sohd_scheduleclass\": null,\n                    \"case_pack_upcean\": null,\n                    \"yboe_delta\": null,\n                    \"yboe_stc\": null,\n                    \"yboe_heat_capacity\": null,\n                    \"yboe_inner_pack_weight\": \"60 lbs\",\n                    \"sohd_left_view_image_file_name\": null,\n                    \"main_material\": null,\n                    \"ship_pack_weight\": null,\n                    \"yboe_pan_range\": null,\n                    \"auto_linked_image\": null,\n                    \"yboe_case_pack_upcean\": null,\n                    \"yboe_inner_pack_width\": null,\n                    \"sohd_temperature_rating\": null,\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"sohd_cord_length\": null,\n                    \"generate_technical_attributes\": null,\n                    \"yboe_tilt_speed\": null,\n                    \"yboe_asin\": \"ABFDSDSD2\",\n                    \"yboe_flammable\": null,\n                    \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_disposable\": null,\n                    \"website\": null,\n                    \"sohd_niosh_specifications\": null,\n                    \"yboe_masterpack_weight\": \"300 lbs\",\n                    \"yboe_status\": \"Active\",\n                    \"yboe_grade\": \"D\",\n                    \"list_price\": \"$3150\",\n                    \"sohd_application\": null,\n                    \"yrfa_uom\": null,\n                    \"sohd_nsf_certified\": null,\n                    \"yboe_master_code\": null,\n                    \"sohd_right_view_image_file_name\": null,\n                    \"yboe_btu\": null,\n                    \"yboe_impact_rating\": null,\n                    \"yboe_parent_sku\": \"RFOF-8052\",\n                    \"sohd_wire_gauge\": null,\n                    \"yboe_weldon_flat\": null,\n                    \"sohd_amp\": null,\n                    \"sohd_product_type\": null,\n                    \"tank_size\": \"40 gal\",\n                    \"yboe_country_of_origin_old\": null,\n                    \"yboe_appliance_input\": null,\n                    \"sohd_installation_type\": null,\n                    \"sohd_fm_approved\": null,\n                    \"ship_pack_height\": null,\n                    \"yboe_master_pack_desc\": \"Pack of 4\",\n                    \"sohd_collection\": null,\n                    \"computed_price\": null,\n                    \"yboe_assembly_instructions\": null,\n                    \"sohd_glove_type\": null,\n                    \"yboe_iic_approvals\": null,\n                    \"yboe_sell_pack_qty\": \"1\",\n                    \"yboe_dmpicklista\": null,\n                    \"ship_pack_length\": null,\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"sohd_mss_specifications\": null,\n                    \"yboe_product_color\": null,\n                    \"sohd_weight\": null,\n                    \"yboe_poisonous\": null,\n                    \"yboe_dc_cutting_diameter_mm\": null,\n                    \"sohd_watts\": null,\n                    \"yboe_pilot_diameter_mm\": null,\n                    \"yboe_vendor\": null,\n                    \"yboe_base_material_details\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"yboe_google_keywords\": null,\n                    \"yboe_shcs_size\": null,\n                    \"yboe_masterpack_width\": \"36\\\"\",\n                    \"yboe_supplier_intended_and_approved_use\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"yboe_certification_date\": null,\n                    \"yboe_selling_weight\": \"50 lbs\",\n                    \"main_image\": \"4070863028\",\n                    \"action_photo\": null,\n                    \"yboe_pilot_type\": null,\n                    \"lifestyle_image\": null,\n                    \"yboe_number_of_inserts\": null,\n                    \"yboe_gender\": null,\n                    \"material_type\": \"Steel\",\n                    \"sohd_light_bulb_shape_code\": null,\n                    \"sohd_alt_product_number\": null,\n                    \"purchasing_completeness\": \"25\",\n                    \"yboe_field_of_view\": null,\n                    \"sohd_x\": null,\n                    \"yboe_publish_to_b2b_website\": \"Yes\",\n                    \"yboe_pump_location\": null,\n                    \"sohd_ce_approved\": null,\n                    \"accessory_product\": null,\n                    \"sohd_video_asset_reference_id\": null,\n                    \"case_pack_quantity\": null,\n                    \"yboe_toolholder_style\": null,\n                    \"yboe_category\": \"Tools > Power Tools > Compressors\",\n                    \"inner_pack_width\": null,\n                    \"sohd_x_3\": null,\n                    \"sohd_x_2\": null,\n                    \"sohd_x_5\": null,\n                    \"ship_pack_desc\": null,\n                    \"yboe_dfdfdfd\": null,\n                    \"sohd_x_4\": null,\n                    \"yboe_top_manufactured_wood_type\": null,\n                    \"yboe_horse_power\": null,\n                    \"yboe_secondary_category\": null,\n                    \"selling_length\": \"18\\\"\",\n                    \"yboe_lens_type\": null,\n                    \"yboe_attribute_1\": null,\n                    \"yboe_attribute_2\": null,\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"yboe_companywebsite\": null,\n                    \"asin\": \"ABFDSDSD2\",\n                    \"sohd_number_of_pieces\": null,\n                    \"generated_description\": null,\n                    \"yboe_components\": null,\n                    \"action_shot\": null,\n                    \"yboe_lifestyle_image\": null,\n                    \"yboe_hazardous\": \"No\",\n                    \"yboe_action_photo\": null,\n                    \"sohd_ul_listed\": null,\n                    \"rich_description\": \"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All steel </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\">connecting rods</span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.</span><br><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\"><strong>Removable 100% </strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">cast </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(120, 75%, 60%);font-size:15px;\\\"><strong>iron</strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat. This makes competitor pumps good for about a 40-50% duty cycle – while claiming a 100% duty cycle. Most of the pumps with aluminum cylinders have to be replaced in 1-2 years because they would not hold up under heavy use. Not our Air pumps! Our solid cast iron cylinders can “take the heat” and are designed to perform on heavy load demands.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All cast iron cylinder heads. Cast iron heads are more durable and dependable for trouble free operation.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">“Disc valve design” intake and exhaust valves. Disc valves have been around for over 100 years and have been proven to perform. Most of our competitors are using “throw-away” reed valves which are not nearly as durable and can’t be re-built. Our disc valves come right out of the top of the cylinder head where they can be serviced in minutes instead of hours like reed valves.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">Top quality compression and oil rings. Our rings ensure performance with low oil carry over (1-5 PPM).</span></p>\",\n                    \"number\": \"RFOF-8053\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"yboe_iic\": null,\n                    \"sohd_nsf_specifications\": null,\n                    \"warranty\": \"2 Year\",\n                    \"yboe_repair_policy\": null,\n                    \"sohd_brand_type\": null,\n                    \"additional_images\": null,\n                    \"sohd_epa_compliant\": null,\n                    \"yboe_grainger_part_number\": \"32FSFD11\",\n                    \"yboe_feature_benefit_6\": null,\n                    \"yboe_explosive\": null,\n                    \"master_pack_qty\": \"4\",\n                    \"yboe_material_type\": \"Steel\",\n                    \"upc\": null,\n                    \"yboe_packaged_asset\": null,\n                    \"yboe_map_price\": null,\n                    \"zhz_material\": null,\n                    \"yboe_minimum_illumination\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"yboe_masterpack_length\": \"48\\\"\",\n                    \"status\": \"Active\",\n                    \"sohd_brand_names\": null,\n                    \"yboe_storage\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"yboe_seat_dimensions\": null,\n                    \"yboe_maximum_operating_temperature\": null,\n                    \"yboe_base_material\": null,\n                    \"yboe_drawers_included\": null,\n                    \"yboe_burner\": null,\n                    \"yboe_life_stage_2\": null,\n                    \"yboe_mkt_comp\": \"0\",\n                    \"yboe_dcon_connection_diameter_decimal_inch\": null,\n                    \"yboe_shelves_included\": null,\n                    \"yboe_sellpack_height\": \"9\\\"\",\n                    \"sohd_maximum_pressure\": null,\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"sohd_ansi_specifications\": null,\n                    \"yboe_pilot_diameter_decimal_inch\": null,\n                    \"sohd_item_class\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_asse_standards\": null,\n                    \"coverage_level\": null,\n                    \"yboe_complementary_products\": null,\n                    \"mkt_comp\": \"0\",\n                    \"yboe_extra_long_name_for_website\": null,\n                    \"yboe_fuel\": null,\n                    \"sohd_size\": null,\n                    \"yboe_seat_height_from_floor\": null,\n                    \"sohd_colorfinish\": null,\n                    \"sohd_length\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"sohd_submittals_asset_file_name\": null,\n                    \"sohd_scaqmd_compliant\": null,\n                    \"yboe_rated_voltage_v\": null,\n                    \"sohd_mfgsupplier_name_id\": null,\n                    \"keyword_tags\": [\n                        \"bulk\",\n                        \"movable\",\n                        \"yellow\"\n                    ],\n                    \"benefit_6\": null,\n                    \"benefit_4\": \"Removable 100% cast iron cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat.\",\n                    \"benefit_5\": \"Made in USA\",\n                    \"benefit_2\": \"Our pump also features a precision balanced solid cast iron crankshaft with Timken-Style stainless steel roller bearings on the front and rear of the crankshaft to ensure smooth & efficient operation with less drag and less energy use.\",\n                    \"benefit_3\": \"ll steel connecting rods with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.\",\n                    \"sohd_bulb_type\": null,\n                    \"sohd_lifestyle_image_file_name\": null,\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"yboe_rated_current_a\": null,\n                    \"sohd_energy_guide_file_name\": null,\n                    \"yboe_efficiency\": null,\n                    \"yboe_sell_pack_desc\": \"Each\",\n                    \"customer_part_number\": \"78493433\",\n                    \"yboe_insert_holding_method\": null,\n                    \"yboe_spec_sheet\": null,\n                    \"yboe_environmental_rating\": null,\n                    \"yboe_used_with\": [\n                        \"20023094\"\n                    ],\n                    \"extra_long_name_for_website\": null,\n                    \"sohd_awwa_specifications\": null,\n                    \"yboe_supplier_stock_no\": \"8221292\",\n                    \"yboe_long_name_for_ebay\": null,\n                    \"sohd_fitting_size_1\": null,\n                    \"sohd_gender\": null,\n                    \"yboe_image_url\": null,\n                    \"sohd_carbotcleed_compliant\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8053\",\n                    \"sohd_optional_accessory\": null,\n                    \"sohd_baa_compliant\": null,\n                    \"sohd_top_view_image_file_name\": null,\n                    \"yboe_pan_speed\": null,\n                    \"yboe_customer_part_number\": \"78493433\",\n                    \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"color_option\": \"Deep Garnet Red\",\n                    \"sohd_required_accessory\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"sohd_reusable\": null,\n                    \"yboe_country_of_origin\": \"China\",\n                    \"yboe_max_resolution\": null,\n                    \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n                    \"yboe_color_multi\": null,\n                    \"sohd_upc\": null,\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"sohd_asme_specifications\": null,\n                    \"sohd_csa_certified\": null,\n                    \"sohd_sku_image_notes\": null,\n                    \"sohd_coating\": null,\n                    \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n                    \"yboe_arm_height_from_floor\": null,\n                    \"yboe_safety_data_sheet\": null,\n                    \"application\": null,\n                    \"sohd_brand_model_compatibility\": null,\n                    \"coverage_description_pt\": null,\n                    \"yboe_product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"3 Stage\",\n                    \"warranty_language\": \"English. (Does not cover theft)\",\n                    \"yboe_product_dimensions_w_x_d_x_h\": null,\n                    \"sell_pack_desc\": \"Each\",\n                    \"sohd_mfg_product_number\": \"RFOF-8053\",\n                    \"yboe_additional_images\": null,\n                    \"sohd_etl_listed\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"yboe_name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n                    \"map_price\": null,\n                    \"yboe_seat_number\": null,\n                    \"yboe_top_metal_finish_application\": null,\n                    \"yboe_color_option\": \"Deep Garnet Red\",\n                    \"sale_active\": \"Yes\",\n                    \"yboe_toy_color\": null,\n                    \"yboe_contact_configuration\": null,\n                    \"brand\": \"RedDot\",\n                    \"yboe_lu_maximum_counterbore_depth_mm\": null,\n                    \"sohd_installation_instructions_file\": null,\n                    \"yboe_msrp\": \"$3125.00\",\n                    \"sohd_indoor_outdoor\": null,\n                    \"yboe_back_dimensions\": null,\n                    \"sohd_maximum_temperature\": null,\n                    \"coverage_description_it\": null,\n                    \"sohd_back_view_image_file_name\": null,\n                    \"safety_data_sheet\": null,\n                    \"yboe_cost_string\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"yboe_dcon_connection_diameter_mm\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"yboe_side_image\": null,\n                    \"yboe_case_pack_packaging_description\": null,\n                    \"yboe_te\": null,\n                    \"assembly_instructions\": null,\n                    \"yboe_accessory_product\": null,\n                    \"case_pack_weight\": null,\n                    \"sell_pack_qty\": \"1\",\n                    \"yboe_product_type_1\": null,\n                    \"yboe_number_of_shelves\": null,\n                    \"yboe_case_pack_weight\": null,\n                    \"sohd_bottom_view_image_file_name\": null,\n                    \"sohd_warranty_file_name\": null,\n                    \"yboe_gtin\": \"0783932932321\",\n                    \"vendor\": null,\n                    \"msrp\": \"$3125.00\",\n                    \"yboe_ebc_amazon\": null,\n                    \"sohd_parts_breakdown_file\": null,\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"sohd_gauge\": null,\n                    \"yboe_weight_capacity\": null,\n                    \"sohd_phase\": null,\n                    \"sohd_features_benefits_10\": null,\n                    \"case_pack_width\": null,\n                    \"sohd_spare_part_product_reference\": null,\n                    \"yboe_sellpack_width\": \"18\\\"\",\n                    \"sohd_thickness\": null,\n                    \"yboe_aperture\": null,\n                    \"sale_price\": null,\n                    \"sohd_linebuy_id\": null,\n                    \"yboe_benefit_5\": \"Made in USA\",\n                    \"yboe_benefit_4\": \"Removable 100% cast iron cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat.\",\n                    \"yboe_benefit_6\": null,\n                    \"yboe_benefit_1\": \"Made with high quality steel\",\n                    \"yboe_benefit_3\": \"ll steel connecting rods with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.\",\n                    \"yboe_salesforce_id\": null,\n                    \"yboe_benefit_2\": \"Our pump also features a precision balanced solid cast iron crankshaft with Timken-Style stainless steel roller bearings on the front and rear of the crankshaft to ensure smooth & efficient operation with less drag and less energy use.\",\n                    \"yboe_head_length\": null,\n                    \"yboe_dc_cutting_diameter_decimal_inch\": null,\n                    \"sohd_clothing_size\": null,\n                    \"yrfa_price\": \"999\",\n                    \"yboe_lighted\": null,\n                    \"yboe_tarriff\": null,\n                    \"yboe_insert_style\": null,\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"yboe_max_screw_diameter_compatibility_mm\": null,\n                    \"sohd_material\": null,\n                    \"yboe_number_of_flutes\": null,\n                    \"yboe_protein\": null,\n                    \"supplier_stock_no\": \"8221292\",\n                    \"sohd_battery_type\": null,\n                    \"coverage_description_es\": null,\n                    \"yboe_autoiris\": null,\n                    \"repair_policy\": null,\n                    \"yboe_ship_pack_qty\": null,\n                    \"coverage_description_en\": null,\n                    \"product_type_1\": null,\n                    \"sohd_vendor_logo\": null,\n                    \"name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n                    \"flammable\": null,\n                    \"sohd_step_id\": null,\n                    \"yboe_battery_capacity\": null,\n                    \"psi\": \"120 PSi\",\n                    \"yboe_installation_partners\": \"Greenlee Conduit\",\n                    \"video\": null,\n                    \"poisonous\": null,\n                    \"sohd_smart_home_enabled\": null,\n                    \"sohd_osha_specifications\": null,\n                    \"yboe_accessory_size\": null,\n                    \"sohd_automatic_shutoff\": null,\n                    \"yboe_compatible_insert_hand\": null,\n                    \"gtin\": \"0783932932321\",\n                    \"sohd_nema_specifications\": null,\n                    \"yboe_marking_code\": null,\n                    \"yboe_top_materials_details\": null,\n                    \"yboe_customer\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"yboe_keyword_tags\": [\n                        \"bulk\",\n                        \"movable\",\n                        \"yellow\"\n                    ],\n                    \"prop_65_compliant\": \"Yes\",\n                    \"yboe_sell_sheet\": null,\n                    \"yboe_ratings_information\": null,\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"yboe_warp_resistent\": null,\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"amps\": null,\n                    \"avg_hours\": \"12\",\n                    \"yboe_main_image\": \"4070863028\",\n                    \"yboe_prop_65_compliant\": \"Yes\",\n                    \"yboe_purchasing_completeness\": \"25\",\n                    \"yboe_regular_price\": null,\n                    \"sohd_volts\": null,\n                    \"yboe_case_pack_quantity\": null,\n                    \"yboe_cutting_edge_length\": null,\n                    \"yboe_warranty_language\": \"English. (Does not cover theft)\",\n                    \"sohd_energy_star_compliant\": null,\n                    \"input_voltage\": \"110 V\",\n                    \"prop_65_warning\": \"N/A\",\n                    \"sohd_use_and_care_file\": null,\n                    \"inner_pack_height\": null,\n                    \"ship_pack_qty\": null,\n                    \"yboe_min_screw_diameter_compatibility_mm\": null,\n                    \"sohd_end_connection_2\": null,\n                    \"sohd_end_connection_1\": null,\n                    \"yboe_master_pack_qty\": \"4\",\n                    \"multi_category\": null,\n                    \"sohd_iapmo_listed\": null,\n                    \"sohd_tool_type\": null,\n                    \"yboe_ship_pack_width\": null,\n                    \"yboe_model\": null,\n                    \"yboe_life_stage\": null,\n                    \"ship_pack_width\": null,\n                    \"yboe_upc\": null,\n                    \"yboe_supplier\": null,\n                    \"yboe_tilt_range\": null,\n                    \"sohd_glove_size\": null,\n                    \"sohd_origin\": null,\n                    \"yboe_wiring_capacity_phase_contacts\": null,\n                    \"yboe_image_2\": \"4070863023\",\n                    \"yboe_image_3\": null,\n                    \"sohd_gsa_approved\": null,\n                    \"sohd_ada_compliant\": null,\n                    \"sohd_material_type\": null,\n                    \"yboe_prop_65_warning\": \"N/A\",\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"yboe_ship_pack_length\": null,\n                    \"yboe_inner_pack_length\": null,\n                    \"selling_weight\": \"50 lbs\",\n                    \"yboe_iic_multiple_approvals\": null,\n                    \"yboe_minimum_operating_temperature\": null,\n                    \"yboe_recommended_products\": null,\n                    \"sohd_diameter\": null,\n                    \"yboe_back_image\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"yboe_rich_description\": \"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All steel </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\">connecting rods</span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.</span><br><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\"><strong>Removable 100% </strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">cast </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(120, 75%, 60%);font-size:15px;\\\"><strong>iron</strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat. This makes competitor pumps good for about a 40-50% duty cycle – while claiming a 100% duty cycle. Most of the pumps with aluminum cylinders have to be replaced in 1-2 years because they would not hold up under heavy use. Not our Air pumps! Our solid cast iron cylinders can “take the heat” and are designed to perform on heavy load demands.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All cast iron cylinder heads. Cast iron heads are more durable and dependable for trouble free operation.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">“Disc valve design” intake and exhaust valves. Disc valves have been around for over 100 years and have been proven to perform. Most of our competitors are using “throw-away” reed valves which are not nearly as durable and can’t be re-built. Our disc valves come right out of the top of the cylinder head where they can be serviced in minutes instead of hours like reed valves.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">Top quality compression and oil rings. Our rings ensure performance with low oil carry over (1-5 PPM).</span></p>\",\n                    \"yboe_base_drawing_number\": null,\n                    \"yboe_shank_type\": null,\n                    \"sohd_ma_approved\": null,\n                    \"yboe_focal_length\": null,\n                    \"sohd_features_benefits_06\": null,\n                    \"sohd_features_benefits_07\": null,\n                    \"sohd_features_benefits_04\": null,\n                    \"sohd_features_benefits_05\": null,\n                    \"sohd_features_benefits_02\": null,\n                    \"sohd_features_benefits_03\": null,\n                    \"sohd_features_benefits_01\": null,\n                    \"tank_capacity\": null,\n                    \"sohd_product_short_description\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n                    \"video_2\": null,\n                    \"yboe_ship_pack_height\": null,\n                    \"sohd_includes\": null,\n                    \"case_pack_height\": null,\n                    \"sohd_features_benefits_08\": null,\n                    \"sohd_features_benefits_09\": null,\n                    \"yboe_lf_functional_length_mm\": null,\n                    \"inside_diameter\": \"45\",\n                    \"marketplace_category\": null,\n                    \"yboe_care_wash_and_usage_instructions\": null,\n                    \"yboe_case_pack_length\": null,\n                    \"sohd_cable_or_wire_type\": null,\n                    \"yboe_brand_name\": null,\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"yboe_manufacturer_list\": null,\n                    \"sohd_astm_specifications\": null,\n                    \"long_name_for_ebay\": null,\n                    \"spec_sheet\": null,\n                    \"yboe_compatible_inserts_full\": null,\n                    \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"yboe_case_pack_height\": null,\n                    \"yboe_sale_active\": \"Yes\",\n                    \"yboe_warranty\": \"2 Year\",\n                    \"sohd_specification_file\": null,\n                    \"yboe_generated_description\": null,\n                    \"regular_price\": null,\n                    \"yboe_inner_pack_height\": null,\n                    \"yboe_remote_control\": null,\n                    \"sohd_vendor_brand_logo\": null,\n                    \"priority_accessories\": null,\n                    \"sohd_package_quantity\": null,\n                    \"yboe_action_shot\": null,\n                    \"yboe_exchange_policy\": null,\n                    \"orientation\": null,\n                    \"cost\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 30\n                    },\n                    \"yboe_coolant_through_yesno\": null,\n                    \"yboe_case_pack_width\": null,\n                    \"yboe_application\": null,\n                    \"sohd_product_number_sku\": \"RFOF-8053\",\n                    \"yboe_brand\": \"RedDot\",\n                    \"sohd_width\": null,\n                    \"sohd_temperature_range\": null,\n                    \"marking_code\": null,\n                    \"sohd_oracle_item_class_ref_classification_reference\": null,\n                    \"yboe_image_sensor\": null,\n                    \"yboe_shutter_time\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"sohd_depth\": null,\n                    \"sohd_lighting_facts_asset_file_name\": null\n                },\n                {\n                    \"id\": 17412006,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680228,\n                        4004680318\n                    ],\n                    \"completeness_score\": 77,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 33,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"explosive\": null,\n                    \"warranty_language\": \"Defects Only\",\n                    \"sell_pack_desc\": \"Each\",\n                    \"sohd_mfg_product_number\": \"RFOF-8056\",\n                    \"sohd_etl_listed\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"map_price\": null,\n                    \"sohd_height\": null,\n                    \"coverage_length\": null,\n                    \"sohd_iso_specifications\": null,\n                    \"grainger_part_number\": \"1AD3433\",\n                    \"sale_active\": \"Yes\",\n                    \"brand\": null,\n                    \"sohd_installation_instructions_file\": null,\n                    \"sohd_power_source\": null,\n                    \"sohd_indoor_outdoor\": null,\n                    \"sohd_maximum_temperature\": null,\n                    \"hazardous\": \"Yes\",\n                    \"country_of_origin\": null,\n                    \"sohd_cad_drawings_file_name\": null,\n                    \"coverage_description_it\": null,\n                    \"sohd_back_view_image_file_name\": null,\n                    \"safety_data_sheet\": null,\n                    \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"sohd_scheduleclass\": null,\n                    \"case_pack_upcean\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"sohd_left_view_image_file_name\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"main_material\": null,\n                    \"ship_pack_weight\": null,\n                    \"auto_linked_image\": null,\n                    \"assembly_instructions\": null,\n                    \"case_pack_weight\": null,\n                    \"sohd_temperature_rating\": null,\n                    \"sell_pack_qty\": \"1\",\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"sohd_bottom_view_image_file_name\": null,\n                    \"sohd_cord_length\": null,\n                    \"generate_technical_attributes\": null,\n                    \"sohd_warranty_file_name\": null,\n                    \"vendor\": null,\n                    \"msrp\": \"3000\",\n                    \"sohd_parts_breakdown_file\": null,\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"sohd_gauge\": null,\n                    \"sohd_phase\": null,\n                    \"sohd_disposable\": null,\n                    \"sohd_features_benefits_10\": null,\n                    \"website\": null,\n                    \"case_pack_width\": null,\n                    \"sohd_niosh_specifications\": null,\n                    \"sohd_spare_part_product_reference\": null,\n                    \"sohd_thickness\": null,\n                    \"list_price\": null,\n                    \"sohd_application\": null,\n                    \"sale_price\": null,\n                    \"yrfa_uom\": null,\n                    \"sohd_linebuy_id\": null,\n                    \"sohd_nsf_certified\": null,\n                    \"sohd_right_view_image_file_name\": null,\n                    \"sohd_wire_gauge\": null,\n                    \"sohd_clothing_size\": null,\n                    \"sohd_amp\": null,\n                    \"sohd_product_type\": null,\n                    \"tank_size\": \"50 gal\",\n                    \"yrfa_price\": \"999\",\n                    \"sohd_installation_type\": null,\n                    \"sohd_fm_approved\": null,\n                    \"ship_pack_height\": null,\n                    \"sohd_collection\": null,\n                    \"computed_price\": null,\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"sohd_glove_type\": null,\n                    \"sohd_material\": null,\n                    \"ship_pack_length\": null,\n                    \"supplier_stock_no\": \"8221294\",\n                    \"sohd_battery_type\": null,\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"sohd_mss_specifications\": null,\n                    \"coverage_description_es\": null,\n                    \"repair_policy\": null,\n                    \"sohd_weight\": null,\n                    \"sohd_watts\": null,\n                    \"coverage_description_en\": null,\n                    \"product_type_1\": null,\n                    \"sohd_vendor_logo\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"name\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n                    \"flammable\": null,\n                    \"sohd_step_id\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"main_image\": \"4070863028\",\n                    \"psi\": \"150 PSI\",\n                    \"action_photo\": null,\n                    \"lifestyle_image\": null,\n                    \"video\": null,\n                    \"poisonous\": null,\n                    \"material_type\": \"Steel\",\n                    \"muko_length\": null,\n                    \"sohd_light_bulb_shape_code\": null,\n                    \"sohd_alt_product_number\": null,\n                    \"purchasing_completeness\": \"50\",\n                    \"sohd_smart_home_enabled\": null,\n                    \"sohd_osha_specifications\": null,\n                    \"sohd_x\": null,\n                    \"sohd_ce_approved\": null,\n                    \"accessory_product\": null,\n                    \"sohd_automatic_shutoff\": null,\n                    \"sohd_video_asset_reference_id\": null,\n                    \"case_pack_quantity\": null,\n                    \"gtin\": null,\n                    \"sohd_nema_specifications\": null,\n                    \"inner_pack_width\": null,\n                    \"sohd_x_3\": null,\n                    \"sohd_x_2\": null,\n                    \"sohd_x_5\": null,\n                    \"ship_pack_desc\": null,\n                    \"sohd_x_4\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"selling_length\": \"18\\\"\",\n                    \"prop_65_compliant\": \"Yes\",\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"asin\": \"32BH232H1\",\n                    \"sohd_number_of_pieces\": null,\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"amps\": null,\n                    \"generated_description\": null,\n                    \"avg_hours\": \"12\",\n                    \"action_shot\": null,\n                    \"sohd_volts\": null,\n                    \"sohd_ul_listed\": null,\n                    \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\">This is html</span></p>\",\n                    \"number\": \"RFOF-8056\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"sohd_nsf_specifications\": null,\n                    \"sohd_energy_star_compliant\": null,\n                    \"warranty\": \"4 Year\",\n                    \"input_voltage\": \"110 V\",\n                    \"sohd_brand_type\": null,\n                    \"prop_65_warning\": null,\n                    \"additional_images\": null,\n                    \"sohd_use_and_care_file\": null,\n                    \"sohd_epa_compliant\": null,\n                    \"inner_pack_height\": null,\n                    \"master_pack_qty\": \"4\",\n                    \"ship_pack_qty\": null,\n                    \"upc\": null,\n                    \"sohd_end_connection_2\": null,\n                    \"sohd_end_connection_1\": null,\n                    \"multi_category\": null,\n                    \"sohd_iapmo_listed\": null,\n                    \"sohd_tool_type\": null,\n                    \"zhz_material\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"ship_pack_width\": null,\n                    \"status\": \"Active\",\n                    \"sohd_brand_names\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_glove_size\": null,\n                    \"sohd_origin\": null,\n                    \"muko_title\": null,\n                    \"sohd_gsa_approved\": null,\n                    \"sohd_ada_compliant\": null,\n                    \"sohd_material_type\": null,\n                    \"sohd_maximum_pressure\": null,\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"muko_weight\": null,\n                    \"selling_weight\": \"50 lbs\",\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"sohd_ansi_specifications\": null,\n                    \"sohd_item_class\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_asse_standards\": null,\n                    \"muko_height\": null,\n                    \"coverage_level\": null,\n                    \"mkt_comp\": \"0\",\n                    \"sohd_diameter\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"sohd_size\": null,\n                    \"sohd_colorfinish\": null,\n                    \"sohd_length\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"sohd_submittals_asset_file_name\": null,\n                    \"sohd_ma_approved\": null,\n                    \"sohd_scaqmd_compliant\": null,\n                    \"sohd_features_benefits_06\": null,\n                    \"sohd_features_benefits_07\": null,\n                    \"sohd_features_benefits_04\": null,\n                    \"sohd_mfgsupplier_name_id\": null,\n                    \"sohd_features_benefits_05\": null,\n                    \"sohd_features_benefits_02\": null,\n                    \"sohd_features_benefits_03\": null,\n                    \"sohd_features_benefits_01\": null,\n                    \"keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"benefit_6\": null,\n                    \"tank_capacity\": null,\n                    \"benefit_4\": \"Easily stackable with removable handle\",\n                    \"sohd_product_short_description\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n                    \"video_2\": null,\n                    \"benefit_5\": \"Made in USA\",\n                    \"sohd_includes\": null,\n                    \"benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"case_pack_height\": null,\n                    \"benefit_3\": \"Light and portable\",\n                    \"sohd_bulb_type\": null,\n                    \"sohd_lifestyle_image_file_name\": null,\n                    \"sohd_features_benefits_08\": null,\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"sohd_features_benefits_09\": null,\n                    \"sohd_energy_guide_file_name\": null,\n                    \"inside_diameter\": \"45\",\n                    \"marketplace_category\": null,\n                    \"sohd_cable_or_wire_type\": null,\n                    \"customer_part_number\": null,\n                    \"muko_item_id\": \"RFOF-8056\",\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"sohd_astm_specifications\": null,\n                    \"long_name_for_ebay\": null,\n                    \"extra_long_name_for_website\": null,\n                    \"sohd_awwa_specifications\": null,\n                    \"spec_sheet\": null,\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"sohd_fitting_size_1\": null,\n                    \"sohd_gender\": null,\n                    \"sohd_specification_file\": null,\n                    \"sohd_carbotcleed_compliant\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8056\",\n                    \"sohd_optional_accessory\": null,\n                    \"sohd_baa_compliant\": null,\n                    \"sohd_top_view_image_file_name\": null,\n                    \"regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 15\n                    },\n                    \"color_option\": \"Green\",\n                    \"sohd_required_accessory\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"sohd_reusable\": null,\n                    \"sohd_vendor_brand_logo\": null,\n                    \"priority_accessories\": null,\n                    \"sohd_package_quantity\": null,\n                    \"sohd_upc\": null,\n                    \"orientation\": null,\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"cost\": null,\n                    \"sohd_asme_specifications\": null,\n                    \"sohd_csa_certified\": null,\n                    \"sohd_sku_image_notes\": null,\n                    \"sohd_coating\": null,\n                    \"sohd_product_number_sku\": \"RFOF-8056\",\n                    \"sohd_width\": null,\n                    \"application\": null,\n                    \"sohd_brand_model_compatibility\": null,\n                    \"coverage_description_pt\": null,\n                    \"sohd_temperature_range\": null,\n                    \"marking_code\": null,\n                    \"sohd_oracle_item_class_ref_classification_reference\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"sohd_depth\": null,\n                    \"sohd_lighting_facts_asset_file_name\": null,\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"2 Stage\"\n                },\n                {\n                    \"id\": 17412005,\n                    \"assets\": [\n                        {\n                            \"id\": 4070863023,\n                            \"size\": 1645536,\n                            \"width\": 2000,\n                            \"height\": 2000,\n                            \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"device\",\n                                \"grass\",\n                                \"lawn\",\n                                \"lawn mower\",\n                                \"Plant\",\n                                \"tool\",\n                                \"blue\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                            \"publish_date\": null\n                        },\n                        {\n                            \"id\": 4070863028,\n                            \"size\": 67906,\n                            \"width\": 768,\n                            \"height\": 768,\n                            \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"create_user_id\": 4018007131,\n                            \"create_date\": 1705529945511,\n                            \"create_user_name\": \"Super Admin\",\n                            \"update_user_id\": 4018007131,\n                            \"update_date\": 1705530356605,\n                            \"update_user_name\": \"Super Admin\",\n                            \"lightbox_ids\": [],\n                            \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"asset_type\": \"IMAGE\",\n                            \"aspect_ratio\": null,\n                            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                            \"linked_products\": [],\n                            \"private\": false,\n                            \"extension\": \"jpg\",\n                            \"transformations\": {\n                                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                            },\n                            \"personna\": null,\n                            \"marketing_campaigns\": null,\n                            \"source\": null,\n                            \"expiration_date\": null,\n                            \"version\": \"1\",\n                            \"title_a\": null,\n                            \"tags\": [\n                                \"Machine\",\n                                \"wheel\",\n                                \"car\",\n                                \"transportation\",\n                                \"vehicle\",\n                                \"dragon prime\",\n                                \"enterprise\",\n                                \"green\"\n                            ],\n                            \"application_notes\": null,\n                            \"storemediaid\": null,\n                            \"category\": \"Tools > Power Tools > Compressors\",\n                            \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                            \"publish_date\": null\n                        }\n                    ],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680318\n                    ],\n                    \"completeness_score\": 77,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 33,\n                        \"recicompressors\": 100,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"explosive\": null,\n                    \"warranty_language\": \"Defects Only\",\n                    \"sell_pack_desc\": \"Each\",\n                    \"sohd_mfg_product_number\": \"RFOF-8055\",\n                    \"sohd_etl_listed\": null,\n                    \"sellpack_width\": \"18\\\"\",\n                    \"map_price\": null,\n                    \"sohd_height\": null,\n                    \"coverage_length\": null,\n                    \"sohd_iso_specifications\": null,\n                    \"grainger_part_number\": \"1AD3433\",\n                    \"sale_active\": \"Yes\",\n                    \"brand\": null,\n                    \"sohd_installation_instructions_file\": null,\n                    \"sohd_power_source\": null,\n                    \"sohd_indoor_outdoor\": null,\n                    \"sohd_maximum_temperature\": null,\n                    \"country_of_origin\": \"China\",\n                    \"hazardous\": \"Yes\",\n                    \"sohd_cad_drawings_file_name\": null,\n                    \"coverage_description_it\": null,\n                    \"sohd_back_view_image_file_name\": null,\n                    \"safety_data_sheet\": null,\n                    \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"sohd_scheduleclass\": null,\n                    \"case_pack_upcean\": null,\n                    \"grade\": \"D\",\n                    \"inner_pack_length\": null,\n                    \"sohd_left_view_image_file_name\": null,\n                    \"masterpack_length\": \"48\\\"\",\n                    \"main_material\": null,\n                    \"ship_pack_weight\": null,\n                    \"auto_linked_image\": null,\n                    \"assembly_instructions\": null,\n                    \"case_pack_weight\": null,\n                    \"sohd_temperature_rating\": null,\n                    \"sell_pack_qty\": \"1\",\n                    \"used_with\": [\n                        \"20023094\"\n                    ],\n                    \"complementary_products\": null,\n                    \"sohd_bottom_view_image_file_name\": null,\n                    \"sohd_cord_length\": null,\n                    \"generate_technical_attributes\": null,\n                    \"sohd_warranty_file_name\": null,\n                    \"vendor\": null,\n                    \"msrp\": \"3000\",\n                    \"sohd_parts_breakdown_file\": null,\n                    \"recommended_products\": null,\n                    \"ingredients\": null,\n                    \"sohd_gauge\": null,\n                    \"sohd_phase\": null,\n                    \"sohd_disposable\": null,\n                    \"sohd_features_benefits_10\": null,\n                    \"website\": null,\n                    \"case_pack_width\": null,\n                    \"sohd_niosh_specifications\": null,\n                    \"sohd_spare_part_product_reference\": null,\n                    \"sohd_thickness\": null,\n                    \"list_price\": null,\n                    \"sohd_application\": null,\n                    \"sale_price\": null,\n                    \"yrfa_uom\": null,\n                    \"sohd_linebuy_id\": null,\n                    \"sohd_nsf_certified\": null,\n                    \"sohd_right_view_image_file_name\": null,\n                    \"sohd_wire_gauge\": null,\n                    \"sohd_clothing_size\": null,\n                    \"sohd_amp\": null,\n                    \"sohd_product_type\": null,\n                    \"tank_size\": \"50 gal\",\n                    \"yrfa_price\": \"999\",\n                    \"sohd_installation_type\": null,\n                    \"sohd_fm_approved\": null,\n                    \"ship_pack_height\": null,\n                    \"sohd_collection\": null,\n                    \"computed_price\": null,\n                    \"sell_sheet\": null,\n                    \"coverage_description_fr\": null,\n                    \"case_pack_packaging_description\": null,\n                    \"masterpack_weight\": \"300 lbs\",\n                    \"sohd_glove_type\": null,\n                    \"sohd_material\": null,\n                    \"ship_pack_length\": null,\n                    \"supplier_stock_no\": \"8221293\",\n                    \"sohd_battery_type\": null,\n                    \"yrfa_super_extral_long_desc\": null,\n                    \"sohd_mss_specifications\": null,\n                    \"coverage_description_es\": null,\n                    \"repair_policy\": null,\n                    \"sohd_weight\": null,\n                    \"sohd_watts\": null,\n                    \"coverage_description_en\": null,\n                    \"product_type_1\": null,\n                    \"sohd_vendor_logo\": null,\n                    \"installation_partners\": \"Greenlee Conduit\",\n                    \"name\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n                    \"flammable\": null,\n                    \"sohd_step_id\": null,\n                    \"tank_style\": \"Horizontal\",\n                    \"main_image\": \"4070863028\",\n                    \"psi\": \"125 PSI\",\n                    \"action_photo\": null,\n                    \"poisonous\": \"Yes\",\n                    \"lifestyle_image\": null,\n                    \"video\": null,\n                    \"material_type\": \"Steel\",\n                    \"sohd_light_bulb_shape_code\": null,\n                    \"sohd_alt_product_number\": null,\n                    \"purchasing_completeness\": \"50\",\n                    \"sohd_smart_home_enabled\": null,\n                    \"sohd_osha_specifications\": null,\n                    \"sohd_x\": null,\n                    \"sohd_ce_approved\": null,\n                    \"accessory_product\": null,\n                    \"sohd_automatic_shutoff\": null,\n                    \"sohd_video_asset_reference_id\": null,\n                    \"case_pack_quantity\": null,\n                    \"gtin\": null,\n                    \"sohd_nema_specifications\": null,\n                    \"inner_pack_width\": null,\n                    \"sohd_x_3\": null,\n                    \"sohd_x_2\": null,\n                    \"sohd_x_5\": null,\n                    \"ship_pack_desc\": null,\n                    \"sohd_x_4\": null,\n                    \"inner_pack_weight\": \"60 lbs\",\n                    \"selling_length\": \"18\\\"\",\n                    \"prop_65_compliant\": \"Yes\",\n                    \"product_type\": [\n                        \"recicompressors\"\n                    ],\n                    \"material\": \"Steel\",\n                    \"publish_to_b2b_website\": \"Yes\",\n                    \"asin\": \"32BH232H1\",\n                    \"sohd_number_of_pieces\": null,\n                    \"current_price\": null,\n                    \"case_pack_length\": null,\n                    \"amps\": null,\n                    \"generated_description\": null,\n                    \"avg_hours\": \"12\",\n                    \"action_shot\": null,\n                    \"sohd_volts\": null,\n                    \"sohd_ul_listed\": null,\n                    \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\">This is html</span></p>\",\n                    \"number\": \"RFOF-8055\",\n                    \"sellpack_height\": \"9\\\"\",\n                    \"sohd_nsf_specifications\": null,\n                    \"sohd_energy_star_compliant\": null,\n                    \"warranty\": \"3 Year\",\n                    \"input_voltage\": \"110 V\",\n                    \"sohd_brand_type\": null,\n                    \"prop_65_warning\": null,\n                    \"additional_images\": null,\n                    \"sohd_use_and_care_file\": null,\n                    \"sohd_epa_compliant\": null,\n                    \"inner_pack_height\": null,\n                    \"master_pack_qty\": \"4\",\n                    \"ship_pack_qty\": null,\n                    \"upc\": null,\n                    \"sohd_end_connection_2\": null,\n                    \"sohd_end_connection_1\": null,\n                    \"multi_category\": null,\n                    \"sohd_iapmo_listed\": null,\n                    \"sohd_tool_type\": null,\n                    \"zhz_material\": null,\n                    \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"ship_pack_width\": null,\n                    \"status\": \"Active\",\n                    \"sohd_brand_names\": null,\n                    \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_glove_size\": null,\n                    \"sohd_origin\": null,\n                    \"sohd_gsa_approved\": null,\n                    \"sohd_ada_compliant\": null,\n                    \"sohd_material_type\": null,\n                    \"sohd_maximum_pressure\": null,\n                    \"care_wash_and_usage_instructions\": null,\n                    \"masterpack_width\": \"36\\\"\",\n                    \"selling_weight\": \"50 lbs\",\n                    \"parent_sku\": \"RFOF-8052\",\n                    \"sohd_ansi_specifications\": null,\n                    \"sohd_item_class\": null,\n                    \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n                    \"sohd_asse_standards\": null,\n                    \"coverage_level\": null,\n                    \"mkt_comp\": \"0\",\n                    \"sohd_diameter\": null,\n                    \"coverage_description_de\": null,\n                    \"cylinder_material\": \"Cast Iron\",\n                    \"sohd_size\": null,\n                    \"sohd_colorfinish\": null,\n                    \"sohd_length\": null,\n                    \"certification_date\": null,\n                    \"user_manual\": null,\n                    \"sohd_submittals_asset_file_name\": null,\n                    \"sohd_ma_approved\": null,\n                    \"sohd_scaqmd_compliant\": null,\n                    \"sohd_features_benefits_06\": null,\n                    \"sohd_features_benefits_07\": null,\n                    \"sohd_features_benefits_04\": null,\n                    \"sohd_mfgsupplier_name_id\": null,\n                    \"sohd_features_benefits_05\": null,\n                    \"sohd_features_benefits_02\": null,\n                    \"sohd_features_benefits_03\": null,\n                    \"sohd_features_benefits_01\": null,\n                    \"keyword_tags\": [\n                        \"yellow\",\n                        \"compressor\"\n                    ],\n                    \"benefit_6\": null,\n                    \"tank_capacity\": null,\n                    \"benefit_4\": \"Easily stackable with removable handle\",\n                    \"sohd_product_short_description\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n                    \"video_2\": null,\n                    \"benefit_5\": \"Made in USA\",\n                    \"sohd_includes\": null,\n                    \"benefit_2\": \"Fitted with wheels for easy movement.\",\n                    \"case_pack_height\": null,\n                    \"benefit_3\": \"Light and portable\",\n                    \"sohd_bulb_type\": null,\n                    \"sohd_lifestyle_image_file_name\": null,\n                    \"sohd_features_benefits_08\": null,\n                    \"benefit_1\": \"Made with high quality steel\",\n                    \"sohd_features_benefits_09\": null,\n                    \"sohd_energy_guide_file_name\": null,\n                    \"inside_diameter\": \"45\",\n                    \"marketplace_category\": null,\n                    \"sohd_cable_or_wire_type\": null,\n                    \"customer_part_number\": null,\n                    \"b2b_industrial_preliminary_demo_gid\": null,\n                    \"sohd_astm_specifications\": null,\n                    \"long_name_for_ebay\": null,\n                    \"extra_long_name_for_website\": null,\n                    \"sohd_awwa_specifications\": null,\n                    \"spec_sheet\": null,\n                    \"image_3\": null,\n                    \"image_2\": \"4070863023\",\n                    \"sohd_fitting_size_1\": null,\n                    \"sohd_gender\": null,\n                    \"sohd_specification_file\": null,\n                    \"sohd_carbotcleed_compliant\": null,\n                    \"yrfa_dealer_item_code\": \"RFOF-8055\",\n                    \"sohd_optional_accessory\": null,\n                    \"sohd_baa_compliant\": null,\n                    \"sohd_top_view_image_file_name\": null,\n                    \"regular_price\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 15\n                    },\n                    \"color_option\": \"Urban Navy\",\n                    \"sohd_required_accessory\": null,\n                    \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n                    \"sohd_reusable\": null,\n                    \"sohd_vendor_brand_logo\": null,\n                    \"priority_accessories\": null,\n                    \"sohd_package_quantity\": null,\n                    \"sohd_upc\": null,\n                    \"orientation\": null,\n                    \"cost\": {\n                        \"currency\": \"USD\",\n                        \"amount\": 12\n                    },\n                    \"master_pack_desc\": \"Pack of 4\",\n                    \"sohd_asme_specifications\": null,\n                    \"sohd_csa_certified\": null,\n                    \"sohd_sku_image_notes\": null,\n                    \"sohd_coating\": null,\n                    \"sohd_product_number_sku\": \"RFOF-8055\",\n                    \"sohd_width\": null,\n                    \"application\": null,\n                    \"sohd_brand_model_compatibility\": null,\n                    \"coverage_description_pt\": null,\n                    \"sohd_temperature_range\": null,\n                    \"marking_code\": null,\n                    \"sohd_oracle_item_class_ref_classification_reference\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"sohd_depth\": null,\n                    \"sohd_lighting_facts_asset_file_name\": null,\n                    \"masterpack_height\": \"30\\\"\",\n                    \"no_of_stages\": \"2 Stage\"\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1743511313208,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004680228,\n                4004680318,\n                4004680743\n            ],\n            \"catsy$option_attributes\": [\n                {\n                    \"id\": 20586328,\n                    \"key\": \"psi\"\n                },\n                {\n                    \"id\": 20926107,\n                    \"key\": \"no_of_stages\"\n                },\n                {\n                    \"id\": 20586340,\n                    \"key\": \"tank_size\"\n                },\n                {\n                    \"id\": 20586341,\n                    \"key\": \"tank_style\"\n                },\n                {\n                    \"id\": 20586311,\n                    \"key\": \"cylinder_material\"\n                },\n                {\n                    \"id\": 20734475,\n                    \"key\": \"input_voltage\"\n                }\n            ],\n            \"child_item_count\": 5,\n            \"variant_skus\": [\n                \"RFOF-8052\",\n                \"RFOF-8058\",\n                \"RFOF-8053\",\n                \"RFOF-8056\",\n                \"RFOF-8055\"\n            ],\n            \"completeness_score\": 79,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"tools\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"yboe_ship_pack_desc\": null,\n            \"yboe_peak_decibels\": null,\n            \"explosive\": \"Yes\",\n            \"yboe_compatible_inserts_partial\": null,\n            \"yboe_selling_length\": \"18\\\"\",\n            \"yboe_max_pressure\": null,\n            \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n            \"sohd_height\": null,\n            \"yboe_masterpack_height\": \"30\\\"\",\n            \"coverage_length\": null,\n            \"sohd_iso_specifications\": null,\n            \"yboe_top_material\": null,\n            \"grainger_part_number\": \"1AD3433\",\n            \"yboe_test\": null,\n            \"yboe_pantiltzoom_functionalities\": null,\n            \"yboe_website\": null,\n            \"yboe_screw_type_compatibility\": null,\n            \"sohd_power_source\": null,\n            \"yboe_unit_inchmm\": null,\n            \"country_of_origin\": \"China\",\n            \"hazardous\": \"Yes\",\n            \"sohd_cad_drawings_file_name\": null,\n            \"yboe_ship_pack_weight\": null,\n            \"yboe_hand\": null,\n            \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"sohd_scheduleclass\": null,\n            \"case_pack_upcean\": null,\n            \"yboe_delta\": null,\n            \"yboe_stc\": null,\n            \"yboe_heat_capacity\": null,\n            \"yboe_inner_pack_weight\": \"60 lbs\",\n            \"sohd_left_view_image_file_name\": null,\n            \"main_material\": \"Brass\",\n            \"ship_pack_weight\": null,\n            \"yboe_pan_range\": null,\n            \"auto_linked_image\": null,\n            \"twql_inner_pack_width\": null,\n            \"yboe_case_pack_upcean\": null,\n            \"yboe_inner_pack_width\": null,\n            \"sohd_temperature_rating\": null,\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"sohd_cord_length\": null,\n            \"generate_technical_attributes\": null,\n            \"yboe_tilt_speed\": null,\n            \"yboe_asin\": \"32BH232H1\",\n            \"yboe_flammable\": \"No\",\n            \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ],\n            \"sohd_disposable\": null,\n            \"website\": null,\n            \"sohd_niosh_specifications\": null,\n            \"yboe_masterpack_weight\": \"300 lbs\",\n            \"yboe_status\": \"Active\",\n            \"yboe_grade\": \"D\",\n            \"list_price\": \"$350\",\n            \"sohd_application\": null,\n            \"yrfa_uom\": null,\n            \"sohd_nsf_certified\": null,\n            \"yboe_master_code\": null,\n            \"sohd_right_view_image_file_name\": null,\n            \"yboe_btu\": null,\n            \"yboe_impact_rating\": null,\n            \"yboe_parent_sku\": \"RFOF-8052\",\n            \"sohd_wire_gauge\": null,\n            \"yboe_weldon_flat\": null,\n            \"sohd_product_type\": \"Waste Basket\",\n            \"sohd_amp\": null,\n            \"tank_size\": \"30 Gal\",\n            \"yboe_country_of_origin_old\": null,\n            \"yboe_appliance_input\": null,\n            \"sohd_installation_type\": null,\n            \"sohd_fm_approved\": null,\n            \"ship_pack_height\": null,\n            \"yboe_master_pack_desc\": \"Pack of 4\",\n            \"sohd_collection\": null,\n            \"computed_price\": null,\n            \"twql_inner_pack_weight\": \"60 lbs\",\n            \"twql_master_pack_desc\": \"Pack of 4\",\n            \"yboe_assembly_instructions\": null,\n            \"sohd_glove_type\": null,\n            \"yboe_iic_approvals\": null,\n            \"twql_ship_pack_height\": null,\n            \"yboe_sell_pack_qty\": \"1\",\n            \"yboe_dmpicklista\": null,\n            \"ship_pack_length\": null,\n            \"yrfa_super_extral_long_desc\": null,\n            \"sohd_mss_specifications\": null,\n            \"yboe_product_color\": null,\n            \"sohd_weight\": null,\n            \"yboe_poisonous\": null,\n            \"yboe_dc_cutting_diameter_mm\": null,\n            \"sohd_watts\": null,\n            \"yboe_pilot_diameter_mm\": null,\n            \"yboe_vendor\": null,\n            \"yboe_base_material_details\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"yboe_google_keywords\": null,\n            \"yboe_shcs_size\": null,\n            \"yboe_masterpack_width\": \"36\\\"\",\n            \"yboe_supplier_intended_and_approved_use\": null,\n            \"twql_inner_pack_length\": null,\n            \"tank_style\": \"Horizontal\",\n            \"yboe_certification_date\": null,\n            \"yboe_selling_weight\": \"50 lbs\",\n            \"main_image\": \"4070863028\",\n            \"action_photo\": null,\n            \"yboe_pilot_type\": null,\n            \"lifestyle_image\": null,\n            \"yboe_number_of_inserts\": null,\n            \"yboe_gender\": null,\n            \"material_type\": \"Steel\",\n            \"muko_length\": null,\n            \"sohd_light_bulb_shape_code\": null,\n            \"sohd_alt_product_number\": null,\n            \"purchasing_completeness\": \"50\",\n            \"yboe_field_of_view\": null,\n            \"sohd_x\": null,\n            \"yboe_publish_to_b2b_website\": \"Yes\",\n            \"twql_sell_pack_qty\": \"1\",\n            \"yboe_pump_location\": null,\n            \"sohd_ce_approved\": null,\n            \"accessory_product\": null,\n            \"sohd_video_asset_reference_id\": null,\n            \"case_pack_quantity\": null,\n            \"yboe_toolholder_style\": null,\n            \"yboe_category\": \"Tools > Power Tools > Compressors\",\n            \"inner_pack_width\": null,\n            \"sohd_x_3\": null,\n            \"sohd_x_2\": null,\n            \"sohd_x_5\": null,\n            \"ship_pack_desc\": null,\n            \"yboe_dfdfdfd\": null,\n            \"sohd_x_4\": null,\n            \"yboe_top_manufactured_wood_type\": null,\n            \"yboe_horse_power\": null,\n            \"yboe_secondary_category\": null,\n            \"selling_length\": \"18\\\"\",\n            \"yboe_lens_type\": null,\n            \"yboe_attribute_1\": null,\n            \"yboe_attribute_2\": null,\n            \"twql_master_pack_qty\": \"4\",\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"yboe_companywebsite\": null,\n            \"asin\": \"32BH232H1\",\n            \"sohd_number_of_pieces\": null,\n            \"generated_description\": null,\n            \"yboe_components\": null,\n            \"action_shot\": null,\n            \"yboe_lifestyle_image\": null,\n            \"yboe_hazardous\": \"Yes\",\n            \"yboe_action_photo\": null,\n            \"sohd_ul_listed\": null,\n            \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><strong>Product Dimensional Chart</strong></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr><tr><td>Weight</td><td>30 Lbs</td></tr></tbody></table></figure><ul><li><strong>Made in Canada</strong></li><li><strong>Tough Steel</strong></li><li><strong>Ergonomic Design</strong></li></ul>\",\n            \"number\": \"RFOF-8052\",\n            \"sellpack_height\": \"9\\\"\",\n            \"yboe_iic\": null,\n            \"sohd_nsf_specifications\": null,\n            \"warranty\": \"1 Year\",\n            \"yboe_repair_policy\": null,\n            \"sohd_brand_type\": null,\n            \"additional_images\": null,\n            \"sohd_epa_compliant\": null,\n            \"yboe_grainger_part_number\": \"1AD3433\",\n            \"yboe_feature_benefit_6\": null,\n            \"yboe_explosive\": \"Yes\",\n            \"master_pack_qty\": \"4\",\n            \"yboe_material_type\": \"Steel\",\n            \"upc\": null,\n            \"yboe_packaged_asset\": null,\n            \"yboe_map_price\": null,\n            \"twql_inner_pack_height\": null,\n            \"zhz_material\": null,\n            \"yboe_minimum_illumination\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"twql_sku\": \"RFOF-8052\",\n            \"yboe_masterpack_length\": \"48\\\"\",\n            \"status\": \"Active\",\n            \"sohd_brand_names\": null,\n            \"yboe_storage\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_seat_dimensions\": null,\n            \"yboe_maximum_operating_temperature\": null,\n            \"yboe_base_material\": null,\n            \"yboe_drawers_included\": null,\n            \"yboe_burner\": null,\n            \"yboe_life_stage_2\": null,\n            \"yboe_mkt_comp\": \"0\",\n            \"yboe_dcon_connection_diameter_decimal_inch\": null,\n            \"yboe_shelves_included\": null,\n            \"yboe_sellpack_height\": \"9\\\"\",\n            \"sohd_maximum_pressure\": null,\n            \"muko_weight\": null,\n            \"parent_sku\": \"RFOF-8052\",\n            \"sohd_ansi_specifications\": null,\n            \"yboe_pilot_diameter_decimal_inch\": null,\n            \"sohd_item_class\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_asse_standards\": null,\n            \"muko_height\": null,\n            \"coverage_level\": null,\n            \"yboe_complementary_products\": null,\n            \"mkt_comp\": \"0\",\n            \"yboe_extra_long_name_for_website\": null,\n            \"yboe_fuel\": null,\n            \"sohd_size\": null,\n            \"yboe_seat_height_from_floor\": null,\n            \"sohd_colorfinish\": null,\n            \"sohd_length\": null,\n            \"twql_ship_pack_desc\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"sohd_submittals_asset_file_name\": null,\n            \"sohd_scaqmd_compliant\": null,\n            \"yboe_rated_voltage_v\": null,\n            \"sohd_mfgsupplier_name_id\": null,\n            \"keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"benefit_6\": null,\n            \"benefit_4\": \"Easily stackable with removable handle\",\n            \"benefit_5\": \"Made in USA\",\n            \"benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"benefit_3\": \"Light and portable\",\n            \"sohd_bulb_type\": null,\n            \"sohd_lifestyle_image_file_name\": null,\n            \"benefit_1\": \"Made with high quality steel\",\n            \"yboe_rated_current_a\": null,\n            \"sohd_energy_guide_file_name\": null,\n            \"yboe_efficiency\": null,\n            \"twql_ship_pack_length\": null,\n            \"yboe_sell_pack_desc\": \"Each\",\n            \"customer_part_number\": null,\n            \"yboe_insert_holding_method\": null,\n            \"yboe_spec_sheet\": null,\n            \"yboe_environmental_rating\": null,\n            \"yboe_used_with\": [\n                \"20023094\"\n            ],\n            \"extra_long_name_for_website\": null,\n            \"sohd_awwa_specifications\": null,\n            \"yboe_supplier_stock_no\": \"8221291\",\n            \"yboe_long_name_for_ebay\": null,\n            \"sohd_fitting_size_1\": null,\n            \"sohd_gender\": null,\n            \"yboe_image_url\": null,\n            \"sohd_carbotcleed_compliant\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8052\",\n            \"sohd_optional_accessory\": null,\n            \"sohd_baa_compliant\": null,\n            \"sohd_top_view_image_file_name\": null,\n            \"yboe_pan_speed\": null,\n            \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_customer_part_number\": null,\n            \"color_option\": \"Garden Green\",\n            \"twql_sell_pack_weight\": \"50 lbs\",\n            \"twql_sell_pack_width\": \"18\\\"\",\n            \"sohd_required_accessory\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"sohd_reusable\": null,\n            \"yboe_country_of_origin\": \"China\",\n            \"yboe_max_resolution\": null,\n            \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n            \"yboe_color_multi\": null,\n            \"sohd_upc\": null,\n            \"master_pack_desc\": \"Pack of 4\",\n            \"sohd_asme_specifications\": null,\n            \"sohd_csa_certified\": null,\n            \"sohd_sku_image_notes\": null,\n            \"sohd_coating\": null,\n            \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n            \"yboe_arm_height_from_floor\": null,\n            \"yboe_safety_data_sheet\": null,\n            \"application\": null,\n            \"sohd_brand_model_compatibility\": null,\n            \"coverage_description_pt\": null,\n            \"yboe_product_type\": [\n                \"recicompressors\"\n            ],\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"3 Stage\",\n            \"warranty_language\": \"Manufacturer Defects Only\",\n            \"yboe_product_dimensions_w_x_d_x_h\": null,\n            \"sell_pack_desc\": \"Each\",\n            \"sohd_mfg_product_number\": \"RFOF-8052\",\n            \"yboe_additional_images\": null,\n            \"sohd_etl_listed\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"yboe_name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"map_price\": null,\n            \"yboe_seat_number\": null,\n            \"yboe_top_metal_finish_application\": null,\n            \"yboe_color_option\": \"Garden Green\",\n            \"sale_active\": \"Yes\",\n            \"yboe_toy_color\": null,\n            \"yboe_contact_configuration\": null,\n            \"brand\": \"RedDot\",\n            \"yboe_lu_maximum_counterbore_depth_mm\": null,\n            \"height\": null,\n            \"sohd_installation_instructions_file\": null,\n            \"yboe_msrp\": \"$349\",\n            \"sohd_indoor_outdoor\": null,\n            \"yboe_back_dimensions\": null,\n            \"sohd_maximum_temperature\": null,\n            \"coverage_description_it\": null,\n            \"sohd_back_view_image_file_name\": null,\n            \"safety_data_sheet\": null,\n            \"yboe_cost_string\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"yboe_dcon_connection_diameter_mm\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"yboe_side_image\": null,\n            \"yboe_case_pack_packaging_description\": null,\n            \"yboe_te\": null,\n            \"assembly_instructions\": null,\n            \"yboe_accessory_product\": null,\n            \"twql_name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"case_pack_weight\": null,\n            \"twql_master_pack_width\": \"36\\\"\",\n            \"yboe_product_type_1\": \"Waste Basket\",\n            \"sell_pack_qty\": \"1\",\n            \"yboe_number_of_shelves\": null,\n            \"twql_ship_pack_width\": null,\n            \"yboe_case_pack_weight\": null,\n            \"sohd_bottom_view_image_file_name\": null,\n            \"sohd_warranty_file_name\": null,\n            \"yboe_gtin\": \"013212121113\",\n            \"vendor\": null,\n            \"msrp\": \"$349\",\n            \"yboe_ebc_amazon\": null,\n            \"sohd_parts_breakdown_file\": null,\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"sohd_gauge\": null,\n            \"yboe_weight_capacity\": null,\n            \"sohd_phase\": null,\n            \"sohd_features_benefits_10\": null,\n            \"case_pack_width\": null,\n            \"sohd_spare_part_product_reference\": null,\n            \"yboe_sellpack_width\": \"18\\\"\",\n            \"sohd_thickness\": null,\n            \"yboe_aperture\": null,\n            \"sale_price\": null,\n            \"sohd_linebuy_id\": null,\n            \"yboe_benefit_5\": \"Made in USA\",\n            \"yboe_benefit_4\": \"Easily stackable with removable handle\",\n            \"twql_material\": null,\n            \"yboe_benefit_6\": null,\n            \"yboe_benefit_1\": \"Made with high quality steel\",\n            \"yboe_benefit_3\": \"Light and portable\",\n            \"yboe_salesforce_id\": null,\n            \"yboe_benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"yboe_head_length\": null,\n            \"yboe_dc_cutting_diameter_decimal_inch\": null,\n            \"sohd_clothing_size\": null,\n            \"yrfa_price\": \"999\",\n            \"yboe_lighted\": null,\n            \"yboe_tarriff\": null,\n            \"yboe_insert_style\": null,\n            \"twql_sell_pack_desc\": \"Each\",\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"yboe_max_screw_diameter_compatibility_mm\": null,\n            \"sohd_material\": null,\n            \"yboe_number_of_flutes\": null,\n            \"yboe_protein\": null,\n            \"supplier_stock_no\": \"8221291\",\n            \"sohd_battery_type\": null,\n            \"twql_master_pack_length\": \"48\\\"\",\n            \"coverage_description_es\": null,\n            \"yboe_autoiris\": null,\n            \"repair_policy\": null,\n            \"yboe_ship_pack_qty\": null,\n            \"coverage_description_en\": null,\n            \"twql_sell_pack_height\": \"9\\\"\",\n            \"product_type_1\": \"Waste Basket\",\n            \"sohd_vendor_logo\": null,\n            \"flammable\": \"No\",\n            \"name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"grip_length\": null,\n            \"sohd_step_id\": null,\n            \"yboe_battery_capacity\": null,\n            \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"psi\": \"120 PSI\",\n            \"yboe_installation_partners\": \"Greenlee Conduit\",\n            \"video\": null,\n            \"poisonous\": null,\n            \"sohd_smart_home_enabled\": null,\n            \"sohd_osha_specifications\": null,\n            \"yboe_accessory_size\": null,\n            \"sohd_automatic_shutoff\": null,\n            \"yboe_compatible_insert_hand\": null,\n            \"gtin\": \"013212121113\",\n            \"sohd_nema_specifications\": null,\n            \"yboe_marking_code\": null,\n            \"yboe_top_materials_details\": null,\n            \"yboe_customer\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"yboe_keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"prop_65_compliant\": \"Yes\",\n            \"yboe_sell_sheet\": null,\n            \"yboe_ratings_information\": null,\n            \"publish_to_b2b_website\": \"Yes\",\n            \"yboe_warp_resistent\": null,\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"twql_ship_pack_qty\": null,\n            \"amps\": null,\n            \"yboe_main_image\": \"4070863028\",\n            \"avg_hours\": null,\n            \"yboe_prop_65_compliant\": \"Yes\",\n            \"yboe_purchasing_completeness\": \"50\",\n            \"yboe_regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 18\n            },\n            \"sohd_volts\": null,\n            \"yboe_case_pack_quantity\": null,\n            \"yboe_cutting_edge_length\": null,\n            \"yboe_warranty_language\": \"Manufacturer Defects Only\",\n            \"sohd_energy_star_compliant\": null,\n            \"input_voltage\": \"110 V\",\n            \"prop_65_warning\": \"No cancer causing chemicals\",\n            \"sohd_use_and_care_file\": null,\n            \"inner_pack_height\": null,\n            \"ship_pack_qty\": null,\n            \"yboe_min_screw_diameter_compatibility_mm\": null,\n            \"sohd_end_connection_2\": null,\n            \"sohd_end_connection_1\": null,\n            \"yboe_master_pack_qty\": \"4\",\n            \"multi_category\": null,\n            \"sohd_iapmo_listed\": null,\n            \"sohd_tool_type\": null,\n            \"yboe_ship_pack_width\": null,\n            \"yboe_model\": null,\n            \"yboe_life_stage\": null,\n            \"ship_pack_width\": null,\n            \"yboe_upc\": null,\n            \"yboe_supplier\": null,\n            \"yboe_tilt_range\": null,\n            \"sohd_glove_size\": null,\n            \"sohd_origin\": null,\n            \"yboe_wiring_capacity_phase_contacts\": null,\n            \"muko_title\": null,\n            \"twql_master_pack_height\": \"30\\\"\",\n            \"yboe_image_2\": \"4070863023\",\n            \"yboe_image_3\": null,\n            \"sohd_gsa_approved\": null,\n            \"sohd_ada_compliant\": null,\n            \"sohd_material_type\": null,\n            \"yboe_prop_65_warning\": \"No cancer causing chemicals\",\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"yboe_ship_pack_length\": null,\n            \"yboe_inner_pack_length\": null,\n            \"selling_weight\": \"50 lbs\",\n            \"yboe_iic_multiple_approvals\": null,\n            \"yboe_minimum_operating_temperature\": null,\n            \"yboe_recommended_products\": null,\n            \"sohd_diameter\": null,\n            \"yboe_back_image\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"yboe_rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><strong>Product Dimensional Chart</strong></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr><tr><td>Weight</td><td>30 Lbs</td></tr></tbody></table></figure><ul><li><strong>Made in Canada</strong></li><li><strong>Tough Steel</strong></li><li><strong>Ergonomic Design</strong></li></ul>\",\n            \"yboe_base_drawing_number\": null,\n            \"yboe_shank_type\": null,\n            \"twql_sell_pack_length\": \"18\\\"\",\n            \"sohd_ma_approved\": null,\n            \"yboe_focal_length\": null,\n            \"sohd_features_benefits_06\": null,\n            \"sohd_features_benefits_07\": null,\n            \"sohd_features_benefits_04\": null,\n            \"sohd_features_benefits_05\": null,\n            \"sohd_features_benefits_02\": null,\n            \"sohd_features_benefits_03\": null,\n            \"sohd_features_benefits_01\": null,\n            \"tank_capacity\": null,\n            \"twql_master_pack_weight\": \"300 lbs\",\n            \"sohd_product_short_description\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"video_2\": null,\n            \"yboe_ship_pack_height\": null,\n            \"sohd_includes\": null,\n            \"case_pack_height\": null,\n            \"sohd_features_benefits_08\": null,\n            \"sohd_features_benefits_09\": null,\n            \"yboe_lf_functional_length_mm\": null,\n            \"inside_diameter\": \"45\",\n            \"marketplace_category\": null,\n            \"yboe_care_wash_and_usage_instructions\": null,\n            \"yboe_case_pack_length\": null,\n            \"sohd_cable_or_wire_type\": null,\n            \"yboe_brand_name\": null,\n            \"muko_item_id\": \"RFOF-8052\",\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"yboe_manufacturer_list\": null,\n            \"sohd_astm_specifications\": null,\n            \"long_name_for_ebay\": null,\n            \"spec_sheet\": null,\n            \"yboe_compatible_inserts_full\": null,\n            \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"yboe_case_pack_height\": null,\n            \"yboe_sale_active\": \"Yes\",\n            \"yboe_warranty\": \"1 Year\",\n            \"sohd_specification_file\": null,\n            \"yboe_generated_description\": null,\n            \"regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 15\n            },\n            \"yboe_inner_pack_height\": null,\n            \"yboe_remote_control\": null,\n            \"sohd_vendor_brand_logo\": null,\n            \"priority_accessories\": null,\n            \"sohd_package_quantity\": null,\n            \"yboe_action_shot\": null,\n            \"yboe_exchange_policy\": null,\n            \"orientation\": null,\n            \"cost\": {\n                \"currency\": \"USD\",\n                \"amount\": 90\n            },\n            \"yboe_coolant_through_yesno\": null,\n            \"yboe_case_pack_width\": null,\n            \"twql_hero_image\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"yboe_application\": null,\n            \"sohd_product_number_sku\": \"RFOF-8052\",\n            \"yboe_brand\": \"RedDot\",\n            \"twql_ship_pack_weight\": null,\n            \"sohd_width\": null,\n            \"sohd_temperature_range\": null,\n            \"marking_code\": null,\n            \"sohd_oracle_item_class_ref_classification_reference\": null,\n            \"yboe_image_sensor\": null,\n            \"yboe_shutter_time\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"sohd_depth\": null,\n            \"sohd_lighting_facts_asset_file_name\": null\n        },\n        {\n            \"id\": 17412007,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1743511313208,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676855,\n                4004677654,\n                4004680228\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"tools\": 100,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"yboe_ship_pack_desc\": null,\n            \"yboe_peak_decibels\": null,\n            \"explosive\": \"Yes\",\n            \"warranty_language\": \"Defects Only\",\n            \"yboe_product_dimensions_w_x_d_x_h\": null,\n            \"sell_pack_desc\": \"Each\",\n            \"yboe_compatible_inserts_partial\": null,\n            \"yboe_selling_length\": \"18\\\"\",\n            \"yboe_additional_images\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"yboe_name\": \"RedDot Oil-Free Air Compressor\",\n            \"map_price\": null,\n            \"yboe_seat_number\": null,\n            \"yboe_max_pressure\": null,\n            \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n            \"yboe_masterpack_height\": \"30\\\"\",\n            \"coverage_length\": null,\n            \"yboe_top_material\": null,\n            \"yboe_top_metal_finish_application\": null,\n            \"grainger_part_number\": \"1AD3433\",\n            \"yboe_color_option\": \"Green\",\n            \"sale_active\": \"Yes\",\n            \"yboe_test\": null,\n            \"yboe_toy_color\": null,\n            \"yboe_contact_configuration\": null,\n            \"brand\": \"RedDot\",\n            \"yboe_lu_maximum_counterbore_depth_mm\": null,\n            \"yboe_pantiltzoom_functionalities\": null,\n            \"height\": null,\n            \"yboe_website\": null,\n            \"yboe_screw_type_compatibility\": null,\n            \"yboe_msrp\": \"3000\",\n            \"yboe_unit_inchmm\": null,\n            \"yboe_back_dimensions\": null,\n            \"country_of_origin\": \"China\",\n            \"hazardous\": \"Yes\",\n            \"yboe_ship_pack_weight\": null,\n            \"yboe_hand\": null,\n            \"coverage_description_it\": null,\n            \"safety_data_sheet\": null,\n            \"yboe_cost_string\": null,\n            \"case_pack_upcean\": null,\n            \"yboe_delta\": null,\n            \"yboe_stc\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"yboe_heat_capacity\": null,\n            \"yboe_inner_pack_weight\": \"60 lbs\",\n            \"yboe_dcon_connection_diameter_mm\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"main_material\": null,\n            \"yboe_side_image\": null,\n            \"ship_pack_weight\": null,\n            \"yboe_case_pack_packaging_description\": null,\n            \"yboe_pan_range\": null,\n            \"auto_linked_image\": null,\n            \"yboe_te\": null,\n            \"assembly_instructions\": null,\n            \"yboe_accessory_product\": null,\n            \"yboe_case_pack_upcean\": null,\n            \"case_pack_weight\": null,\n            \"yboe_inner_pack_width\": null,\n            \"sell_pack_qty\": \"1\",\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"yboe_product_type_1\": null,\n            \"yboe_number_of_shelves\": null,\n            \"yboe_case_pack_weight\": null,\n            \"generate_technical_attributes\": null,\n            \"yboe_tilt_speed\": null,\n            \"yboe_asin\": \"32BH232H1\",\n            \"vendor\": null,\n            \"yboe_gtin\": null,\n            \"msrp\": \"3000\",\n            \"yboe_ebc_amazon\": null,\n            \"yboe_flammable\": \"Yes\",\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_weight_capacity\": null,\n            \"website\": null,\n            \"case_pack_width\": null,\n            \"yboe_masterpack_weight\": \"300 lbs\",\n            \"yboe_status\": \"Active\",\n            \"yboe_sellpack_width\": \"18\\\"\",\n            \"yboe_grade\": \"D\",\n            \"yboe_aperture\": null,\n            \"list_price\": null,\n            \"sale_price\": null,\n            \"yrfa_uom\": null,\n            \"yboe_benefit_5\": \"Made in USA\",\n            \"yboe_master_code\": null,\n            \"yboe_benefit_4\": \"Easily stackable with removable handle\",\n            \"yboe_benefit_6\": null,\n            \"yboe_benefit_1\": \"Made with high quality steel\",\n            \"yboe_btu\": null,\n            \"yboe_benefit_3\": \"Light and portable\",\n            \"yboe_impact_rating\": null,\n            \"yboe_salesforce_id\": null,\n            \"yboe_benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"yboe_parent_sku\": \"RFOF-8052\",\n            \"yboe_head_length\": null,\n            \"yboe_weldon_flat\": null,\n            \"yboe_dc_cutting_diameter_decimal_inch\": null,\n            \"tank_size\": \"50 Gal\",\n            \"yrfa_price\": \"999\",\n            \"yboe_country_of_origin_old\": null,\n            \"yboe_lighted\": null,\n            \"yboe_appliance_input\": null,\n            \"yboe_tarriff\": null,\n            \"yboe_insert_style\": null,\n            \"ship_pack_height\": null,\n            \"yboe_master_pack_desc\": \"Pack of 4\",\n            \"computed_price\": null,\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"yboe_max_screw_diameter_compatibility_mm\": null,\n            \"yboe_assembly_instructions\": null,\n            \"yboe_iic_approvals\": null,\n            \"yboe_sell_pack_qty\": \"1\",\n            \"yboe_dmpicklista\": null,\n            \"yboe_number_of_flutes\": null,\n            \"ship_pack_length\": null,\n            \"yboe_protein\": null,\n            \"supplier_stock_no\": \"8221295\",\n            \"yrfa_super_extral_long_desc\": null,\n            \"coverage_description_es\": null,\n            \"yboe_autoiris\": null,\n            \"yboe_product_color\": null,\n            \"repair_policy\": null,\n            \"yboe_ship_pack_qty\": null,\n            \"yboe_poisonous\": null,\n            \"yboe_dc_cutting_diameter_mm\": null,\n            \"coverage_description_en\": null,\n            \"yboe_pilot_diameter_mm\": null,\n            \"yboe_vendor\": null,\n            \"product_type_1\": null,\n            \"yboe_base_material_details\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"yboe_google_keywords\": null,\n            \"yboe_shcs_size\": null,\n            \"flammable\": \"Yes\",\n            \"grip_length\": \"12\",\n            \"name\": \"RedDot Oil-Free Air Compressor\",\n            \"yboe_masterpack_width\": \"36\\\"\",\n            \"yboe_supplier_intended_and_approved_use\": null,\n            \"yboe_battery_capacity\": null,\n            \"tank_style\": \"Horizontal\",\n            \"yboe_certification_date\": null,\n            \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_selling_weight\": \"50 lbs\",\n            \"main_image\": \"4070863028\",\n            \"psi\": \"120 PSI\",\n            \"yboe_installation_partners\": \"Greenlee Conduit\",\n            \"action_photo\": null,\n            \"yboe_pilot_type\": null,\n            \"lifestyle_image\": null,\n            \"video\": null,\n            \"poisonous\": null,\n            \"yboe_number_of_inserts\": null,\n            \"yboe_gender\": null,\n            \"material_type\": \"Steel\",\n            \"muko_length\": null,\n            \"purchasing_completeness\": \"50\",\n            \"yboe_field_of_view\": null,\n            \"yboe_accessory_size\": null,\n            \"yboe_publish_to_b2b_website\": \"Yes\",\n            \"yboe_pump_location\": null,\n            \"accessory_product\": null,\n            \"yboe_compatible_insert_hand\": null,\n            \"case_pack_quantity\": null,\n            \"gtin\": null,\n            \"yboe_toolholder_style\": null,\n            \"yboe_category\": \"Tools > Power Tools > Compressors\",\n            \"inner_pack_width\": null,\n            \"yboe_marking_code\": null,\n            \"ship_pack_desc\": null,\n            \"yboe_top_materials_details\": null,\n            \"yboe_customer\": null,\n            \"yboe_dfdfdfd\": null,\n            \"yboe_top_manufactured_wood_type\": null,\n            \"yboe_horse_power\": null,\n            \"yboe_secondary_category\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"selling_length\": \"18\\\"\",\n            \"yboe_lens_type\": null,\n            \"yboe_keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"yboe_attribute_1\": null,\n            \"yboe_attribute_2\": null,\n            \"prop_65_compliant\": \"Yes\",\n            \"yboe_sell_sheet\": null,\n            \"yboe_ratings_information\": null,\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"publish_to_b2b_website\": \"Yes\",\n            \"yboe_warp_resistent\": null,\n            \"yboe_companywebsite\": null,\n            \"asin\": \"32BH232H1\",\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"amps\": null,\n            \"generated_description\": null,\n            \"yboe_components\": null,\n            \"avg_hours\": \"12\",\n            \"yboe_main_image\": \"4070863028\",\n            \"action_shot\": null,\n            \"yboe_prop_65_compliant\": \"Yes\",\n            \"yboe_purchasing_completeness\": \"50\",\n            \"yboe_lifestyle_image\": null,\n            \"yboe_hazardous\": \"Yes\",\n            \"yboe_regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 18\n            },\n            \"yboe_case_pack_quantity\": null,\n            \"yboe_action_photo\": null,\n            \"yboe_cutting_edge_length\": null,\n            \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><i><strong>This is html and being used to present rich information.</strong></i></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr></tbody></table></figure>\",\n            \"number\": \"RFOF-8058\",\n            \"sellpack_height\": \"9\\\"\",\n            \"yboe_warranty_language\": \"Defects Only\",\n            \"yboe_iic\": null,\n            \"warranty\": \"5 Year\",\n            \"yboe_repair_policy\": null,\n            \"input_voltage\": \"110 V\",\n            \"prop_65_warning\": null,\n            \"additional_images\": null,\n            \"inner_pack_height\": null,\n            \"yboe_grainger_part_number\": \"1AD3433\",\n            \"yboe_feature_benefit_6\": null,\n            \"yboe_explosive\": \"Yes\",\n            \"master_pack_qty\": \"4\",\n            \"yboe_material_type\": \"Steel\",\n            \"ship_pack_qty\": null,\n            \"upc\": null,\n            \"yboe_min_screw_diameter_compatibility_mm\": null,\n            \"yboe_packaged_asset\": null,\n            \"yboe_map_price\": null,\n            \"yboe_master_pack_qty\": \"4\",\n            \"multi_category\": null,\n            \"zhz_material\": null,\n            \"yboe_ship_pack_width\": null,\n            \"yboe_minimum_illumination\": null,\n            \"yboe_model\": null,\n            \"yboe_life_stage\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"ship_pack_width\": null,\n            \"yboe_masterpack_length\": \"48\\\"\",\n            \"status\": \"Active\",\n            \"yboe_upc\": null,\n            \"yboe_supplier\": null,\n            \"yboe_storage\": null,\n            \"yboe_tilt_range\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_seat_dimensions\": null,\n            \"yboe_maximum_operating_temperature\": null,\n            \"yboe_wiring_capacity_phase_contacts\": null,\n            \"muko_title\": null,\n            \"yboe_base_material\": null,\n            \"yboe_image_2\": \"4070863023\",\n            \"yboe_image_3\": null,\n            \"yboe_drawers_included\": null,\n            \"yboe_burner\": null,\n            \"yboe_life_stage_2\": null,\n            \"yboe_mkt_comp\": \"0\",\n            \"yboe_dcon_connection_diameter_decimal_inch\": null,\n            \"yboe_shelves_included\": null,\n            \"yboe_sellpack_height\": \"9\\\"\",\n            \"yboe_prop_65_warning\": null,\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"yboe_ship_pack_length\": null,\n            \"yboe_inner_pack_length\": null,\n            \"muko_weight\": null,\n            \"selling_weight\": \"50 lbs\",\n            \"parent_sku\": \"RFOF-8052\",\n            \"yboe_pilot_diameter_decimal_inch\": null,\n            \"yboe_iic_multiple_approvals\": null,\n            \"yboe_minimum_operating_temperature\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"muko_height\": null,\n            \"coverage_level\": null,\n            \"yboe_complementary_products\": null,\n            \"yboe_recommended_products\": null,\n            \"mkt_comp\": \"0\",\n            \"yboe_back_image\": null,\n            \"yboe_extra_long_name_for_website\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"yboe_rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\"><i><strong>This is html and being used to present rich information.</strong></i></span></p><figure class=\\\"table\\\"><table><tbody><tr><td>Depth</td><td>64 Inches</td></tr><tr><td>Height</td><td>44 Inches</td></tr><tr><td>Length</td><td>12 Inches</td></tr></tbody></table></figure>\",\n            \"yboe_fuel\": null,\n            \"yboe_seat_height_from_floor\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"yboe_base_drawing_number\": null,\n            \"yboe_shank_type\": null,\n            \"yboe_focal_length\": null,\n            \"yboe_rated_voltage_v\": null,\n            \"keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"benefit_6\": null,\n            \"tank_capacity\": null,\n            \"benefit_4\": \"Easily stackable with removable handle\",\n            \"video_2\": null,\n            \"yboe_ship_pack_height\": null,\n            \"benefit_5\": \"Made in USA\",\n            \"benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"case_pack_height\": null,\n            \"benefit_3\": \"Light and portable\",\n            \"benefit_1\": \"Made with high quality steel\",\n            \"yboe_lf_functional_length_mm\": null,\n            \"yboe_rated_current_a\": null,\n            \"inside_diameter\": \"45\",\n            \"yboe_efficiency\": null,\n            \"yboe_sell_pack_desc\": \"Each\",\n            \"marketplace_category\": null,\n            \"yboe_care_wash_and_usage_instructions\": null,\n            \"yboe_case_pack_length\": null,\n            \"customer_part_number\": null,\n            \"yboe_insert_holding_method\": null,\n            \"yboe_brand_name\": null,\n            \"yboe_spec_sheet\": null,\n            \"muko_item_id\": \"RFOF-8058\",\n            \"yboe_environmental_rating\": null,\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"yboe_manufacturer_list\": null,\n            \"yboe_used_with\": [\n                \"20023094\"\n            ],\n            \"long_name_for_ebay\": null,\n            \"extra_long_name_for_website\": null,\n            \"spec_sheet\": null,\n            \"yboe_supplier_stock_no\": \"8221295\",\n            \"yboe_compatible_inserts_full\": null,\n            \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"yboe_case_pack_height\": null,\n            \"yboe_sale_active\": \"Yes\",\n            \"yboe_warranty\": \"5 Year\",\n            \"yboe_long_name_for_ebay\": null,\n            \"yboe_image_url\": null,\n            \"yboe_generated_description\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8058\",\n            \"regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 15\n            },\n            \"yboe_pan_speed\": null,\n            \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_customer_part_number\": null,\n            \"yboe_inner_pack_height\": null,\n            \"color_option\": \"Green\",\n            \"yboe_remote_control\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"priority_accessories\": null,\n            \"yboe_country_of_origin\": \"China\",\n            \"yboe_action_shot\": null,\n            \"yboe_max_resolution\": null,\n            \"yboe_exchange_policy\": null,\n            \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n            \"yboe_color_multi\": null,\n            \"orientation\": null,\n            \"cost\": {\n                \"currency\": \"USD\",\n                \"amount\": 50\n            },\n            \"master_pack_desc\": \"Pack of 4\",\n            \"yboe_coolant_through_yesno\": null,\n            \"yboe_case_pack_width\": null,\n            \"yboe_application\": null,\n            \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n            \"yboe_brand\": \"RedDot\",\n            \"yboe_arm_height_from_floor\": null,\n            \"yboe_safety_data_sheet\": null,\n            \"application\": null,\n            \"coverage_description_pt\": null,\n            \"yboe_product_type\": [\n                \"recicompressors\"\n            ],\n            \"marking_code\": null,\n            \"yboe_image_sensor\": null,\n            \"yboe_shutter_time\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"4 Stage\"\n        },\n        {\n            \"id\": 17412004,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676855,\n                4004677654,\n                4004680318\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"yboe_ad_export_annual\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"yboe_ship_pack_desc\": null,\n            \"yboe_peak_decibels\": null,\n            \"explosive\": null,\n            \"yboe_compatible_inserts_partial\": null,\n            \"yboe_selling_length\": \"18\\\"\",\n            \"yboe_max_pressure\": null,\n            \"yboe_min_screw_diameter_compatibility_decimal_inch\": null,\n            \"sohd_height\": null,\n            \"yboe_masterpack_height\": \"30\\\"\",\n            \"coverage_length\": null,\n            \"sohd_iso_specifications\": null,\n            \"yboe_top_material\": null,\n            \"grainger_part_number\": \"32FSFD11\",\n            \"yboe_test\": null,\n            \"yboe_pantiltzoom_functionalities\": null,\n            \"yboe_website\": null,\n            \"yboe_screw_type_compatibility\": null,\n            \"sohd_power_source\": null,\n            \"yboe_unit_inchmm\": null,\n            \"country_of_origin\": \"China\",\n            \"hazardous\": \"No\",\n            \"sohd_cad_drawings_file_name\": null,\n            \"yboe_ship_pack_weight\": null,\n            \"yboe_hand\": null,\n            \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"sohd_scheduleclass\": null,\n            \"case_pack_upcean\": null,\n            \"yboe_delta\": null,\n            \"yboe_stc\": null,\n            \"yboe_heat_capacity\": null,\n            \"yboe_inner_pack_weight\": \"60 lbs\",\n            \"sohd_left_view_image_file_name\": null,\n            \"main_material\": null,\n            \"ship_pack_weight\": null,\n            \"yboe_pan_range\": null,\n            \"auto_linked_image\": null,\n            \"yboe_case_pack_upcean\": null,\n            \"yboe_inner_pack_width\": null,\n            \"sohd_temperature_rating\": null,\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"sohd_cord_length\": null,\n            \"generate_technical_attributes\": null,\n            \"yboe_tilt_speed\": null,\n            \"yboe_asin\": \"ABFDSDSD2\",\n            \"yboe_flammable\": null,\n            \"yboe_short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_disposable\": null,\n            \"website\": null,\n            \"sohd_niosh_specifications\": null,\n            \"yboe_masterpack_weight\": \"300 lbs\",\n            \"yboe_status\": \"Active\",\n            \"yboe_grade\": \"D\",\n            \"list_price\": \"$3150\",\n            \"sohd_application\": null,\n            \"yrfa_uom\": null,\n            \"sohd_nsf_certified\": null,\n            \"yboe_master_code\": null,\n            \"sohd_right_view_image_file_name\": null,\n            \"yboe_btu\": null,\n            \"yboe_impact_rating\": null,\n            \"yboe_parent_sku\": \"RFOF-8052\",\n            \"sohd_wire_gauge\": null,\n            \"yboe_weldon_flat\": null,\n            \"sohd_amp\": null,\n            \"sohd_product_type\": null,\n            \"tank_size\": \"40 gal\",\n            \"yboe_country_of_origin_old\": null,\n            \"yboe_appliance_input\": null,\n            \"sohd_installation_type\": null,\n            \"sohd_fm_approved\": null,\n            \"ship_pack_height\": null,\n            \"yboe_master_pack_desc\": \"Pack of 4\",\n            \"sohd_collection\": null,\n            \"computed_price\": null,\n            \"yboe_assembly_instructions\": null,\n            \"sohd_glove_type\": null,\n            \"yboe_iic_approvals\": null,\n            \"yboe_sell_pack_qty\": \"1\",\n            \"yboe_dmpicklista\": null,\n            \"ship_pack_length\": null,\n            \"yrfa_super_extral_long_desc\": null,\n            \"sohd_mss_specifications\": null,\n            \"yboe_product_color\": null,\n            \"sohd_weight\": null,\n            \"yboe_poisonous\": null,\n            \"yboe_dc_cutting_diameter_mm\": null,\n            \"sohd_watts\": null,\n            \"yboe_pilot_diameter_mm\": null,\n            \"yboe_vendor\": null,\n            \"yboe_base_material_details\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"yboe_google_keywords\": null,\n            \"yboe_shcs_size\": null,\n            \"yboe_masterpack_width\": \"36\\\"\",\n            \"yboe_supplier_intended_and_approved_use\": null,\n            \"tank_style\": \"Horizontal\",\n            \"yboe_certification_date\": null,\n            \"yboe_selling_weight\": \"50 lbs\",\n            \"main_image\": \"4070863028\",\n            \"action_photo\": null,\n            \"yboe_pilot_type\": null,\n            \"lifestyle_image\": null,\n            \"yboe_number_of_inserts\": null,\n            \"yboe_gender\": null,\n            \"material_type\": \"Steel\",\n            \"sohd_light_bulb_shape_code\": null,\n            \"sohd_alt_product_number\": null,\n            \"purchasing_completeness\": \"25\",\n            \"yboe_field_of_view\": null,\n            \"sohd_x\": null,\n            \"yboe_publish_to_b2b_website\": \"Yes\",\n            \"yboe_pump_location\": null,\n            \"sohd_ce_approved\": null,\n            \"accessory_product\": null,\n            \"sohd_video_asset_reference_id\": null,\n            \"case_pack_quantity\": null,\n            \"yboe_toolholder_style\": null,\n            \"yboe_category\": \"Tools > Power Tools > Compressors\",\n            \"inner_pack_width\": null,\n            \"sohd_x_3\": null,\n            \"sohd_x_2\": null,\n            \"sohd_x_5\": null,\n            \"ship_pack_desc\": null,\n            \"yboe_dfdfdfd\": null,\n            \"sohd_x_4\": null,\n            \"yboe_top_manufactured_wood_type\": null,\n            \"yboe_horse_power\": null,\n            \"yboe_secondary_category\": null,\n            \"selling_length\": \"18\\\"\",\n            \"yboe_lens_type\": null,\n            \"yboe_attribute_1\": null,\n            \"yboe_attribute_2\": null,\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"yboe_companywebsite\": null,\n            \"asin\": \"ABFDSDSD2\",\n            \"sohd_number_of_pieces\": null,\n            \"generated_description\": null,\n            \"yboe_components\": null,\n            \"action_shot\": null,\n            \"yboe_lifestyle_image\": null,\n            \"yboe_hazardous\": \"No\",\n            \"yboe_action_photo\": null,\n            \"sohd_ul_listed\": null,\n            \"rich_description\": \"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All steel </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\">connecting rods</span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.</span><br><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\"><strong>Removable 100% </strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">cast </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(120, 75%, 60%);font-size:15px;\\\"><strong>iron</strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat. This makes competitor pumps good for about a 40-50% duty cycle – while claiming a 100% duty cycle. Most of the pumps with aluminum cylinders have to be replaced in 1-2 years because they would not hold up under heavy use. Not our Air pumps! Our solid cast iron cylinders can “take the heat” and are designed to perform on heavy load demands.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All cast iron cylinder heads. Cast iron heads are more durable and dependable for trouble free operation.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">“Disc valve design” intake and exhaust valves. Disc valves have been around for over 100 years and have been proven to perform. Most of our competitors are using “throw-away” reed valves which are not nearly as durable and can’t be re-built. Our disc valves come right out of the top of the cylinder head where they can be serviced in minutes instead of hours like reed valves.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">Top quality compression and oil rings. Our rings ensure performance with low oil carry over (1-5 PPM).</span></p>\",\n            \"number\": \"RFOF-8053\",\n            \"sellpack_height\": \"9\\\"\",\n            \"yboe_iic\": null,\n            \"sohd_nsf_specifications\": null,\n            \"warranty\": \"2 Year\",\n            \"yboe_repair_policy\": null,\n            \"sohd_brand_type\": null,\n            \"additional_images\": null,\n            \"sohd_epa_compliant\": null,\n            \"yboe_grainger_part_number\": \"32FSFD11\",\n            \"yboe_feature_benefit_6\": null,\n            \"yboe_explosive\": null,\n            \"master_pack_qty\": \"4\",\n            \"yboe_material_type\": \"Steel\",\n            \"upc\": null,\n            \"yboe_packaged_asset\": null,\n            \"yboe_map_price\": null,\n            \"zhz_material\": null,\n            \"yboe_minimum_illumination\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"yboe_masterpack_length\": \"48\\\"\",\n            \"status\": \"Active\",\n            \"sohd_brand_names\": null,\n            \"yboe_storage\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"yboe_seat_dimensions\": null,\n            \"yboe_maximum_operating_temperature\": null,\n            \"yboe_base_material\": null,\n            \"yboe_drawers_included\": null,\n            \"yboe_burner\": null,\n            \"yboe_life_stage_2\": null,\n            \"yboe_mkt_comp\": \"0\",\n            \"yboe_dcon_connection_diameter_decimal_inch\": null,\n            \"yboe_shelves_included\": null,\n            \"yboe_sellpack_height\": \"9\\\"\",\n            \"sohd_maximum_pressure\": null,\n            \"parent_sku\": \"RFOF-8052\",\n            \"sohd_ansi_specifications\": null,\n            \"yboe_pilot_diameter_decimal_inch\": null,\n            \"sohd_item_class\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_asse_standards\": null,\n            \"coverage_level\": null,\n            \"yboe_complementary_products\": null,\n            \"mkt_comp\": \"0\",\n            \"yboe_extra_long_name_for_website\": null,\n            \"yboe_fuel\": null,\n            \"sohd_size\": null,\n            \"yboe_seat_height_from_floor\": null,\n            \"sohd_colorfinish\": null,\n            \"sohd_length\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"sohd_submittals_asset_file_name\": null,\n            \"sohd_scaqmd_compliant\": null,\n            \"yboe_rated_voltage_v\": null,\n            \"sohd_mfgsupplier_name_id\": null,\n            \"keyword_tags\": [\n                \"bulk\",\n                \"movable\",\n                \"yellow\"\n            ],\n            \"benefit_6\": null,\n            \"benefit_4\": \"Removable 100% cast iron cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat.\",\n            \"benefit_5\": \"Made in USA\",\n            \"benefit_2\": \"Our pump also features a precision balanced solid cast iron crankshaft with Timken-Style stainless steel roller bearings on the front and rear of the crankshaft to ensure smooth & efficient operation with less drag and less energy use.\",\n            \"benefit_3\": \"ll steel connecting rods with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.\",\n            \"sohd_bulb_type\": null,\n            \"sohd_lifestyle_image_file_name\": null,\n            \"benefit_1\": \"Made with high quality steel\",\n            \"yboe_rated_current_a\": null,\n            \"sohd_energy_guide_file_name\": null,\n            \"yboe_efficiency\": null,\n            \"yboe_sell_pack_desc\": \"Each\",\n            \"customer_part_number\": \"78493433\",\n            \"yboe_insert_holding_method\": null,\n            \"yboe_spec_sheet\": null,\n            \"yboe_environmental_rating\": null,\n            \"yboe_used_with\": [\n                \"20023094\"\n            ],\n            \"extra_long_name_for_website\": null,\n            \"sohd_awwa_specifications\": null,\n            \"yboe_supplier_stock_no\": \"8221292\",\n            \"yboe_long_name_for_ebay\": null,\n            \"sohd_fitting_size_1\": null,\n            \"sohd_gender\": null,\n            \"yboe_image_url\": null,\n            \"sohd_carbotcleed_compliant\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8053\",\n            \"sohd_optional_accessory\": null,\n            \"sohd_baa_compliant\": null,\n            \"sohd_top_view_image_file_name\": null,\n            \"yboe_pan_speed\": null,\n            \"yboe_customer_part_number\": \"78493433\",\n            \"yboe_long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"color_option\": \"Deep Garnet Red\",\n            \"sohd_required_accessory\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"sohd_reusable\": null,\n            \"yboe_country_of_origin\": \"China\",\n            \"yboe_max_resolution\": null,\n            \"yboe_lu_maximum_counterbore_depth_decimal_inch\": null,\n            \"yboe_color_multi\": null,\n            \"sohd_upc\": null,\n            \"master_pack_desc\": \"Pack of 4\",\n            \"sohd_asme_specifications\": null,\n            \"sohd_csa_certified\": null,\n            \"sohd_sku_image_notes\": null,\n            \"sohd_coating\": null,\n            \"yboe_max_screw_diameter_compatibility_decimal_inch\": null,\n            \"yboe_arm_height_from_floor\": null,\n            \"yboe_safety_data_sheet\": null,\n            \"application\": null,\n            \"sohd_brand_model_compatibility\": null,\n            \"coverage_description_pt\": null,\n            \"yboe_product_type\": [\n                \"recicompressors\"\n            ],\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"3 Stage\",\n            \"warranty_language\": \"English. (Does not cover theft)\",\n            \"yboe_product_dimensions_w_x_d_x_h\": null,\n            \"sell_pack_desc\": \"Each\",\n            \"sohd_mfg_product_number\": \"RFOF-8053\",\n            \"yboe_additional_images\": null,\n            \"sohd_etl_listed\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"yboe_name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n            \"map_price\": null,\n            \"yboe_seat_number\": null,\n            \"yboe_top_metal_finish_application\": null,\n            \"yboe_color_option\": \"Deep Garnet Red\",\n            \"sale_active\": \"Yes\",\n            \"yboe_toy_color\": null,\n            \"yboe_contact_configuration\": null,\n            \"brand\": \"RedDot\",\n            \"yboe_lu_maximum_counterbore_depth_mm\": null,\n            \"sohd_installation_instructions_file\": null,\n            \"yboe_msrp\": \"$3125.00\",\n            \"sohd_indoor_outdoor\": null,\n            \"yboe_back_dimensions\": null,\n            \"sohd_maximum_temperature\": null,\n            \"coverage_description_it\": null,\n            \"sohd_back_view_image_file_name\": null,\n            \"safety_data_sheet\": null,\n            \"yboe_cost_string\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"yboe_dcon_connection_diameter_mm\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"yboe_side_image\": null,\n            \"yboe_case_pack_packaging_description\": null,\n            \"yboe_te\": null,\n            \"assembly_instructions\": null,\n            \"yboe_accessory_product\": null,\n            \"case_pack_weight\": null,\n            \"sell_pack_qty\": \"1\",\n            \"yboe_product_type_1\": null,\n            \"yboe_number_of_shelves\": null,\n            \"yboe_case_pack_weight\": null,\n            \"sohd_bottom_view_image_file_name\": null,\n            \"sohd_warranty_file_name\": null,\n            \"yboe_gtin\": \"0783932932321\",\n            \"vendor\": null,\n            \"msrp\": \"$3125.00\",\n            \"yboe_ebc_amazon\": null,\n            \"sohd_parts_breakdown_file\": null,\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"sohd_gauge\": null,\n            \"yboe_weight_capacity\": null,\n            \"sohd_phase\": null,\n            \"sohd_features_benefits_10\": null,\n            \"case_pack_width\": null,\n            \"sohd_spare_part_product_reference\": null,\n            \"yboe_sellpack_width\": \"18\\\"\",\n            \"sohd_thickness\": null,\n            \"yboe_aperture\": null,\n            \"sale_price\": null,\n            \"sohd_linebuy_id\": null,\n            \"yboe_benefit_5\": \"Made in USA\",\n            \"yboe_benefit_4\": \"Removable 100% cast iron cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat.\",\n            \"yboe_benefit_6\": null,\n            \"yboe_benefit_1\": \"Made with high quality steel\",\n            \"yboe_benefit_3\": \"ll steel connecting rods with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.\",\n            \"yboe_salesforce_id\": null,\n            \"yboe_benefit_2\": \"Our pump also features a precision balanced solid cast iron crankshaft with Timken-Style stainless steel roller bearings on the front and rear of the crankshaft to ensure smooth & efficient operation with less drag and less energy use.\",\n            \"yboe_head_length\": null,\n            \"yboe_dc_cutting_diameter_decimal_inch\": null,\n            \"sohd_clothing_size\": null,\n            \"yrfa_price\": \"999\",\n            \"yboe_lighted\": null,\n            \"yboe_tarriff\": null,\n            \"yboe_insert_style\": null,\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"yboe_max_screw_diameter_compatibility_mm\": null,\n            \"sohd_material\": null,\n            \"yboe_number_of_flutes\": null,\n            \"yboe_protein\": null,\n            \"supplier_stock_no\": \"8221292\",\n            \"sohd_battery_type\": null,\n            \"coverage_description_es\": null,\n            \"yboe_autoiris\": null,\n            \"repair_policy\": null,\n            \"yboe_ship_pack_qty\": null,\n            \"coverage_description_en\": null,\n            \"product_type_1\": null,\n            \"sohd_vendor_logo\": null,\n            \"name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n            \"flammable\": null,\n            \"sohd_step_id\": null,\n            \"yboe_battery_capacity\": null,\n            \"psi\": \"120 PSi\",\n            \"yboe_installation_partners\": \"Greenlee Conduit\",\n            \"video\": null,\n            \"poisonous\": null,\n            \"sohd_smart_home_enabled\": null,\n            \"sohd_osha_specifications\": null,\n            \"yboe_accessory_size\": null,\n            \"sohd_automatic_shutoff\": null,\n            \"yboe_compatible_insert_hand\": null,\n            \"gtin\": \"0783932932321\",\n            \"sohd_nema_specifications\": null,\n            \"yboe_marking_code\": null,\n            \"yboe_top_materials_details\": null,\n            \"yboe_customer\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"yboe_keyword_tags\": [\n                \"bulk\",\n                \"movable\",\n                \"yellow\"\n            ],\n            \"prop_65_compliant\": \"Yes\",\n            \"yboe_sell_sheet\": null,\n            \"yboe_ratings_information\": null,\n            \"publish_to_b2b_website\": \"Yes\",\n            \"yboe_warp_resistent\": null,\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"amps\": null,\n            \"avg_hours\": \"12\",\n            \"yboe_main_image\": \"4070863028\",\n            \"yboe_prop_65_compliant\": \"Yes\",\n            \"yboe_purchasing_completeness\": \"25\",\n            \"yboe_regular_price\": null,\n            \"sohd_volts\": null,\n            \"yboe_case_pack_quantity\": null,\n            \"yboe_cutting_edge_length\": null,\n            \"yboe_warranty_language\": \"English. (Does not cover theft)\",\n            \"sohd_energy_star_compliant\": null,\n            \"input_voltage\": \"110 V\",\n            \"prop_65_warning\": \"N/A\",\n            \"sohd_use_and_care_file\": null,\n            \"inner_pack_height\": null,\n            \"ship_pack_qty\": null,\n            \"yboe_min_screw_diameter_compatibility_mm\": null,\n            \"sohd_end_connection_2\": null,\n            \"sohd_end_connection_1\": null,\n            \"yboe_master_pack_qty\": \"4\",\n            \"multi_category\": null,\n            \"sohd_iapmo_listed\": null,\n            \"sohd_tool_type\": null,\n            \"yboe_ship_pack_width\": null,\n            \"yboe_model\": null,\n            \"yboe_life_stage\": null,\n            \"ship_pack_width\": null,\n            \"yboe_upc\": null,\n            \"yboe_supplier\": null,\n            \"yboe_tilt_range\": null,\n            \"sohd_glove_size\": null,\n            \"sohd_origin\": null,\n            \"yboe_wiring_capacity_phase_contacts\": null,\n            \"yboe_image_2\": \"4070863023\",\n            \"yboe_image_3\": null,\n            \"sohd_gsa_approved\": null,\n            \"sohd_ada_compliant\": null,\n            \"sohd_material_type\": null,\n            \"yboe_prop_65_warning\": \"N/A\",\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"yboe_ship_pack_length\": null,\n            \"yboe_inner_pack_length\": null,\n            \"selling_weight\": \"50 lbs\",\n            \"yboe_iic_multiple_approvals\": null,\n            \"yboe_minimum_operating_temperature\": null,\n            \"yboe_recommended_products\": null,\n            \"sohd_diameter\": null,\n            \"yboe_back_image\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"yboe_rich_description\": \"<p><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All steel </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\">connecting rods</span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> with replaceable rod bearing inserts. This allows our rods to be rebuilt! 99% of our competitors now use “throw-away” aluminum connecting rods in their pumps that have no re-build capability.</span><br><span style=\\\"background-color:rgb(255,255,255);color:hsl(0,75%,60%);font-size:15px;\\\"><strong>Removable 100% </strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">cast </span><span style=\\\"background-color:rgb(255,255,255);color:hsl(120, 75%, 60%);font-size:15px;\\\"><strong>iron</strong></span><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\"> cylinders. These solid cast iron cylinders are more stable under heavy workloads and do not warp from heat. Most of our competitors are using aluminum cylinders with a pressed-in sleeve that warp under extreme heat. This makes competitor pumps good for about a 40-50% duty cycle – while claiming a 100% duty cycle. Most of the pumps with aluminum cylinders have to be replaced in 1-2 years because they would not hold up under heavy use. Not our Air pumps! Our solid cast iron cylinders can “take the heat” and are designed to perform on heavy load demands.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">All cast iron cylinder heads. Cast iron heads are more durable and dependable for trouble free operation.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">“Disc valve design” intake and exhaust valves. Disc valves have been around for over 100 years and have been proven to perform. Most of our competitors are using “throw-away” reed valves which are not nearly as durable and can’t be re-built. Our disc valves come right out of the top of the cylinder head where they can be serviced in minutes instead of hours like reed valves.</span><br><span style=\\\"background-color:rgb(255,255,255);color:rgb(0,0,0);font-size:15px;\\\">Top quality compression and oil rings. Our rings ensure performance with low oil carry over (1-5 PPM).</span></p>\",\n            \"yboe_base_drawing_number\": null,\n            \"yboe_shank_type\": null,\n            \"sohd_ma_approved\": null,\n            \"yboe_focal_length\": null,\n            \"sohd_features_benefits_06\": null,\n            \"sohd_features_benefits_07\": null,\n            \"sohd_features_benefits_04\": null,\n            \"sohd_features_benefits_05\": null,\n            \"sohd_features_benefits_02\": null,\n            \"sohd_features_benefits_03\": null,\n            \"sohd_features_benefits_01\": null,\n            \"tank_capacity\": null,\n            \"sohd_product_short_description\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n            \"video_2\": null,\n            \"yboe_ship_pack_height\": null,\n            \"sohd_includes\": null,\n            \"case_pack_height\": null,\n            \"sohd_features_benefits_08\": null,\n            \"sohd_features_benefits_09\": null,\n            \"yboe_lf_functional_length_mm\": null,\n            \"inside_diameter\": \"45\",\n            \"marketplace_category\": null,\n            \"yboe_care_wash_and_usage_instructions\": null,\n            \"yboe_case_pack_length\": null,\n            \"sohd_cable_or_wire_type\": null,\n            \"yboe_brand_name\": null,\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"yboe_manufacturer_list\": null,\n            \"sohd_astm_specifications\": null,\n            \"long_name_for_ebay\": null,\n            \"spec_sheet\": null,\n            \"yboe_compatible_inserts_full\": null,\n            \"yboe_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"yboe_case_pack_height\": null,\n            \"yboe_sale_active\": \"Yes\",\n            \"yboe_warranty\": \"2 Year\",\n            \"sohd_specification_file\": null,\n            \"yboe_generated_description\": null,\n            \"regular_price\": null,\n            \"yboe_inner_pack_height\": null,\n            \"yboe_remote_control\": null,\n            \"sohd_vendor_brand_logo\": null,\n            \"priority_accessories\": null,\n            \"sohd_package_quantity\": null,\n            \"yboe_action_shot\": null,\n            \"yboe_exchange_policy\": null,\n            \"orientation\": null,\n            \"cost\": {\n                \"currency\": \"USD\",\n                \"amount\": 30\n            },\n            \"yboe_coolant_through_yesno\": null,\n            \"yboe_case_pack_width\": null,\n            \"yboe_application\": null,\n            \"sohd_product_number_sku\": \"RFOF-8053\",\n            \"yboe_brand\": \"RedDot\",\n            \"sohd_width\": null,\n            \"sohd_temperature_range\": null,\n            \"marking_code\": null,\n            \"sohd_oracle_item_class_ref_classification_reference\": null,\n            \"yboe_image_sensor\": null,\n            \"yboe_shutter_time\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"sohd_depth\": null,\n            \"sohd_lighting_facts_asset_file_name\": null\n        },\n        {\n            \"id\": 17412006,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004680228,\n                4004680318\n            ],\n            \"completeness_score\": 77,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"specifications\": 33,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"explosive\": null,\n            \"warranty_language\": \"Defects Only\",\n            \"sell_pack_desc\": \"Each\",\n            \"sohd_mfg_product_number\": \"RFOF-8056\",\n            \"sohd_etl_listed\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"map_price\": null,\n            \"sohd_height\": null,\n            \"coverage_length\": null,\n            \"sohd_iso_specifications\": null,\n            \"grainger_part_number\": \"1AD3433\",\n            \"sale_active\": \"Yes\",\n            \"brand\": null,\n            \"sohd_installation_instructions_file\": null,\n            \"sohd_power_source\": null,\n            \"sohd_indoor_outdoor\": null,\n            \"sohd_maximum_temperature\": null,\n            \"hazardous\": \"Yes\",\n            \"country_of_origin\": null,\n            \"sohd_cad_drawings_file_name\": null,\n            \"coverage_description_it\": null,\n            \"sohd_back_view_image_file_name\": null,\n            \"safety_data_sheet\": null,\n            \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"sohd_scheduleclass\": null,\n            \"case_pack_upcean\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"sohd_left_view_image_file_name\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"main_material\": null,\n            \"ship_pack_weight\": null,\n            \"auto_linked_image\": null,\n            \"assembly_instructions\": null,\n            \"case_pack_weight\": null,\n            \"sohd_temperature_rating\": null,\n            \"sell_pack_qty\": \"1\",\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"sohd_bottom_view_image_file_name\": null,\n            \"sohd_cord_length\": null,\n            \"generate_technical_attributes\": null,\n            \"sohd_warranty_file_name\": null,\n            \"vendor\": null,\n            \"msrp\": \"3000\",\n            \"sohd_parts_breakdown_file\": null,\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"sohd_gauge\": null,\n            \"sohd_phase\": null,\n            \"sohd_disposable\": null,\n            \"sohd_features_benefits_10\": null,\n            \"website\": null,\n            \"case_pack_width\": null,\n            \"sohd_niosh_specifications\": null,\n            \"sohd_spare_part_product_reference\": null,\n            \"sohd_thickness\": null,\n            \"list_price\": null,\n            \"sohd_application\": null,\n            \"sale_price\": null,\n            \"yrfa_uom\": null,\n            \"sohd_linebuy_id\": null,\n            \"sohd_nsf_certified\": null,\n            \"sohd_right_view_image_file_name\": null,\n            \"sohd_wire_gauge\": null,\n            \"sohd_clothing_size\": null,\n            \"sohd_amp\": null,\n            \"sohd_product_type\": null,\n            \"tank_size\": \"50 gal\",\n            \"yrfa_price\": \"999\",\n            \"sohd_installation_type\": null,\n            \"sohd_fm_approved\": null,\n            \"ship_pack_height\": null,\n            \"sohd_collection\": null,\n            \"computed_price\": null,\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"sohd_glove_type\": null,\n            \"sohd_material\": null,\n            \"ship_pack_length\": null,\n            \"supplier_stock_no\": \"8221294\",\n            \"sohd_battery_type\": null,\n            \"yrfa_super_extral_long_desc\": null,\n            \"sohd_mss_specifications\": null,\n            \"coverage_description_es\": null,\n            \"repair_policy\": null,\n            \"sohd_weight\": null,\n            \"sohd_watts\": null,\n            \"coverage_description_en\": null,\n            \"product_type_1\": null,\n            \"sohd_vendor_logo\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"name\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n            \"flammable\": null,\n            \"sohd_step_id\": null,\n            \"tank_style\": \"Horizontal\",\n            \"muko_long_title\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"main_image\": \"4070863028\",\n            \"psi\": \"150 PSI\",\n            \"action_photo\": null,\n            \"lifestyle_image\": null,\n            \"video\": null,\n            \"poisonous\": null,\n            \"material_type\": \"Steel\",\n            \"muko_length\": null,\n            \"sohd_light_bulb_shape_code\": null,\n            \"sohd_alt_product_number\": null,\n            \"purchasing_completeness\": \"50\",\n            \"sohd_smart_home_enabled\": null,\n            \"sohd_osha_specifications\": null,\n            \"sohd_x\": null,\n            \"sohd_ce_approved\": null,\n            \"accessory_product\": null,\n            \"sohd_automatic_shutoff\": null,\n            \"sohd_video_asset_reference_id\": null,\n            \"case_pack_quantity\": null,\n            \"gtin\": null,\n            \"sohd_nema_specifications\": null,\n            \"inner_pack_width\": null,\n            \"sohd_x_3\": null,\n            \"sohd_x_2\": null,\n            \"sohd_x_5\": null,\n            \"ship_pack_desc\": null,\n            \"sohd_x_4\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"selling_length\": \"18\\\"\",\n            \"prop_65_compliant\": \"Yes\",\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"publish_to_b2b_website\": \"Yes\",\n            \"asin\": \"32BH232H1\",\n            \"sohd_number_of_pieces\": null,\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"amps\": null,\n            \"generated_description\": null,\n            \"avg_hours\": \"12\",\n            \"action_shot\": null,\n            \"sohd_volts\": null,\n            \"sohd_ul_listed\": null,\n            \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\">This is html</span></p>\",\n            \"number\": \"RFOF-8056\",\n            \"sellpack_height\": \"9\\\"\",\n            \"sohd_nsf_specifications\": null,\n            \"sohd_energy_star_compliant\": null,\n            \"warranty\": \"4 Year\",\n            \"input_voltage\": \"110 V\",\n            \"sohd_brand_type\": null,\n            \"prop_65_warning\": null,\n            \"additional_images\": null,\n            \"sohd_use_and_care_file\": null,\n            \"sohd_epa_compliant\": null,\n            \"inner_pack_height\": null,\n            \"master_pack_qty\": \"4\",\n            \"ship_pack_qty\": null,\n            \"upc\": null,\n            \"sohd_end_connection_2\": null,\n            \"sohd_end_connection_1\": null,\n            \"multi_category\": null,\n            \"sohd_iapmo_listed\": null,\n            \"sohd_tool_type\": null,\n            \"zhz_material\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"ship_pack_width\": null,\n            \"status\": \"Active\",\n            \"sohd_brand_names\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_glove_size\": null,\n            \"sohd_origin\": null,\n            \"muko_title\": null,\n            \"sohd_gsa_approved\": null,\n            \"sohd_ada_compliant\": null,\n            \"sohd_material_type\": null,\n            \"sohd_maximum_pressure\": null,\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"muko_weight\": null,\n            \"selling_weight\": \"50 lbs\",\n            \"parent_sku\": \"RFOF-8052\",\n            \"sohd_ansi_specifications\": null,\n            \"sohd_item_class\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_asse_standards\": null,\n            \"muko_height\": null,\n            \"coverage_level\": null,\n            \"mkt_comp\": \"0\",\n            \"sohd_diameter\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"sohd_size\": null,\n            \"sohd_colorfinish\": null,\n            \"sohd_length\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"sohd_submittals_asset_file_name\": null,\n            \"sohd_ma_approved\": null,\n            \"sohd_scaqmd_compliant\": null,\n            \"sohd_features_benefits_06\": null,\n            \"sohd_features_benefits_07\": null,\n            \"sohd_features_benefits_04\": null,\n            \"sohd_mfgsupplier_name_id\": null,\n            \"sohd_features_benefits_05\": null,\n            \"sohd_features_benefits_02\": null,\n            \"sohd_features_benefits_03\": null,\n            \"sohd_features_benefits_01\": null,\n            \"keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"benefit_6\": null,\n            \"tank_capacity\": null,\n            \"benefit_4\": \"Easily stackable with removable handle\",\n            \"sohd_product_short_description\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n            \"video_2\": null,\n            \"benefit_5\": \"Made in USA\",\n            \"sohd_includes\": null,\n            \"benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"case_pack_height\": null,\n            \"benefit_3\": \"Light and portable\",\n            \"sohd_bulb_type\": null,\n            \"sohd_lifestyle_image_file_name\": null,\n            \"sohd_features_benefits_08\": null,\n            \"benefit_1\": \"Made with high quality steel\",\n            \"sohd_features_benefits_09\": null,\n            \"sohd_energy_guide_file_name\": null,\n            \"inside_diameter\": \"45\",\n            \"marketplace_category\": null,\n            \"sohd_cable_or_wire_type\": null,\n            \"customer_part_number\": null,\n            \"muko_item_id\": \"RFOF-8056\",\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"sohd_astm_specifications\": null,\n            \"long_name_for_ebay\": null,\n            \"extra_long_name_for_website\": null,\n            \"sohd_awwa_specifications\": null,\n            \"spec_sheet\": null,\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"sohd_fitting_size_1\": null,\n            \"sohd_gender\": null,\n            \"sohd_specification_file\": null,\n            \"sohd_carbotcleed_compliant\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8056\",\n            \"sohd_optional_accessory\": null,\n            \"sohd_baa_compliant\": null,\n            \"sohd_top_view_image_file_name\": null,\n            \"regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 15\n            },\n            \"color_option\": \"Green\",\n            \"sohd_required_accessory\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"sohd_reusable\": null,\n            \"sohd_vendor_brand_logo\": null,\n            \"priority_accessories\": null,\n            \"sohd_package_quantity\": null,\n            \"sohd_upc\": null,\n            \"orientation\": null,\n            \"master_pack_desc\": \"Pack of 4\",\n            \"cost\": null,\n            \"sohd_asme_specifications\": null,\n            \"sohd_csa_certified\": null,\n            \"sohd_sku_image_notes\": null,\n            \"sohd_coating\": null,\n            \"sohd_product_number_sku\": \"RFOF-8056\",\n            \"sohd_width\": null,\n            \"application\": null,\n            \"sohd_brand_model_compatibility\": null,\n            \"coverage_description_pt\": null,\n            \"sohd_temperature_range\": null,\n            \"marking_code\": null,\n            \"sohd_oracle_item_class_ref_classification_reference\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"sohd_depth\": null,\n            \"sohd_lighting_facts_asset_file_name\": null,\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"2 Stage\"\n        },\n        {\n            \"id\": 17412005,\n            \"assets\": [\n                {\n                    \"id\": 4070863023,\n                    \"size\": 1645536,\n                    \"width\": 2000,\n                    \"height\": 2000,\n                    \"filename\": \"DRAGON-PRIME-4-53.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-4-53.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863023/DRAGON-PRIME-4-53.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863023/DRAGON-PRIME-4-53.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"device\",\n                        \"grass\",\n                        \"lawn\",\n                        \"lawn mower\",\n                        \"Plant\",\n                        \"tool\",\n                        \"blue\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"czen3W5fbHaAF6B5Flonj1yVybYbMvuZ\",\n                    \"publish_date\": null\n                },\n                {\n                    \"id\": 4070863028,\n                    \"size\": 67906,\n                    \"width\": 768,\n                    \"height\": 768,\n                    \"filename\": \"DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1705530356605,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpg\",\n                    \"transformations\": {\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863028/DRAGON-PRIME-1-54-768x768.jpg\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863028/DRAGON-PRIME-1-54-768x768.jpg\"\n                    },\n                    \"personna\": null,\n                    \"marketing_campaigns\": null,\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": null,\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"car\",\n                        \"transportation\",\n                        \"vehicle\",\n                        \"dragon prime\",\n                        \"enterprise\",\n                        \"green\"\n                    ],\n                    \"application_notes\": null,\n                    \"storemediaid\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"VlfYu3lCRAeKzPqSkSISfaxjmMoNiMIe\",\n                    \"publish_date\": null\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004680318\n            ],\n            \"completeness_score\": 77,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 33,\n                \"recicompressors\": 100,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"explosive\": null,\n            \"warranty_language\": \"Defects Only\",\n            \"sell_pack_desc\": \"Each\",\n            \"sohd_mfg_product_number\": \"RFOF-8055\",\n            \"sohd_etl_listed\": null,\n            \"sellpack_width\": \"18\\\"\",\n            \"map_price\": null,\n            \"sohd_height\": null,\n            \"coverage_length\": null,\n            \"sohd_iso_specifications\": null,\n            \"grainger_part_number\": \"1AD3433\",\n            \"sale_active\": \"Yes\",\n            \"brand\": null,\n            \"sohd_installation_instructions_file\": null,\n            \"sohd_power_source\": null,\n            \"sohd_indoor_outdoor\": null,\n            \"sohd_maximum_temperature\": null,\n            \"country_of_origin\": \"China\",\n            \"hazardous\": \"Yes\",\n            \"sohd_cad_drawings_file_name\": null,\n            \"coverage_description_it\": null,\n            \"sohd_back_view_image_file_name\": null,\n            \"safety_data_sheet\": null,\n            \"sohd_sku_image_file_name\": \"https://s3-us-west-2.amazonaws.com/catsy.804/DRAGON-PRIME-1-54-768x768.jpg\",\n            \"sohd_scheduleclass\": null,\n            \"case_pack_upcean\": null,\n            \"grade\": \"D\",\n            \"inner_pack_length\": null,\n            \"sohd_left_view_image_file_name\": null,\n            \"masterpack_length\": \"48\\\"\",\n            \"main_material\": null,\n            \"ship_pack_weight\": null,\n            \"auto_linked_image\": null,\n            \"assembly_instructions\": null,\n            \"case_pack_weight\": null,\n            \"sohd_temperature_rating\": null,\n            \"sell_pack_qty\": \"1\",\n            \"used_with\": [\n                \"20023094\"\n            ],\n            \"complementary_products\": null,\n            \"sohd_bottom_view_image_file_name\": null,\n            \"sohd_cord_length\": null,\n            \"generate_technical_attributes\": null,\n            \"sohd_warranty_file_name\": null,\n            \"vendor\": null,\n            \"msrp\": \"3000\",\n            \"sohd_parts_breakdown_file\": null,\n            \"recommended_products\": null,\n            \"ingredients\": null,\n            \"sohd_gauge\": null,\n            \"sohd_phase\": null,\n            \"sohd_disposable\": null,\n            \"sohd_features_benefits_10\": null,\n            \"website\": null,\n            \"case_pack_width\": null,\n            \"sohd_niosh_specifications\": null,\n            \"sohd_spare_part_product_reference\": null,\n            \"sohd_thickness\": null,\n            \"list_price\": null,\n            \"sohd_application\": null,\n            \"sale_price\": null,\n            \"yrfa_uom\": null,\n            \"sohd_linebuy_id\": null,\n            \"sohd_nsf_certified\": null,\n            \"sohd_right_view_image_file_name\": null,\n            \"sohd_wire_gauge\": null,\n            \"sohd_clothing_size\": null,\n            \"sohd_amp\": null,\n            \"sohd_product_type\": null,\n            \"tank_size\": \"50 gal\",\n            \"yrfa_price\": \"999\",\n            \"sohd_installation_type\": null,\n            \"sohd_fm_approved\": null,\n            \"ship_pack_height\": null,\n            \"sohd_collection\": null,\n            \"computed_price\": null,\n            \"sell_sheet\": null,\n            \"coverage_description_fr\": null,\n            \"case_pack_packaging_description\": null,\n            \"masterpack_weight\": \"300 lbs\",\n            \"sohd_glove_type\": null,\n            \"sohd_material\": null,\n            \"ship_pack_length\": null,\n            \"supplier_stock_no\": \"8221293\",\n            \"sohd_battery_type\": null,\n            \"yrfa_super_extral_long_desc\": null,\n            \"sohd_mss_specifications\": null,\n            \"coverage_description_es\": null,\n            \"repair_policy\": null,\n            \"sohd_weight\": null,\n            \"sohd_watts\": null,\n            \"coverage_description_en\": null,\n            \"product_type_1\": null,\n            \"sohd_vendor_logo\": null,\n            \"installation_partners\": \"Greenlee Conduit\",\n            \"name\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n            \"flammable\": null,\n            \"sohd_step_id\": null,\n            \"tank_style\": \"Horizontal\",\n            \"main_image\": \"4070863028\",\n            \"psi\": \"125 PSI\",\n            \"action_photo\": null,\n            \"poisonous\": \"Yes\",\n            \"lifestyle_image\": null,\n            \"video\": null,\n            \"material_type\": \"Steel\",\n            \"sohd_light_bulb_shape_code\": null,\n            \"sohd_alt_product_number\": null,\n            \"purchasing_completeness\": \"50\",\n            \"sohd_smart_home_enabled\": null,\n            \"sohd_osha_specifications\": null,\n            \"sohd_x\": null,\n            \"sohd_ce_approved\": null,\n            \"accessory_product\": null,\n            \"sohd_automatic_shutoff\": null,\n            \"sohd_video_asset_reference_id\": null,\n            \"case_pack_quantity\": null,\n            \"gtin\": null,\n            \"sohd_nema_specifications\": null,\n            \"inner_pack_width\": null,\n            \"sohd_x_3\": null,\n            \"sohd_x_2\": null,\n            \"sohd_x_5\": null,\n            \"ship_pack_desc\": null,\n            \"sohd_x_4\": null,\n            \"inner_pack_weight\": \"60 lbs\",\n            \"selling_length\": \"18\\\"\",\n            \"prop_65_compliant\": \"Yes\",\n            \"product_type\": [\n                \"recicompressors\"\n            ],\n            \"material\": \"Steel\",\n            \"publish_to_b2b_website\": \"Yes\",\n            \"asin\": \"32BH232H1\",\n            \"sohd_number_of_pieces\": null,\n            \"current_price\": null,\n            \"case_pack_length\": null,\n            \"amps\": null,\n            \"generated_description\": null,\n            \"avg_hours\": \"12\",\n            \"action_shot\": null,\n            \"sohd_volts\": null,\n            \"sohd_ul_listed\": null,\n            \"rich_description\": \"<p><span style=\\\"color:hsl(0, 75%, 60%);\\\">This is html</span></p>\",\n            \"number\": \"RFOF-8055\",\n            \"sellpack_height\": \"9\\\"\",\n            \"sohd_nsf_specifications\": null,\n            \"sohd_energy_star_compliant\": null,\n            \"warranty\": \"3 Year\",\n            \"input_voltage\": \"110 V\",\n            \"sohd_brand_type\": null,\n            \"prop_65_warning\": null,\n            \"additional_images\": null,\n            \"sohd_use_and_care_file\": null,\n            \"sohd_epa_compliant\": null,\n            \"inner_pack_height\": null,\n            \"master_pack_qty\": \"4\",\n            \"ship_pack_qty\": null,\n            \"upc\": null,\n            \"sohd_end_connection_2\": null,\n            \"sohd_end_connection_1\": null,\n            \"multi_category\": null,\n            \"sohd_iapmo_listed\": null,\n            \"sohd_tool_type\": null,\n            \"zhz_material\": null,\n            \"short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"ship_pack_width\": null,\n            \"status\": \"Active\",\n            \"sohd_brand_names\": null,\n            \"short_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_glove_size\": null,\n            \"sohd_origin\": null,\n            \"sohd_gsa_approved\": null,\n            \"sohd_ada_compliant\": null,\n            \"sohd_material_type\": null,\n            \"sohd_maximum_pressure\": null,\n            \"care_wash_and_usage_instructions\": null,\n            \"masterpack_width\": \"36\\\"\",\n            \"selling_weight\": \"50 lbs\",\n            \"parent_sku\": \"RFOF-8052\",\n            \"sohd_ansi_specifications\": null,\n            \"sohd_item_class\": null,\n            \"long_description\": \"Elevate your operations with the Air Stream Reciprocating Air Compressor – where innovation meets reliability. Engineered with precision and backed by years of expertise, Air Stream is the ultimate solution for your pneumatic needs.\",\n            \"sohd_asse_standards\": null,\n            \"coverage_level\": null,\n            \"mkt_comp\": \"0\",\n            \"sohd_diameter\": null,\n            \"coverage_description_de\": null,\n            \"cylinder_material\": \"Cast Iron\",\n            \"sohd_size\": null,\n            \"sohd_colorfinish\": null,\n            \"sohd_length\": null,\n            \"certification_date\": null,\n            \"user_manual\": null,\n            \"sohd_submittals_asset_file_name\": null,\n            \"sohd_ma_approved\": null,\n            \"sohd_scaqmd_compliant\": null,\n            \"sohd_features_benefits_06\": null,\n            \"sohd_features_benefits_07\": null,\n            \"sohd_features_benefits_04\": null,\n            \"sohd_mfgsupplier_name_id\": null,\n            \"sohd_features_benefits_05\": null,\n            \"sohd_features_benefits_02\": null,\n            \"sohd_features_benefits_03\": null,\n            \"sohd_features_benefits_01\": null,\n            \"keyword_tags\": [\n                \"yellow\",\n                \"compressor\"\n            ],\n            \"benefit_6\": null,\n            \"tank_capacity\": null,\n            \"benefit_4\": \"Easily stackable with removable handle\",\n            \"sohd_product_short_description\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n            \"video_2\": null,\n            \"benefit_5\": \"Made in USA\",\n            \"sohd_includes\": null,\n            \"benefit_2\": \"Fitted with wheels for easy movement.\",\n            \"case_pack_height\": null,\n            \"benefit_3\": \"Light and portable\",\n            \"sohd_bulb_type\": null,\n            \"sohd_lifestyle_image_file_name\": null,\n            \"sohd_features_benefits_08\": null,\n            \"benefit_1\": \"Made with high quality steel\",\n            \"sohd_features_benefits_09\": null,\n            \"sohd_energy_guide_file_name\": null,\n            \"inside_diameter\": \"45\",\n            \"marketplace_category\": null,\n            \"sohd_cable_or_wire_type\": null,\n            \"customer_part_number\": null,\n            \"b2b_industrial_preliminary_demo_gid\": null,\n            \"sohd_astm_specifications\": null,\n            \"long_name_for_ebay\": null,\n            \"extra_long_name_for_website\": null,\n            \"sohd_awwa_specifications\": null,\n            \"spec_sheet\": null,\n            \"image_3\": null,\n            \"image_2\": \"4070863023\",\n            \"sohd_fitting_size_1\": null,\n            \"sohd_gender\": null,\n            \"sohd_specification_file\": null,\n            \"sohd_carbotcleed_compliant\": null,\n            \"yrfa_dealer_item_code\": \"RFOF-8055\",\n            \"sohd_optional_accessory\": null,\n            \"sohd_baa_compliant\": null,\n            \"sohd_top_view_image_file_name\": null,\n            \"regular_price\": {\n                \"currency\": \"USD\",\n                \"amount\": 15\n            },\n            \"color_option\": \"Urban Navy\",\n            \"sohd_required_accessory\": null,\n            \"yrfa_short_name\": \"Air Stream: Redefining Excellence in Air Compression\",\n            \"sohd_reusable\": null,\n            \"sohd_vendor_brand_logo\": null,\n            \"priority_accessories\": null,\n            \"sohd_package_quantity\": null,\n            \"sohd_upc\": null,\n            \"orientation\": null,\n            \"cost\": {\n                \"currency\": \"USD\",\n                \"amount\": 12\n            },\n            \"master_pack_desc\": \"Pack of 4\",\n            \"sohd_asme_specifications\": null,\n            \"sohd_csa_certified\": null,\n            \"sohd_sku_image_notes\": null,\n            \"sohd_coating\": null,\n            \"sohd_product_number_sku\": \"RFOF-8055\",\n            \"sohd_width\": null,\n            \"application\": null,\n            \"sohd_brand_model_compatibility\": null,\n            \"coverage_description_pt\": null,\n            \"sohd_temperature_range\": null,\n            \"marking_code\": null,\n            \"sohd_oracle_item_class_ref_classification_reference\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"sohd_depth\": null,\n            \"sohd_lighting_facts_asset_file_name\": null,\n            \"masterpack_height\": \"30\\\"\",\n            \"no_of_stages\": \"2 Stage\"\n        }\n    ]\n}"}],"_postman_id":"d4397882-a083-4968-86d7-733360e1bc62"},{"name":"Filter Products","id":"cd9e472f-35d6-4ab0-91b2-6a60a0f20d20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"attributeKeys\": [\"number\", \"name\", \"status\", \"category\"],\r\n\r\n  \"filters\": [\r\n    {\r\n      \"attributeKey\": \"status\",\r\n      \"operator\": \"is\",                       // Equal to\r\n      \"value\": \"Active\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"status\",\r\n      \"operator\": \"not\",                      // Not equal to\r\n      \"value\": \"Inactive\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"capacity\",\r\n      \"operator\": \"contains\",                // Contains substring\r\n      \"value\": \"13\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"capacity\",\r\n      \"operator\": \"does not contain\",        // Does not contain\r\n      \"value\": \"ounces\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"jaw_type\",\r\n      \"operator\": \"is empty\",                // Field is blank or null\r\n      \"value\": []  \r\n\t\t},\r\n    {\r\n      \"attributeKey\": \"jaw_capacity\",\r\n      \"operator\": \"is not empty\",            // Field has any value\r\n      \"value\": [] \r\n\t\t},\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"starts with\",             // Starts with text\r\n      \"value\": \"LP\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"does not start with\",     // Does not start with text\r\n      \"value\": \"TO\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"ends with\",               // Ends with text\r\n      \"value\": \"WC\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"does not end with\",       // Does not end with text\r\n      \"value\": \"-XS\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"between\",                 // Use both bounds for ranges\r\n      \"lowerBoundValue\": \"10\",\r\n      \"upperBoundValue\": \"80\",\r\n\t\t\t\"value\": [] \r\n    },\r\n\t\t{\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"<\",                 // Use both bounds for ranges\r\n      \"upperBoundValue\": \"99.99\"\r\n    },\r\n\t\t{\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"<=\",                 // Use both bounds for ranges\r\n      \"upperBoundValue\": \"94.99\"\r\n    },\r\n\t\t{\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \">\",                 // Use both bounds for ranges\r\n      \"lowerBoundValue\": \"10\"\r\n    },\r\n\t\t{\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \">=\",                 // Use both bounds for ranges\r\n      \"lowerBoundValue\": \"9.99\"\r\n    }\r\n\t\t\r\n  ],\r\n\r\n  \"orderBy\": {\r\n    \"attributeKey\": \"name\",\r\n    \"direction\": \"ASCENDING\"\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/filter","description":"<h3 id=\"filter-products\">Filter Products</h3>\n<p>Use this endpoint to retrieve a list of products based on filters.</p>\n<p>⚠️ This call returns paginated product data and supports advanced filtering via the request body.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products","filter"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>The maximum number of products to return per request. Use in combination with offset for pagination.</p>\n","type":"text/plain"},"key":"limit","value":""},{"disabled":true,"description":{"content":"<p>The number of products to skip before starting to collect the result set. Used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":""}],"variable":[]}},"response":[{"id":"761b8bc2-a33d-4990-82bc-d899083ca1b5","name":"All Available Filters","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"attributeKeys\": [\"number\", \"name\", \"status\", \"category\"],\r\n\r\n  \"filters\": [\r\n    {\r\n      \"attributeKey\": \"status\",\r\n      \"operator\": \"is\",                       // Equal to\r\n      \"value\": \"Active\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"status\",\r\n      \"operator\": \"not\",                      // Not equal to\r\n      \"value\": \"Inactive\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"capacity\",\r\n      \"operator\": \"contains\",                // Contains substring\r\n      \"value\": \"13\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"capacity\",\r\n      \"operator\": \"does not contain\",        // Does not contain\r\n      \"value\": \"ounces\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"jaw_type\",\r\n      \"operator\": \"is empty\",                // Field is blank or null\r\n      \"value\": []  \r\n\t\t},\r\n    {\r\n      \"attributeKey\": \"jaw_capacity\",\r\n      \"operator\": \"is not empty\",            // Field has any value\r\n      \"value\": [] \r\n\t\t},\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"starts with\",             // Starts with text\r\n      \"value\": \"LP\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"does not start with\",     // Does not start with text\r\n      \"value\": \"TO\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"ends with\",               // Ends with text\r\n      \"value\": \"WC\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"does not end with\",       // Does not end with text\r\n      \"value\": \"-XS\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"between\",                 // Use both bounds for ranges\r\n      \"lowerBoundValue\": \"10\",\r\n      \"upperBoundValue\": \"80\",\r\n\t\t\t\"value\": [] \r\n    },\r\n\t\t{\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"<\",                 // Use both bounds for ranges\r\n      \"upperBoundValue\": \"99.99\"\r\n    },\r\n\t\t{\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"<=\",                 // Use both bounds for ranges\r\n      \"upperBoundValue\": \"94.99\"\r\n    },\r\n\t\t{\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \">\",                 // Use both bounds for ranges\r\n      \"lowerBoundValue\": \"10\"\r\n    },\r\n\t\t{\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \">=\",                 // Use both bounds for ranges\r\n      \"lowerBoundValue\": \"9.99\"\r\n    }\r\n\t\t\r\n  ],\r\n\r\n  \"orderBy\": {\r\n    \"attributeKey\": \"name\",\r\n    \"direction\": \"ASCENDING\"\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products/filter","protocol":"https","host":["api","catsy","com"],"path":["v4","products","filter"],"query":[{"key":"limit","value":null,"description":"The maximum number of products to return per request. Use in combination with offset for pagination.","disabled":true},{"key":"offset","value":null,"description":"The number of products to skip before starting to collect the result set. Used for pagination.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 18:30:29 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=hgrg7QgOjHeJ4zmmx8Lc3L%2F2o8a%2BaTrVvjcaiJkDDAPCRIY3DQwG%2FVKhvW2YDnkz8yVLSSNsHFdQ4jdbrL0ClqN9EROc04TfG1ZO9rP%2BnsPer6BB0CfHbCtfQrSZ2%2Fk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933ef3efecf5c970-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2299&min_rtt=2272&rtt_var=650&sent=8&recv=9&lost=0&retrans=0&sent_bytes=4391&recv_bytes=5450&delivery_rate=1887874&cwnd=254&unsent_bytes=0&cid=0202efa7c9e2688c&ts=6589&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 13910988,\n            \"assets\": [],\n            \"create_date\": 1633441498481,\n            \"update_date\": 1745259617845,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"marketing\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"pliers\": 50,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"10″ CURVED JAW LOCKING PLIERS W/WIRE CUTTER\",\n            \"number\": \"LP10WC\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\",\n                \"level_3\": \"Pliers\"\n            },\n            \"status\": \"Active\"\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 1,\n        \"results_per_page\": 100,\n        \"total_pages\": 1,\n        \"current_page\": 1\n    }\n}"},{"id":"51411d9c-4b5a-441f-85c4-7427be70fa80","name":"Basic Equality Filters","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"attributeKeys\": [\"number\", \"name\", \"status\", \"category\"],\r\n  \"filters\": [\r\n    {\r\n      \"attributeKey\": \"status\",\r\n      \"operator\": \"is\",\r\n      \"value\": \"Active\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"status\",\r\n      \"operator\": \"not\",\r\n      \"value\": \"Inactive\"\r\n    }\r\n  ],\r\n  \"orderBy\": {\r\n    \"attributeKey\": \"name\",\r\n    \"direction\": \"ASCENDING\"\r\n  }\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products/filter","host":["https://api.catsy.com/v4"],"path":["products","filter"],"query":[{"key":"limit","value":null,"description":"The maximum number of products to return per request. Use in combination with offset for pagination.","disabled":true},{"key":"offset","value":null,"description":"The number of products to skip before starting to collect the result set. Used for pagination.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 18:31:55 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=Utizv%2F%2FdoLArL%2BLonf23zK68kbDuwSIu2KgtzidT5uLoYuji0zmEFw8L6d4IiFtIVe27jSKWvgTtL2JpVMz2oVW2SJLSVyMKjGXfSPQVHFn34m4tsvPgsjfplPwvHSM%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933ef6067f4fc940-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2122&min_rtt=2046&rtt_var=821&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1535&delivery_rate=707722&cwnd=250&unsent_bytes=0&cid=ce56b8d8fad7f9ab&ts=555&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 21011083,\n            \"assets\": [],\n            \"create_date\": 1739280322113,\n            \"update_date\": 1744112267975,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674198,\n                4004676842,\n                4004677654\n            ],\n            \"completeness_score\": 100,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 100,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"logistics\": 100,\n                \"rgzv_b2b_industrial_preliminary_demo\": 50,\n                \"chemicals\": 100,\n                \"pricing\": 100\n            },\n            \"name\": null,\n            \"number\": \"20042895\",\n            \"category\": {\n                \"level_1\": \"Cleaning\",\n                \"level_2\": \"Chemicals\"\n            },\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 13910988,\n            \"assets\": [],\n            \"create_date\": 1633441498481,\n            \"update_date\": 1745259617845,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 100,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"pliers\": 50,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"10″ CURVED JAW LOCKING PLIERS W/WIRE CUTTER\",\n            \"number\": \"LP10WC\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\",\n                \"level_3\": \"Pliers\"\n            },\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 14255999,\n            \"assets\": [],\n            \"create_date\": 1645621805313,\n            \"update_date\": 1743511312454,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004667334,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004680228,\n                4004681072\n            ],\n            \"completeness_score\": 82,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"tools\": 100,\n                \"specifications\": 0,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 54,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"jfby_distributor_export_file\": 0\n            },\n            \"name\": \"110 PSI, CleanAir Reciprocating Air Compressor\",\n            \"number\": \"GFBDF-1\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 13460161,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 14255999,\n                    \"assets\": [],\n                    \"create_date\": 1645621805313,\n                    \"update_date\": 1743511312454,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004667334,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680228,\n                        4004681072\n                    ],\n                    \"completeness_score\": 82,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"tools\": 100,\n                        \"specifications\": 0,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 54,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"jfby_distributor_export_file\": 0\n                    },\n                    \"name\": \"110 PSI, CleanAir Reciprocating Air Compressor\",\n                    \"number\": \"GFBDF-1\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 18321300,\n                    \"assets\": [],\n                    \"create_date\": 1709920654903,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004667334,\n                        4004676842,\n                        4004679922\n                    ],\n                    \"completeness_score\": 73,\n                    \"catsy$attribute_group_scores\": {\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"asset_gallery\": 100,\n                        \"logistics\": 100,\n                        \"specifications\": 0,\n                        \"recicompressors\": 100\n                    },\n                    \"name\": \"Reciprocating Air Compressor - 160 PSI\",\n                    \"number\": \"GFBDF-2\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 18321302,\n                    \"assets\": [],\n                    \"create_date\": 1709920673453,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004667334,\n                        4004676842,\n                        4004679922\n                    ],\n                    \"completeness_score\": 73,\n                    \"catsy$attribute_group_scores\": {\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"asset_gallery\": 100,\n                        \"logistics\": 100,\n                        \"specifications\": 0,\n                        \"recicompressors\": 100\n                    },\n                    \"name\": \"Reciprocating Air Compressor - 170 PSI\",\n                    \"number\": \"GFBDF-4\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 18321301,\n                    \"assets\": [],\n                    \"create_date\": 1709920665046,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004667334,\n                        4004676842,\n                        4004679922\n                    ],\n                    \"completeness_score\": 73,\n                    \"catsy$attribute_group_scores\": {\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"asset_gallery\": 100,\n                        \"logistics\": 100,\n                        \"specifications\": 0,\n                        \"recicompressors\": 100\n                    },\n                    \"name\": \"Reciprocating Air Compressor - 190 PSI\",\n                    \"number\": \"GFBDF-3\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                }\n            ],\n            \"create_date\": 1624284957916,\n            \"update_date\": 1743511312454,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004667334,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004679922,\n                4004680228,\n                4004681072\n            ],\n            \"child_item_count\": 4,\n            \"variant_skus\": [\n                \"GFBDF-1\",\n                \"GFBDF-2\",\n                \"GFBDF-4\",\n                \"GFBDF-3\"\n            ],\n            \"completeness_score\": 64,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"recicompressors\": 67,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 54\n            },\n            \"name\": \"120 PSI, CleanAir Reciprocating Air Compressor\",\n            \"number\": \"GFBDF\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17850741,\n            \"assets\": [],\n            \"create_date\": 1701915880175,\n            \"update_date\": 1744203402257,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004679134,\n                4004679224,\n                4004680743,\n                4004680746,\n                4004681279\n            ],\n            \"completeness_score\": 90,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 100,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"logistics\": 100,\n                \"specifications\": 0,\n                \"recicompressors\": 100,\n                \"zlgi_export_1\": 0\n            },\n            \"name\": \"160 PSI, AirStream Reciprocating Compressor\",\n            \"number\": \"RF-8052F111\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17850740,\n            \"assets\": [],\n            \"create_date\": 1701915880175,\n            \"update_date\": 1744203404190,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004678492,\n                4004679134,\n                4004680743,\n                4004680746,\n                4004681279\n            ],\n            \"completeness_score\": 90,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 100,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"led_lights\": 100,\n                \"logistics\": 100,\n                \"specifications\": 0,\n                \"recicompressors\": 100,\n                \"xhfs_june_25_export_dist_abc\": 0,\n                \"zlgi_export_1\": 0\n            },\n            \"name\": \"170 PSI, AirStream Reciprocating Compressor\",\n            \"number\": \"RF-8052E211\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17850739,\n            \"assets\": [],\n            \"create_date\": 1701915880175,\n            \"update_date\": 1744203397728,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004678074,\n                4004678085,\n                4004678492,\n                4004679134,\n                4004680743,\n                4004681279\n            ],\n            \"completeness_score\": 100,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 100,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"vonw_sample_export_1\": 0,\n                \"logistics\": 100,\n                \"kqys_test_from_cj\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"xhfs_june_25_export_dist_abc\": 0,\n                \"zlgi_export_1\": 0\n            },\n            \"name\": \"180 PSI, AirStream Reciprocating Compressor\",\n            \"number\": \"RF-8052D121\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412021,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1744203407196,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004674198,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004678074,\n                4004678085,\n                4004678178,\n                4004678492,\n                4004679134,\n                4004679135,\n                4004679224,\n                4004680228,\n                4004680318,\n                4004680743,\n                4004680746,\n                4004681279\n            ],\n            \"completeness_score\": 100,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 100,\n                \"tools\": 100,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"xhfs_june_25_export_dist_abc\": 0,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"zlgi_export_1\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 100,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"vonw_sample_export_1\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"kqys_test_from_cj\": 0\n            },\n            \"name\": \"Air Compressor, Reciprocating, 80 PSI\",\n            \"number\": \"RF-8065\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 20911397,\n            \"assets\": [],\n            \"create_date\": 1737391552674,\n            \"update_date\": 1743697845222,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004676720,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 83,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"logistics\": 100,\n                \"specifications\": 100,\n                \"recicompressors\": 67\n            },\n            \"name\": \"AirStream Reciprocating Compressor\",\n            \"number\": \"RF-8066\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 14707582,\n            \"assets\": [],\n            \"create_date\": 1658926617390,\n            \"update_date\": 1717684683975,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 57,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"fa0_safety_vests\": 100,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Class 2 Mesh Safety Vest with Zipper and without sleeves\",\n            \"number\": \"S363\",\n            \"category\": null,\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 16705129,\n            \"assets\": [],\n            \"create_date\": 1684762126120,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: #11 Drill Bit Size, 11/16 in Flute Lg, 3/16 in Shank Dia.\",\n            \"number\": \"20030214\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705124,\n            \"assets\": [],\n            \"create_date\": 1684761728665,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: 1/4 in Drill Bit Size, 3/4 in Flute Lg, 1/4 in Shank Dia.\",\n            \"number\": \"4BT02\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705120,\n            \"assets\": [],\n            \"create_date\": 1684761228629,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: 1/8 in Drill Bit Size, 3/8 in Flute Lg, 1/8 in Shank Dia.\",\n            \"number\": \"3BT95\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705128,\n            \"assets\": [],\n            \"create_date\": 1684762070447,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: #20 Drill Bit Size, 5/8 in Flute Lg, 5/32 in Shank Dia., Split Point\",\n            \"number\": \"4BT03\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705125,\n            \"assets\": [],\n            \"create_date\": 1684761795317,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: #30 Drill Bit Size, 1/2 in Flute Lg, 1/8 in Shank Dia., Split Point\",\n            \"number\": \"439H35\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705126,\n            \"assets\": [],\n            \"create_date\": 1684761889230,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: #30 Drill Bit Size, 1/2 in Flute Lg, 1/8 in Shank Dia., Split Point\",\n            \"number\": \"4BT04\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705123,\n            \"assets\": [],\n            \"create_date\": 1684761678286,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: 3/16 in Drill Bit Size, 5/8 in Flute Lg, 3/16 in Shank Dia.\",\n            \"number\": \"3BT99\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705122,\n            \"assets\": [],\n            \"create_date\": 1684761541450,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 57,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: 5/32 in Drill Bit Size, 1/2 in Flute Lg, 5/32 in Shank Dia.\",\n            \"number\": \"3BT97\",\n            \"category\": null,\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705121,\n            \"assets\": [],\n            \"create_date\": 1684761416125,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"CLE-LINE Double End Drill Bit: 9/64 in Drill Bit Size, 1/2 in Flute Lg, 9/64 in Shank Dia.\",\n            \"number\": \"3BT96\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 13156033,\n            \"assets\": [],\n            \"create_date\": 1617147611344,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663690,\n                4004663691,\n                4004663693,\n                4004669053,\n                4004669054,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 64,\n            \"catsy$attribute_group_scores\": {\n                \"combustion_air_systems\": 100,\n                \"multipin\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"tools\": 0,\n                \"specifications\": 0,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"side_tables\": 100,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 8,\n                \"power_tools\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 95,\n                \"marketing\": 75,\n                \"core\": 67,\n                \"np21_new_products_for_2021\": 0,\n                \"led_lights\": 100,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"name\": \"Cut-N-Strip - Two in one tool\",\n            \"number\": \"10503A\",\n            \"category\": null,\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 13116221,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 13116362,\n                    \"assets\": [],\n                    \"create_date\": 1614078952737,\n                    \"update_date\": 1741890968494,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004681032\n                    ],\n                    \"completeness_score\": 43,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 33,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Slim Chuck\",\n                    \"number\": \"20010901\",\n                    \"category\": null,\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 13116363,\n                    \"assets\": [],\n                    \"create_date\": 1614078974418,\n                    \"update_date\": 1741890968494,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004681072\n                    ],\n                    \"completeness_score\": 43,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 33,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"jfby_distributor_export_file\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Slim Chuck\",\n                    \"number\": \"20010902\",\n                    \"category\": null,\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 13116222,\n                    \"assets\": [],\n                    \"create_date\": 1614000698176,\n                    \"update_date\": 1741890968494,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663467,\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004681032\n                    ],\n                    \"completeness_score\": 57,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"power_tools\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 33,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Slim Chuck - ABC / Demo on March 13\",\n                    \"number\": \"BT30-SK10-120\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\"\n                    },\n                    \"status\": \"Active\"\n                }\n            ],\n            \"create_date\": 1613999429266,\n            \"update_date\": 1741890968494,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663467,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004681032,\n                4004681072\n            ],\n            \"child_item_count\": 3,\n            \"variant_skus\": [\n                \"20010901\",\n                \"20010902\",\n                \"BT30-SK10-120\"\n            ],\n            \"completeness_score\": 67,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 33,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Demo at parent levle\",\n            \"number\": \"SK\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"capacity\",\n                \"code\",\n                \"grip_length\",\n                \"length\"\n            ]\n        },\n        {\n            \"id\": 16705105,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 16705129,\n                    \"assets\": [],\n                    \"create_date\": 1684762126120,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: #11 Drill Bit Size, 11/16 in Flute Lg, 3/16 in Shank Dia.\",\n                    \"number\": \"20030214\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705124,\n                    \"assets\": [],\n                    \"create_date\": 1684761728665,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: 1/4 in Drill Bit Size, 3/4 in Flute Lg, 1/4 in Shank Dia.\",\n                    \"number\": \"4BT02\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705120,\n                    \"assets\": [],\n                    \"create_date\": 1684761228629,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: 1/8 in Drill Bit Size, 3/8 in Flute Lg, 1/8 in Shank Dia.\",\n                    \"number\": \"3BT95\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705128,\n                    \"assets\": [],\n                    \"create_date\": 1684762070447,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: #20 Drill Bit Size, 5/8 in Flute Lg, 5/32 in Shank Dia., Split Point\",\n                    \"number\": \"4BT03\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705125,\n                    \"assets\": [],\n                    \"create_date\": 1684761795317,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: #30 Drill Bit Size, 1/2 in Flute Lg, 1/8 in Shank Dia., Split Point\",\n                    \"number\": \"439H35\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705126,\n                    \"assets\": [],\n                    \"create_date\": 1684761889230,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: #30 Drill Bit Size, 1/2 in Flute Lg, 1/8 in Shank Dia., Split Point\",\n                    \"number\": \"4BT04\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705123,\n                    \"assets\": [],\n                    \"create_date\": 1684761678286,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: 3/16 in Drill Bit Size, 5/8 in Flute Lg, 3/16 in Shank Dia.\",\n                    \"number\": \"3BT99\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705122,\n                    \"assets\": [],\n                    \"create_date\": 1684761541450,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855\n                    ],\n                    \"completeness_score\": 57,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: 5/32 in Drill Bit Size, 1/2 in Flute Lg, 5/32 in Shank Dia.\",\n                    \"number\": \"3BT97\",\n                    \"category\": null,\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705121,\n                    \"assets\": [],\n                    \"create_date\": 1684761416125,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"CLE-LINE Double End Drill Bit: 9/64 in Drill Bit Size, 1/2 in Flute Lg, 9/64 in Shank Dia.\",\n                    \"number\": \"3BT96\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705127,\n                    \"assets\": [],\n                    \"create_date\": 1684761981749,\n                    \"update_date\": 1709320921548,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"drill_reamers\": 100,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"WESTWARD Double End Drill Bit: #20 Drill Bit Size, 1/2 in Flute Lg, 5/32 in Shank Dia., Split Point\",\n                    \"number\": \"2UFF8\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                }\n            ],\n            \"create_date\": 1684757946391,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"child_item_count\": 10,\n            \"variant_skus\": [\n                \"20030214\",\n                \"4BT02\",\n                \"3BT95\",\n                \"4BT03\",\n                \"439H35\",\n                \"4BT04\",\n                \"3BT99\",\n                \"3BT97\",\n                \"3BT96\",\n                \"2UFF8\"\n            ],\n            \"completeness_score\": 75,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Diamond Coated Carbide Drill Reamers\",\n            \"number\": \"DCCDR\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        },\n        {\n            \"id\": 16705117,\n            \"assets\": [],\n            \"create_date\": 1684760572763,\n            \"update_date\": 1721573953164,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/4 in Drill Bit Size, 12 in Overall Lg, 1/4 in Shank Dia\",\n            \"number\": \"19TH38\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705116,\n            \"assets\": [],\n            \"create_date\": 1684760506122,\n            \"update_date\": 1721573953164,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/4 in Drill Bit Size, 4 in Overall Lg, 1/4 in Shank Dia\",\n            \"number\": \"19TG98\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705111,\n            \"assets\": [],\n            \"create_date\": 1684759986595,\n            \"update_date\": 1726083587416,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676855,\n                4004677340,\n                4004677747\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 33,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"vcxj_ddfdfd\": 5,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/8 in Drill Bit Size, 12 in Overall Lg, 1/8 in Shank Dia\",\n            \"number\": \"19TH31\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705110,\n            \"assets\": [],\n            \"create_date\": 1684759826920,\n            \"update_date\": 1743511315752,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004674614,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 71,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 33,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/8 in Drill Bit Size, 2 1/2 in Overall Lg, 1/8 in Shank Dia\",\n            \"number\": \"19TG90\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705114,\n            \"assets\": [],\n            \"create_date\": 1684760232229,\n            \"update_date\": 1721573953164,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"EAZYPOWER Brad Point Drill Bit: 3/16 in Drill Bit Size, 12 in Overall Lg, 3/16 in Shank Dia\",\n            \"number\": \"19TH35\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705113,\n            \"assets\": [],\n            \"create_date\": 1684760162871,\n            \"update_date\": 1721573953164,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"EAZYPOWER Brad Point Drill Bit: 3/16 in Drill Bit Size, 3 1/4 in Overall Lg, 3/16 in Shank Dia - change\",\n            \"number\": \"19TG94\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705115,\n            \"assets\": [],\n            \"create_date\": 1684760373897,\n            \"update_date\": 1721573953164,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"EAZYPOWER Brad Point Drill Bit: 7/32 in Drill Bit Size, 3 1/2 in Overall Lg, 7/32 in Shank Dia\",\n            \"number\": \"19TH70\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 13910548,\n            \"assets\": [],\n            \"create_date\": 1632946986357,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"power_tools\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Elite Series Five Star™ 8\\\" x 3\\\" Golden Stainless Steel Midget Trowel with ProForm® Handle\",\n            \"number\": \"PLE411PF\",\n            \"category\": null,\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 14848552,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 14848554,\n                    \"assets\": [],\n                    \"create_date\": 1659275182220,\n                    \"update_date\": 1743451112757,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004672153,\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004679224,\n                        4004679801,\n                        4004680228\n                    ],\n                    \"completeness_score\": 89,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safety_vests\": 100,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"sabv_csv_eav\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"number\": \"20023095\",\n                    \"category\": {\n                        \"level_1\": \"Safety\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 14848555,\n                    \"assets\": [],\n                    \"create_date\": 1659275185080,\n                    \"update_date\": 1743451112757,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004672153,\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855\n                    ],\n                    \"completeness_score\": 78,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safety_vests\": 50,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"number\": \"20023096\",\n                    \"category\": {\n                        \"level_1\": \"Safety\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 14848556,\n                    \"assets\": [],\n                    \"create_date\": 1659275196628,\n                    \"update_date\": 1743451112757,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855\n                    ],\n                    \"completeness_score\": 78,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safety_vests\": 50,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"number\": \"20023097\",\n                    \"category\": {\n                        \"level_1\": \"Safety\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 14848557,\n                    \"assets\": [],\n                    \"create_date\": 1659275201970,\n                    \"update_date\": 1743451112757,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855\n                    ],\n                    \"completeness_score\": 78,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safety_vests\": 50,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"number\": \"20023098\",\n                    \"category\": {\n                        \"level_1\": \"Safety\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 14848558,\n                    \"assets\": [],\n                    \"create_date\": 1659275210843,\n                    \"update_date\": 1743451112757,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855\n                    ],\n                    \"completeness_score\": 78,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safety_vests\": 50,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"number\": \"20023099\",\n                    \"category\": {\n                        \"level_1\": \"Safety\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 14848553,\n                    \"assets\": [],\n                    \"create_date\": 1659274842024,\n                    \"update_date\": 1743451112757,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004669016,\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004679224,\n                        4004681072\n                    ],\n                    \"completeness_score\": 89,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safety_vests\": 100,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"jfby_distributor_export_file\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 51\n                    },\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper (Orange)\",\n                    \"number\": \"20023094\",\n                    \"category\": {\n                        \"level_1\": \"Safety\"\n                    },\n                    \"status\": \"Active\"\n                }\n            ],\n            \"create_date\": 1659274797223,\n            \"update_date\": 1743451112757,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004669016,\n                4004672153,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004679224,\n                4004679801,\n                4004680228,\n                4004681072\n            ],\n            \"child_item_count\": 6,\n            \"variant_skus\": [\n                \"20023095\",\n                \"20023096\",\n                \"20023097\",\n                \"20023098\",\n                \"20023099\",\n                \"20023094\"\n            ],\n            \"completeness_score\": 89,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safety_vests\": 100,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n            \"number\": \"ERB S363\",\n            \"category\": {\n                \"level_1\": \"Safety\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"main_image\",\n                \"size_option\",\n                \"color_option\"\n            ]\n        },\n        {\n            \"id\": 14848554,\n            \"assets\": [],\n            \"create_date\": 1659275182220,\n            \"update_date\": 1743451112757,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672153,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004679224,\n                4004679801,\n                4004680228\n            ],\n            \"completeness_score\": 89,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safety_vests\": 100,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"sabv_csv_eav\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n            \"number\": \"20023095\",\n            \"category\": {\n                \"level_1\": \"Safety\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"main_image\",\n                \"size_option\",\n                \"color_option\"\n            ]\n        },\n        {\n            \"id\": 14848555,\n            \"assets\": [],\n            \"create_date\": 1659275185080,\n            \"update_date\": 1743451112757,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672153,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 78,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safety_vests\": 50,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n            \"number\": \"20023096\",\n            \"category\": {\n                \"level_1\": \"Safety\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"main_image\",\n                \"size_option\",\n                \"color_option\"\n            ]\n        },\n        {\n            \"id\": 14848556,\n            \"assets\": [],\n            \"create_date\": 1659275196628,\n            \"update_date\": 1743451112757,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 78,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safety_vests\": 50,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n            \"number\": \"20023097\",\n            \"category\": {\n                \"level_1\": \"Safety\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"main_image\",\n                \"size_option\",\n                \"color_option\"\n            ]\n        },\n        {\n            \"id\": 14848557,\n            \"assets\": [],\n            \"create_date\": 1659275201970,\n            \"update_date\": 1743451112757,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 78,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safety_vests\": 50,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n            \"number\": \"20023098\",\n            \"category\": {\n                \"level_1\": \"Safety\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"main_image\",\n                \"size_option\",\n                \"color_option\"\n            ]\n        },\n        {\n            \"id\": 14848558,\n            \"assets\": [],\n            \"create_date\": 1659275210843,\n            \"update_date\": 1743451112757,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 78,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safety_vests\": 50,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n            \"number\": \"20023099\",\n            \"category\": {\n                \"level_1\": \"Safety\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"main_image\",\n                \"size_option\",\n                \"color_option\"\n            ]\n        },\n        {\n            \"id\": 14848553,\n            \"assets\": [],\n            \"create_date\": 1659274842024,\n            \"update_date\": 1743451112757,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004669016,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004679224,\n                4004681072\n            ],\n            \"completeness_score\": 89,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safety_vests\": 100,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"jfby_distributor_export_file\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 51\n            },\n            \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper (Orange)\",\n            \"number\": \"20023094\",\n            \"category\": {\n                \"level_1\": \"Safety\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"main_image\",\n                \"size_option\",\n                \"color_option\"\n            ]\n        },\n        {\n            \"id\": 13949382,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 13949383,\n                    \"assets\": [],\n                    \"create_date\": 1635336244233,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855,\n                        4004678074\n                    ],\n                    \"completeness_score\": 60,\n                    \"catsy$attribute_group_scores\": {\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"specifications\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"np21_new_products_for_2021\": 0,\n                        \"vonw_sample_export_1\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"grills_registers\": 100\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-15\",\n                    \"category\": null,\n                    \"status\": null\n                },\n                {\n                    \"id\": 13949384,\n                    \"assets\": [],\n                    \"create_date\": 1635336262240,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855,\n                        4004678074\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"specifications\": 0,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"np21_new_products_for_2021\": 0,\n                        \"vonw_sample_export_1\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"grills_registers\": 100\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-19\",\n                    \"category\": null,\n                    \"status\": null\n                },\n                {\n                    \"id\": 13949385,\n                    \"assets\": [],\n                    \"create_date\": 1635336276324,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-22\",\n                    \"category\": null,\n                    \"status\": null\n                },\n                {\n                    \"id\": 13949386,\n                    \"assets\": [],\n                    \"create_date\": 1635336289622,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-29\",\n                    \"category\": null,\n                    \"status\": null\n                },\n                {\n                    \"id\": 13949387,\n                    \"assets\": [],\n                    \"create_date\": 1635336318801,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-35\",\n                    \"category\": null,\n                    \"status\": null\n                },\n                {\n                    \"id\": 13949388,\n                    \"assets\": [],\n                    \"create_date\": 1635336354262,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-40\",\n                    \"category\": null,\n                    \"status\": null\n                },\n                {\n                    \"id\": 13949389,\n                    \"assets\": [],\n                    \"create_date\": 1635336374474,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-44\",\n                    \"category\": null,\n                    \"status\": null\n                },\n                {\n                    \"id\": 13949390,\n                    \"assets\": [],\n                    \"create_date\": 1635336410235,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-53\",\n                    \"category\": null,\n                    \"status\": null\n                },\n                {\n                    \"id\": 13949391,\n                    \"assets\": [],\n                    \"create_date\": 1635336443889,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"number\": \"411-60\",\n                    \"category\": null,\n                    \"status\": null\n                }\n            ],\n            \"create_date\": 1635335976640,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855,\n                4004678074\n            ],\n            \"child_item_count\": 9,\n            \"variant_skus\": [\n                \"411-15\",\n                \"411-19\",\n                \"411-22\",\n                \"411-29\",\n                \"411-35\",\n                \"411-40\",\n                \"411-44\",\n                \"411-53\",\n                \"411-60\"\n            ],\n            \"completeness_score\": 40,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"side_tables\": 50,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Heavy Gauge Steel Floor Register\",\n            \"number\": \"411\",\n            \"category\": null,\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 16705104,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 16705117,\n                    \"assets\": [],\n                    \"create_date\": 1684760572763,\n                    \"update_date\": 1721573953164,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/4 in Drill Bit Size, 12 in Overall Lg, 1/4 in Shank Dia\",\n                    \"number\": \"19TH38\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705116,\n                    \"assets\": [],\n                    \"create_date\": 1684760506122,\n                    \"update_date\": 1721573953164,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/4 in Drill Bit Size, 4 in Overall Lg, 1/4 in Shank Dia\",\n                    \"number\": \"19TG98\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705111,\n                    \"assets\": [],\n                    \"create_date\": 1684759986595,\n                    \"update_date\": 1726083587416,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676855,\n                        4004677340,\n                        4004677747\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 33,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"vcxj_ddfdfd\": 5,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/8 in Drill Bit Size, 12 in Overall Lg, 1/8 in Shank Dia\",\n                    \"number\": \"19TH31\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705110,\n                    \"assets\": [],\n                    \"create_date\": 1684759826920,\n                    \"update_date\": 1743511315752,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004674614,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 71,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 33,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/8 in Drill Bit Size, 2 1/2 in Overall Lg, 1/8 in Shank Dia\",\n                    \"number\": \"19TG90\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705114,\n                    \"assets\": [],\n                    \"create_date\": 1684760232229,\n                    \"update_date\": 1721573953164,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 3/16 in Drill Bit Size, 12 in Overall Lg, 3/16 in Shank Dia\",\n                    \"number\": \"19TH35\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705113,\n                    \"assets\": [],\n                    \"create_date\": 1684760162871,\n                    \"update_date\": 1721573953164,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 3/16 in Drill Bit Size, 3 1/4 in Overall Lg, 3/16 in Shank Dia - change\",\n                    \"number\": \"19TG94\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705115,\n                    \"assets\": [],\n                    \"create_date\": 1684760373897,\n                    \"update_date\": 1721573953164,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 7/32 in Drill Bit Size, 3 1/2 in Overall Lg, 7/32 in Shank Dia\",\n                    \"number\": \"19TH70\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705109,\n                    \"assets\": [],\n                    \"create_date\": 1684759516308,\n                    \"update_date\": 1743511310757,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004674614,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 71,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 33,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"deep_research\": 100,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"IRWIN Brad Drill Bits: 1/8 in Drill Bit Size, 2 9/16 in Overall Lg, 1/8 in Shank Dia, Straight Shank\",\n                    \"number\": \"783YX4\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705112,\n                    \"assets\": [],\n                    \"create_date\": 1684760089839,\n                    \"update_date\": 1721573953164,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"IRWIN Brad Drill Bits: 3/16 in Drill Bit Size, 3 3/8 in Overall Lg, 3/16 in Shank Dia\",\n                    \"number\": \"783YX5\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 16705118,\n                    \"assets\": [],\n                    \"create_date\": 1684760656282,\n                    \"update_date\": 1721573953164,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004674202,\n                        4004676842,\n                        4004676855,\n                        4004677340\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"highspeed_drill_bits\": 100,\n                        \"tools\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"IRWIN Brad Drill Bits: 5/16 in Drill Bit Size, 4 9/16 in Overall Lg, 5/16 in Shank Dia\",\n                    \"number\": \"783YX6\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Drills\"\n                    },\n                    \"status\": \"Active\"\n                }\n            ],\n            \"create_date\": 1684756809314,\n            \"update_date\": 1743511315752,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004674614,\n                4004676842,\n                4004676855,\n                4004677340,\n                4004677747\n            ],\n            \"child_item_count\": 10,\n            \"variant_skus\": [\n                \"19TH38\",\n                \"19TG98\",\n                \"19TH31\",\n                \"19TG90\",\n                \"19TH35\",\n                \"19TG94\",\n                \"19TH70\",\n                \"783YX4\",\n                \"783YX5\",\n                \"783YX6\"\n            ],\n            \"completeness_score\": 75,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"High-Speed Steel Brad-Point Drill Bits\",\n            \"number\": \"BPDB\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705109,\n            \"assets\": [],\n            \"create_date\": 1684759516308,\n            \"update_date\": 1743511310757,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004674614,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 71,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 33,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"deep_research\": 100,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"IRWIN Brad Drill Bits: 1/8 in Drill Bit Size, 2 9/16 in Overall Lg, 1/8 in Shank Dia, Straight Shank\",\n            \"number\": \"783YX4\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705112,\n            \"assets\": [],\n            \"create_date\": 1684760089839,\n            \"update_date\": 1721573953164,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"IRWIN Brad Drill Bits: 3/16 in Drill Bit Size, 3 3/8 in Overall Lg, 3/16 in Shank Dia\",\n            \"number\": \"783YX5\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 16705118,\n            \"assets\": [],\n            \"create_date\": 1684760656282,\n            \"update_date\": 1721573953164,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"highspeed_drill_bits\": 100,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"IRWIN Brad Drill Bits: 5/16 in Drill Bit Size, 4 9/16 in Overall Lg, 5/16 in Shank Dia\",\n            \"number\": \"783YX6\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"shank_diameter\",\n                \"shank_type_machining\",\n                \"drill_bit_size\"\n            ]\n        },\n        {\n            \"id\": 14998167,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 14998167,\n                    \"assets\": [],\n                    \"create_date\": 1659964207295,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007783,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Peter V\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004679801,\n                        4004680228\n                    ],\n                    \"completeness_score\": 71,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 75,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"sabv_csv_eav\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Pliers\",\n                    \"number\": \"486134\",\n                    \"category\": null,\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 14998169,\n                    \"assets\": [],\n                    \"create_date\": 1659964325731,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007783,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Peter V\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004671528,\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680743\n                    ],\n                    \"completeness_score\": 57,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 50,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Pliers with rubber grip\",\n                    \"number\": \"20023164\",\n                    \"category\": null,\n                    \"status\": null\n                }\n            ],\n            \"create_date\": 1659964207295,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007783,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Peter V\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004671528,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004679801,\n                4004680228,\n                4004680743\n            ],\n            \"child_item_count\": 2,\n            \"variant_skus\": [\n                \"486134\",\n                \"20023164\"\n            ],\n            \"completeness_score\": 71,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 75,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"sabv_csv_eav\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Pliers\",\n            \"number\": \"486134\",\n            \"category\": null,\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 18321300,\n            \"assets\": [],\n            \"create_date\": 1709920654903,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004667334,\n                4004676842,\n                4004679922\n            ],\n            \"completeness_score\": 73,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"logistics\": 100,\n                \"specifications\": 0,\n                \"recicompressors\": 100\n            },\n            \"name\": \"Reciprocating Air Compressor - 160 PSI\",\n            \"number\": \"GFBDF-2\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 18321302,\n            \"assets\": [],\n            \"create_date\": 1709920673453,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004667334,\n                4004676842,\n                4004679922\n            ],\n            \"completeness_score\": 73,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"logistics\": 100,\n                \"specifications\": 0,\n                \"recicompressors\": 100\n            },\n            \"name\": \"Reciprocating Air Compressor - 170 PSI\",\n            \"number\": \"GFBDF-4\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 18321301,\n            \"assets\": [],\n            \"create_date\": 1709920665046,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004667334,\n                4004676842,\n                4004679922\n            ],\n            \"completeness_score\": 73,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"logistics\": 100,\n                \"specifications\": 0,\n                \"recicompressors\": 100\n            },\n            \"name\": \"Reciprocating Air Compressor - 190 PSI\",\n            \"number\": \"GFBDF-3\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412008,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 17412008,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1744203407196,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004678085,\n                        4004678178\n                    ],\n                    \"completeness_score\": 100,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 100,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"kqys_test_from_cj\": 0,\n                        \"pricing\": 100\n                    },\n                    \"name\": \"Reciprocating Compressor\",\n                    \"number\": \"RF-8052\",\n                    \"category\": {\n                        \"level_1\": \"Safety\",\n                        \"level_2\": \"Hard Hats\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17850740,\n                    \"assets\": [],\n                    \"create_date\": 1701915880175,\n                    \"update_date\": 1744203404190,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004678492,\n                        4004679134,\n                        4004680743,\n                        4004680746,\n                        4004681279\n                    ],\n                    \"completeness_score\": 90,\n                    \"catsy$attribute_group_scores\": {\n                        \"marketing\": 100,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"asset_gallery\": 100,\n                        \"led_lights\": 100,\n                        \"logistics\": 100,\n                        \"specifications\": 0,\n                        \"recicompressors\": 100,\n                        \"xhfs_june_25_export_dist_abc\": 0,\n                        \"zlgi_export_1\": 0\n                    },\n                    \"name\": \"170 PSI, AirStream Reciprocating Compressor\",\n                    \"number\": \"RF-8052E211\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412021,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1744203407196,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004674198,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004678074,\n                        4004678085,\n                        4004678178,\n                        4004678492,\n                        4004679134,\n                        4004679135,\n                        4004679224,\n                        4004680228,\n                        4004680318,\n                        4004680743,\n                        4004680746,\n                        4004681279\n                    ],\n                    \"completeness_score\": 100,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 100,\n                        \"tools\": 100,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"xhfs_june_25_export_dist_abc\": 0,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"zlgi_export_1\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 100,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"vonw_sample_export_1\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"kqys_test_from_cj\": 0\n                    },\n                    \"name\": \"Air Compressor, Reciprocating, 80 PSI\",\n                    \"number\": \"RF-8065\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17850739,\n                    \"assets\": [],\n                    \"create_date\": 1701915880175,\n                    \"update_date\": 1744203397728,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004678074,\n                        4004678085,\n                        4004678492,\n                        4004679134,\n                        4004680743,\n                        4004681279\n                    ],\n                    \"completeness_score\": 100,\n                    \"catsy$attribute_group_scores\": {\n                        \"marketing\": 100,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"asset_gallery\": 100,\n                        \"vonw_sample_export_1\": 0,\n                        \"logistics\": 100,\n                        \"kqys_test_from_cj\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"xhfs_june_25_export_dist_abc\": 0,\n                        \"zlgi_export_1\": 0\n                    },\n                    \"name\": \"180 PSI, AirStream Reciprocating Compressor\",\n                    \"number\": \"RF-8052D121\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17850741,\n                    \"assets\": [],\n                    \"create_date\": 1701915880175,\n                    \"update_date\": 1744203402257,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004679134,\n                        4004679224,\n                        4004680743,\n                        4004680746,\n                        4004681279\n                    ],\n                    \"completeness_score\": 90,\n                    \"catsy$attribute_group_scores\": {\n                        \"marketing\": 100,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"asset_gallery\": 100,\n                        \"logistics\": 100,\n                        \"specifications\": 0,\n                        \"recicompressors\": 100,\n                        \"zlgi_export_1\": 0\n                    },\n                    \"name\": \"160 PSI, AirStream Reciprocating Compressor\",\n                    \"number\": \"RF-8052F111\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1744203407196,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004674198,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004678074,\n                4004678085,\n                4004678178,\n                4004678492,\n                4004679134,\n                4004679135,\n                4004679224,\n                4004680228,\n                4004680318,\n                4004680743,\n                4004680746,\n                4004681279\n            ],\n            \"child_item_count\": 5,\n            \"variant_skus\": [\n                \"RF-8052\",\n                \"RF-8052E211\",\n                \"RF-8065\",\n                \"RF-8052D121\",\n                \"RF-8052F111\"\n            ],\n            \"completeness_score\": 100,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 100,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"kqys_test_from_cj\": 0,\n                \"pricing\": 100\n            },\n            \"name\": \"Reciprocating Compressor\",\n            \"number\": \"RF-8052\",\n            \"category\": {\n                \"level_1\": \"Safety\",\n                \"level_2\": \"Hard Hats\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412012,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004677903,\n                4004677904,\n                4004679135,\n                4004679922,\n                4004680221,\n                4004680228,\n                4004680317,\n                4004681032,\n                4004681072,\n                4004681078\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"ekmh_ekmh_export_for_distributor_3\": 0,\n                \"qktx_walmart\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"ugwt_csv_nightly_export\": 0,\n                \"slud_new_dis_export\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"jfby_distributor_export_file\": 0\n            },\n            \"name\": \"Reciprocating Compressor 100 PSI-132\",\n            \"number\": \"RF-8056\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412015,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004677903,\n                4004681078\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"ekmh_ekmh_export_for_distributor_3\": 0,\n                \"qktx_walmart\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"name\": \"Reciprocating Compressor 112 PSI-135\",\n            \"number\": \"RF-8059\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412010,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677342,\n                4004677903,\n                4004677904,\n                4004679135,\n                4004679922,\n                4004680188,\n                4004680221,\n                4004680228,\n                4004680317,\n                4004680743,\n                4004680746,\n                4004681032,\n                4004681072\n            ],\n            \"completeness_score\": 83,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"specifications\": 33,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"ugwt_csv_nightly_export\": 0,\n                \"slud_new_dis_export\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 100,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"erhw_csv_eav_3\": 0,\n                \"jfby_distributor_export_file\": 0,\n                \"zdsx_woocommerce_export\": 0\n            },\n            \"name\": \"Reciprocating Compressor 120 PSI-130\",\n            \"number\": \"RF-8054\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412013,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004677903,\n                4004677904,\n                4004680221,\n                4004681032,\n                4004681078\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"ekmh_ekmh_export_for_distributor_3\": 0,\n                \"qktx_walmart\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"ugwt_csv_nightly_export\": 0,\n                \"slud_new_dis_export\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"name\": \"Reciprocating Compressor 120 PSI-133\",\n            \"number\": \"RF-8057\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412016,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Reciprocating Compressor 120 PSI-136\",\n            \"number\": \"RF-8060\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412014,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004677903\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Reciprocating Compressor 125 PSI-134\",\n            \"number\": \"RF-8058\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412017,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Reciprocating Compressor 125 PSI-137\",\n            \"number\": \"RF-8061\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412018,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Reciprocating Compressor 130 PSI-138\",\n            \"number\": \"RF-8062\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412019,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Reciprocating Compressor 135 PSI-139\",\n            \"number\": \"RF-8063\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412020,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Reciprocating Compressor 140 PSI-140\",\n            \"number\": \"RF-8064\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412011,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004674198,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677342,\n                4004677654,\n                4004677903,\n                4004677904,\n                4004679135,\n                4004679922,\n                4004680188,\n                4004680221,\n                4004680228,\n                4004680317,\n                4004680743,\n                4004680746,\n                4004681072,\n                4004681078\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"ekmh_ekmh_export_for_distributor_3\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 75,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"ugwt_csv_nightly_export\": 0,\n                \"slud_new_dis_export\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"erhw_csv_eav_3\": 0,\n                \"jfby_distributor_export_file\": 0,\n                \"zdsx_woocommerce_export\": 0\n            },\n            \"name\": \"Reciprocating Compressor 200 PSI-200\",\n            \"number\": \"RF-8055\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412003,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 17412003,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1743511313208,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680318,\n                        4004680743\n                    ],\n                    \"completeness_score\": 79,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"tools\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 67,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n                    \"number\": \"RFOF-8052\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412004,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676855,\n                        4004677654,\n                        4004680318\n                    ],\n                    \"completeness_score\": 91,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"yboe_ad_export_annual\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n                    \"number\": \"RFOF-8053\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412005,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680318\n                    ],\n                    \"completeness_score\": 77,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 33,\n                        \"recicompressors\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n                    \"number\": \"RFOF-8055\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412006,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004680228,\n                        4004680318\n                    ],\n                    \"completeness_score\": 77,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 33,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 75,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"name\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n                    \"number\": \"RFOF-8056\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412007,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1743511313208,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676855,\n                        4004677654,\n                        4004680228\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"tools\": 100,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"name\": \"RedDot Oil-Free Air Compressor\",\n                    \"number\": \"RFOF-8058\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1743511313208,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654,\n                4004680228,\n                4004680318,\n                4004680743\n            ],\n            \"child_item_count\": 5,\n            \"variant_skus\": [\n                \"RFOF-8052\",\n                \"RFOF-8053\",\n                \"RFOF-8055\",\n                \"RFOF-8056\",\n                \"RFOF-8058\"\n            ],\n            \"completeness_score\": 79,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"tools\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"name\": \"RedDot 18 Gallon, 112 PSI Oil-Free Air Compressor\",\n            \"number\": \"RFOF-8052\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412004,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676855,\n                4004677654,\n                4004680318\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"yboe_ad_export_annual\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"name\": \"RedDot 20 Gallon, 120 PSI Oil-Free Air Compressor\",\n            \"number\": \"RFOF-8053\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412005,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004680318\n            ],\n            \"completeness_score\": 77,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 33,\n                \"recicompressors\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"RedDot 24 Gallon, 125 PSI Oil-Free Air Compressor\",\n            \"number\": \"RFOF-8055\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412006,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004680228,\n                4004680318\n            ],\n            \"completeness_score\": 77,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"specifications\": 33,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 75,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"name\": \"RedDot 32 Gallon, 150 PSI Oil-Free Air Compressor\",\n            \"number\": \"RFOF-8056\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412007,\n            \"assets\": [],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1743511313208,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004676842,\n                4004676855,\n                4004677654,\n                4004680228\n            ],\n            \"completeness_score\": 92,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"tools\": 100,\n                \"specifications\": 100,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"muko_new_dealer_2025_items\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"name\": \"RedDot Oil-Free Air Compressor\",\n            \"number\": \"RFOF-8058\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 17412009,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 17412012,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004677903,\n                        4004677904,\n                        4004679135,\n                        4004679922,\n                        4004680221,\n                        4004680228,\n                        4004680317,\n                        4004681032,\n                        4004681072,\n                        4004681078\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"ekmh_ekmh_export_for_distributor_3\": 0,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"ugwt_csv_nightly_export\": 0,\n                        \"slud_new_dis_export\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"jfby_distributor_export_file\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 100 PSI-132\",\n                    \"number\": \"RF-8056\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412015,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004677903,\n                        4004681078\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"ekmh_ekmh_export_for_distributor_3\": 0,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 112 PSI-135\",\n                    \"number\": \"RF-8059\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412010,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677342,\n                        4004677903,\n                        4004677904,\n                        4004679135,\n                        4004679922,\n                        4004680188,\n                        4004680221,\n                        4004680228,\n                        4004680317,\n                        4004680743,\n                        4004680746,\n                        4004681032,\n                        4004681072\n                    ],\n                    \"completeness_score\": 83,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 33,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"ugwt_csv_nightly_export\": 0,\n                        \"slud_new_dis_export\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 100,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"erhw_csv_eav_3\": 0,\n                        \"jfby_distributor_export_file\": 0,\n                        \"zdsx_woocommerce_export\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 120 PSI-130\",\n                    \"number\": \"RF-8054\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412013,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004677903,\n                        4004677904,\n                        4004680221,\n                        4004681032,\n                        4004681078\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"ekmh_ekmh_export_for_distributor_3\": 0,\n                        \"qktx_walmart\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"ugwt_csv_nightly_export\": 0,\n                        \"slud_new_dis_export\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 120 PSI-133\",\n                    \"number\": \"RF-8057\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412016,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 120 PSI-136\",\n                    \"number\": \"RF-8060\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412014,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654,\n                        4004677903\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 125 PSI-134\",\n                    \"number\": \"RF-8058\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412017,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 125 PSI-137\",\n                    \"number\": \"RF-8061\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412018,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 130 PSI-138\",\n                    \"number\": \"RF-8062\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412019,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 135 PSI-139\",\n                    \"number\": \"RF-8063\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412020,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677654\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 140 PSI-140\",\n                    \"number\": \"RF-8064\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                },\n                {\n                    \"id\": 17412011,\n                    \"assets\": [],\n                    \"create_date\": 1687852667006,\n                    \"update_date\": 1745049242074,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663064,\n                        4004674198,\n                        4004676842,\n                        4004676853,\n                        4004676855,\n                        4004677342,\n                        4004677654,\n                        4004677903,\n                        4004677904,\n                        4004679135,\n                        4004679922,\n                        4004680188,\n                        4004680221,\n                        4004680228,\n                        4004680317,\n                        4004680743,\n                        4004680746,\n                        4004681072,\n                        4004681078\n                    ],\n                    \"completeness_score\": 92,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"ekmh_ekmh_export_for_distributor_3\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 75,\n                        \"specifications\": 100,\n                        \"recicompressors\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"muko_new_dealer_2025_items\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"ugwt_csv_nightly_export\": 0,\n                        \"slud_new_dis_export\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"s220_summer_2021_products\": 0,\n                        \"marketing\": 67,\n                        \"core\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"erhw_csv_eav_3\": 0,\n                        \"jfby_distributor_export_file\": 0,\n                        \"zdsx_woocommerce_export\": 0\n                    },\n                    \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                    \"number\": \"RF-8055\",\n                    \"category\": {\n                        \"level_1\": \"Tools\",\n                        \"level_2\": \"Power Tools\",\n                        \"level_3\": \"Compressors\"\n                    },\n                    \"status\": \"Active\"\n                }\n            ],\n            \"create_date\": 1687852667006,\n            \"update_date\": 1745049242074,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663064,\n                4004663557,\n                4004674198,\n                4004676720,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677342,\n                4004677654,\n                4004677903,\n                4004677904,\n                4004679135,\n                4004679922,\n                4004680188,\n                4004680221,\n                4004680228,\n                4004680317,\n                4004680743,\n                4004680746,\n                4004681032,\n                4004681072,\n                4004681078\n            ],\n            \"child_item_count\": 11,\n            \"variant_skus\": [\n                \"RF-8056\",\n                \"RF-8059\",\n                \"RF-8054\",\n                \"RF-8057\",\n                \"RF-8060\",\n                \"RF-8058\",\n                \"RF-8061\",\n                \"RF-8062\",\n                \"RF-8063\",\n                \"RF-8064\",\n                \"RF-8055\"\n            ],\n            \"completeness_score\": 100,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 100,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"asset_gallery\": 100,\n                \"l217_lowes_2021_export\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"logistics\": 100,\n                \"specifications\": 100,\n                \"recicompressors\": 100\n            },\n            \"name\": \"RF101..\",\n            \"number\": \"RF\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        },\n        {\n            \"id\": 15020524,\n            \"assets\": [],\n            \"create_date\": 1660922604165,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007783,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Peter V\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004669015,\n                4004672791,\n                4004672957,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 67,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"power_tools\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 33,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 100,\n                \"specifications\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 75,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Rock 20V MAX Cordless Power Drill, Brushless Motor\",\n            \"number\": \"CPD1001\",\n            \"category\": null,\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 13072497,\n            \"assets\": [],\n            \"create_date\": 1613399043219,\n            \"update_date\": 1743511311838,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663488,\n                4004672791,\n                4004674198,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 69,\n            \"catsy$attribute_group_scores\": {\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 100,\n                \"tools\": 100,\n                \"specifications\": 33,\n                \"recicompressors\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"deep_research\": 100,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"power_tools\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 33,\n                \"core\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"name\": \"SAMMY X-PRESS Installation Tool\",\n            \"number\": \"755Z\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Saws\"\n            },\n            \"status\": \"Active\"\n        },\n        {\n            \"id\": 13116362,\n            \"assets\": [],\n            \"create_date\": 1614078952737,\n            \"update_date\": 1741890968494,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004681032\n            ],\n            \"completeness_score\": 43,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 33,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Slim Chuck\",\n            \"number\": \"20010901\",\n            \"category\": null,\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"capacity\",\n                \"code\",\n                \"grip_length\",\n                \"length\"\n            ]\n        },\n        {\n            \"id\": 13116363,\n            \"assets\": [],\n            \"create_date\": 1614078974418,\n            \"update_date\": 1741890968494,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004681072\n            ],\n            \"completeness_score\": 43,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 33,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"jfby_distributor_export_file\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Slim Chuck\",\n            \"number\": \"20010902\",\n            \"category\": null,\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"capacity\",\n                \"code\",\n                \"grip_length\",\n                \"length\"\n            ]\n        },\n        {\n            \"id\": 13116222,\n            \"assets\": [],\n            \"create_date\": 1614000698176,\n            \"update_date\": 1741890968494,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663467,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004681032\n            ],\n            \"completeness_score\": 57,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"power_tools\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 33,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"Slim Chuck - ABC / Demo on March 13\",\n            \"number\": \"BT30-SK10-120\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"capacity\",\n                \"code\",\n                \"grip_length\",\n                \"length\"\n            ]\n        },\n        {\n            \"id\": 16705127,\n            \"assets\": [],\n            \"create_date\": 1684761981749,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004674202,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677340\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"drill_reamers\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"tools\": 0,\n                \"s220_summer_2021_products\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"name\": \"WESTWARD Double End Drill Bit: #20 Drill Bit Size, 1/2 in Flute Lg, 5/32 in Shank Dia., Split Point\",\n            \"number\": \"2UFF8\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\"\n            },\n            \"status\": \"Active\",\n            \"catsy$option_attribute_keys\": [\n                \"drill_bit_size\",\n                \"shank_diameter\",\n                \"overall_length\"\n            ]\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 70,\n        \"results_per_page\": 100,\n        \"total_pages\": 1,\n        \"current_page\": 1\n    }\n}"},{"id":"646b44b8-b8f2-4500-ad8e-d433983ef5ce","name":"Contains & Does Not Contain","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"attributeKeys\": [\"capacity\"],\r\n  \"filters\": [\r\n    {\r\n      \"attributeKey\": \"capacity\",\r\n      \"operator\": \"contains\",\r\n      \"value\": \"13\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"capacity\",\r\n      \"operator\": \"does not contain\",\r\n      \"value\": \"ounces\"\r\n    }\r\n  ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products/filter","host":["https://api.catsy.com/v4"],"path":["products","filter"],"query":[{"key":"limit","value":null,"description":"The maximum number of products to return per request. Use in combination with offset for pagination.","disabled":true},{"key":"offset","value":null,"description":"The number of products to skip before starting to collect the result set. Used for pagination.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 18:32:17 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=dg%2FicZl5QT5%2BSyCUE%2B0kVKdSHXoriMGFPsTqVdRjp9OT4IdALEVDXE7c7DeIin0XpZGMNHq5p3VkUBIxR6Ko9Hex4yXXvkZ39H4aYadguti6vGRLa7NaMrFPsQxdxQ4%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933ef6915feb2009-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2479&min_rtt=2360&rtt_var=970&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1443&delivery_rate=613559&cwnd=247&unsent_bytes=0&cid=c16f16e4b1da9bbe&ts=556&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 13910988,\n            \"assets\": [],\n            \"create_date\": 1633441498481,\n            \"update_date\": 1745259617845,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"marketing\": 100,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"pliers\": 50,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"LP10WC\",\n            \"capacity\": \"13 Gallons\"\n        },\n        {\n            \"id\": 13116222,\n            \"assets\": [],\n            \"create_date\": 1614000698176,\n            \"update_date\": 1741890968494,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663467,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004681032\n            ],\n            \"completeness_score\": 57,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"power_tools\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 33,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"BT30-SK10-120\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"capacity\",\n                \"code\",\n                \"grip_length\",\n                \"length\"\n            ]\n        },\n        {\n            \"id\": 13116362,\n            \"assets\": [],\n            \"create_date\": 1614078952737,\n            \"update_date\": 1741890968494,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004681032\n            ],\n            \"completeness_score\": 43,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 33,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"20010901\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"capacity\",\n                \"code\",\n                \"grip_length\",\n                \"length\"\n            ]\n        },\n        {\n            \"id\": 13116363,\n            \"assets\": [],\n            \"create_date\": 1614078974418,\n            \"update_date\": 1741890968494,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004681072\n            ],\n            \"completeness_score\": 43,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 33,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"jfby_distributor_export_file\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"20010902\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"capacity\",\n                \"code\",\n                \"grip_length\",\n                \"length\"\n            ]\n        },\n        {\n            \"id\": 13295339,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 13295340,\n                    \"assets\": [],\n                    \"create_date\": 1620223485741,\n                    \"update_date\": 1741109274023,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663695,\n                        4004672791,\n                        4004674198,\n                        4004676842,\n                        4004676853,\n                        4004676855\n                    ],\n                    \"completeness_score\": 63,\n                    \"catsy$attribute_group_scores\": {\n                        \"asset_gallery\": 100,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 100,\n                        \"specifications\": 0,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"deep_research\": 100,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 46,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 50,\n                        \"core\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhuq_build_ferguson\": 0\n                    },\n                    \"number\": \"8601040\",\n                    \"capacity\": \"13 Gallons\"\n                }\n            ],\n            \"create_date\": 1620223485741,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663695,\n                4004672791,\n                4004674198,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"child_item_count\": 1,\n            \"variant_skus\": [\n                \"8601040\"\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"f8_fastenal\": 46,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 67,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"deep_research\": 100,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"2200WNK\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"saw_teeth_size\"\n            ]\n        },\n        {\n            \"id\": 13295340,\n            \"assets\": [],\n            \"create_date\": 1620223485741,\n            \"update_date\": 1741109274023,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663695,\n                4004672791,\n                4004674198,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 63,\n            \"catsy$attribute_group_scores\": {\n                \"asset_gallery\": 100,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 100,\n                \"specifications\": 0,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"deep_research\": 100,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 46,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 50,\n                \"core\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhuq_build_ferguson\": 0\n            },\n            \"number\": \"8601040\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"saw_teeth_size\"\n            ]\n        },\n        {\n            \"id\": 13949314,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 13949380,\n                    \"assets\": [],\n                    \"create_date\": 1635335124719,\n                    \"update_date\": 1719452459047,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855,\n                        4004678085\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"water_lines\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"WSL-3848-WLK1\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949379,\n                    \"assets\": [],\n                    \"create_date\": 1635335087936,\n                    \"update_date\": 1719452457079,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"water_lines\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"WSL-2572-WLK1\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949378,\n                    \"assets\": [],\n                    \"create_date\": 1635335057813,\n                    \"update_date\": 1719452454049,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676853,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"water_lines\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"WSL-2548-WLK1\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949381,\n                    \"assets\": [],\n                    \"create_date\": 1635335180326,\n                    \"update_date\": 1719452450610,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855,\n                        4004678085\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"water_lines\": 100,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"WSL-3872-WLK1\",\n                    \"capacity\": \"13 Gallons\"\n                }\n            ],\n            \"create_date\": 1635293123347,\n            \"update_date\": 1719452459047,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004678085\n            ],\n            \"child_item_count\": 4,\n            \"variant_skus\": [\n                \"WSL-3848-WLK1\",\n                \"WSL-2572-WLK1\",\n                \"WSL-2548-WLK1\",\n                \"WSL-3872-WLK1\"\n            ],\n            \"completeness_score\": 50,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 50,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"water_lines\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"WSL-2548\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"inside_diameter\",\n                \"length\",\n                \"list_price\"\n            ]\n        },\n        {\n            \"id\": 13949380,\n            \"assets\": [],\n            \"create_date\": 1635335124719,\n            \"update_date\": 1719452459047,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855,\n                4004678085\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"water_lines\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"WSL-3848-WLK1\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"inside_diameter\",\n                \"length\",\n                \"list_price\"\n            ]\n        },\n        {\n            \"id\": 13949379,\n            \"assets\": [],\n            \"create_date\": 1635335087936,\n            \"update_date\": 1719452457079,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"water_lines\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"WSL-2572-WLK1\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"inside_diameter\",\n                \"length\",\n                \"list_price\"\n            ]\n        },\n        {\n            \"id\": 13949378,\n            \"assets\": [],\n            \"create_date\": 1635335057813,\n            \"update_date\": 1719452454049,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"water_lines\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"WSL-2548-WLK1\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"inside_diameter\",\n                \"length\",\n                \"list_price\"\n            ]\n        },\n        {\n            \"id\": 13949381,\n            \"assets\": [],\n            \"create_date\": 1635335180326,\n            \"update_date\": 1719452450610,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855,\n                4004678085\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"water_lines\": 100,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"WSL-3872-WLK1\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"inside_diameter\",\n                \"length\",\n                \"list_price\"\n            ]\n        },\n        {\n            \"id\": 13949382,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 13949383,\n                    \"assets\": [],\n                    \"create_date\": 1635336244233,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855,\n                        4004678074\n                    ],\n                    \"completeness_score\": 60,\n                    \"catsy$attribute_group_scores\": {\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"specifications\": 100,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"vonw_sample_export_1\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"grills_registers\": 100\n                    },\n                    \"number\": \"411-15\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949384,\n                    \"assets\": [],\n                    \"create_date\": 1635336262240,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855,\n                        4004678074\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"specifications\": 0,\n                        \"digital_assets\": 100,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0,\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"md15_menards_dot_com\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"s220_summer_2021_products\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"vonw_sample_export_1\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"grills_registers\": 100\n                    },\n                    \"number\": \"411-19\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949385,\n                    \"assets\": [],\n                    \"create_date\": 1635336276324,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"411-22\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949386,\n                    \"assets\": [],\n                    \"create_date\": 1635336289622,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"411-29\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949387,\n                    \"assets\": [],\n                    \"create_date\": 1635336318801,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"411-35\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949388,\n                    \"assets\": [],\n                    \"create_date\": 1635336354262,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"411-40\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949389,\n                    \"assets\": [],\n                    \"create_date\": 1635336374474,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"411-44\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949390,\n                    \"assets\": [],\n                    \"create_date\": 1635336410235,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"411-53\",\n                    \"capacity\": \"13 Gallons\"\n                },\n                {\n                    \"id\": 13949391,\n                    \"assets\": [],\n                    \"create_date\": 1635336443889,\n                    \"update_date\": 1712258688185,\n                    \"create_user_id\": 4018007131,\n                    \"update_user_id\": 4018007131,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_name\": \"Super Admin\",\n                    \"collections\": [\n                        4004663557,\n                        4004672791,\n                        4004676842,\n                        4004676855\n                    ],\n                    \"completeness_score\": 38,\n                    \"catsy$attribute_group_scores\": {\n                        \"f8_fastenal\": 0,\n                        \"fc20_fall_collection_2021\": 0,\n                        \"rltt_ferguson_products\": 0,\n                        \"logistics\": 100,\n                        \"md15_menards_dot_com\": 0,\n                        \"qktx_walmart\": 0,\n                        \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                        \"safj_gvhjkl\": 0,\n                        \"specifications\": 0,\n                        \"marketing\": 25,\n                        \"core\": 67,\n                        \"digital_assets\": 100,\n                        \"s220_summer_2021_products\": 0,\n                        \"xhuf_website\": 0,\n                        \"hrya_acme_export\": 0,\n                        \"l217_lowes_2021_export\": 0,\n                        \"np21_new_products_for_2021\": 0,\n                        \"xhzi_malco_zoro\": 0,\n                        \"eoxh_power_bi\": 0,\n                        \"xhuq_build_ferguson\": 0,\n                        \"cqdm_salesforce\": 0,\n                        \"grills_registers\": 100,\n                        \"ce25_city_electric_spring_2021\": 0,\n                        \"onan_amazon\": 0\n                    },\n                    \"number\": \"411-60\",\n                    \"capacity\": \"13 Gallons\"\n                }\n            ],\n            \"create_date\": 1635335976640,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855,\n                4004678074\n            ],\n            \"child_item_count\": 9,\n            \"variant_skus\": [\n                \"411-15\",\n                \"411-19\",\n                \"411-22\",\n                \"411-29\",\n                \"411-35\",\n                \"411-40\",\n                \"411-44\",\n                \"411-53\",\n                \"411-60\"\n            ],\n            \"completeness_score\": 40,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"side_tables\": 50,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"411\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949383,\n            \"assets\": [],\n            \"create_date\": 1635336244233,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855,\n                4004678074\n            ],\n            \"completeness_score\": 60,\n            \"catsy$attribute_group_scores\": {\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"specifications\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"vonw_sample_export_1\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"grills_registers\": 100\n            },\n            \"number\": \"411-15\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949384,\n            \"assets\": [],\n            \"create_date\": 1635336262240,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855,\n                4004678074\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"specifications\": 0,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0,\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"md15_menards_dot_com\": 0,\n                \"safj_gvhjkl\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"s220_summer_2021_products\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"vonw_sample_export_1\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"grills_registers\": 100\n            },\n            \"number\": \"411-19\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949385,\n            \"assets\": [],\n            \"create_date\": 1635336276324,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"grills_registers\": 100,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"411-22\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949386,\n            \"assets\": [],\n            \"create_date\": 1635336289622,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"grills_registers\": 100,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"411-29\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949387,\n            \"assets\": [],\n            \"create_date\": 1635336318801,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"grills_registers\": 100,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"411-35\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949388,\n            \"assets\": [],\n            \"create_date\": 1635336354262,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"grills_registers\": 100,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"411-40\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949389,\n            \"assets\": [],\n            \"create_date\": 1635336374474,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"grills_registers\": 100,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"411-44\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949390,\n            \"assets\": [],\n            \"create_date\": 1635336410235,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"grills_registers\": 100,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"411-53\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13949391,\n            \"assets\": [],\n            \"create_date\": 1635336443889,\n            \"update_date\": 1712258688185,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004663557,\n                4004672791,\n                4004676842,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"rgzv_b2b_industrial_preliminary_demo\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"grills_registers\": 100,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"411-60\",\n            \"capacity\": \"13 Gallons\",\n            \"catsy$option_attribute_keys\": [\n                \"free_area_sq_in\"\n            ]\n        },\n        {\n            \"id\": 13910548,\n            \"assets\": [],\n            \"create_date\": 1632946986357,\n            \"update_date\": 1709320921548,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855\n            ],\n            \"completeness_score\": 38,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"power_tools\": 100,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 0,\n                \"marketing\": 25,\n                \"core\": 67,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"PLE411PF\",\n            \"capacity\": \"13 Gallons\"\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 22,\n        \"results_per_page\": 100,\n        \"total_pages\": 1,\n        \"current_page\": 1\n    }\n}"},{"id":"6871fab8-91f4-4e15-b0a0-c453d3ec7160","name":"Empty & Not Empty","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"attributeKeys\": [\"jaw_type\", \"jaw_capacity\"],\r\n  \"filters\": [\r\n    {\r\n      \"attributeKey\": \"jaw_type\",\r\n      \"operator\": \"is empty\",\r\n      \"value\": []\r\n    },\r\n    {\r\n      \"attributeKey\": \"jaw_capacity\",\r\n      \"operator\": \"is not empty\",\r\n      \"value\": []\r\n    }\r\n  ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products/filter","host":["https://api.catsy.com/v4"],"path":["products","filter"],"query":[{"key":"limit","value":null,"description":"The maximum number of products to return per request. Use in combination with offset for pagination.","disabled":true},{"key":"offset","value":null,"description":"The number of products to skip before starting to collect the result set. Used for pagination.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 18:33:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=NrZBshO4fVKBuZS1OIqYNDRcNHjjsMbG%2BIxXCsBba98vnt0ZvCQi%2BEPnBMrBxMsMJfh6CHzQtwcizmZj0fONo%2Fauf25uI1xJUWIUMkIUgr01xe50c22U8e7Ft7wzbwA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933ef8027c363afa-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2398&min_rtt=2195&rtt_var=968&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1451&delivery_rate=659681&cwnd=250&unsent_bytes=0&cid=d922fb8b3f36832f&ts=307&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 13910988,\n            \"assets\": [],\n            \"create_date\": 1633441498481,\n            \"update_date\": 1745259617845,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"marketing\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"pliers\": 50,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"LP10WC\",\n            \"jaw_type\": null,\n            \"jaw_capacity\": \"1-5/16″\"\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 1,\n        \"results_per_page\": 100,\n        \"total_pages\": 1,\n        \"current_page\": 1\n    }\n}"},{"id":"3d8e8aa8-2a72-41df-8e8e-32535d77b74e","name":"Starts With / Ends With","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"attributeKeys\": [\"number\"],\r\n  \"filters\": [\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"starts with\",\r\n      \"value\": \"LP\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"does not start with\",\r\n      \"value\": \"TO\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"ends with\",\r\n      \"value\": \"WC\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"does not end with\",\r\n      \"value\": \"-XS\"\r\n    }\r\n  ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products/filter","host":["https://api.catsy.com/v4"],"path":["products","filter"],"query":[{"key":"limit","value":null,"description":"The maximum number of products to return per request. Use in combination with offset for pagination.","disabled":true},{"key":"offset","value":null,"description":"The number of products to skip before starting to collect the result set. Used for pagination.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 18:33:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=4%2B33SMDy5kWo1t2RVEuKQZkrOp0vXBNVfHIKU5JEnY5tzz05oHxj647XTdXMNEPZ%2BmIzqSx5hAyyPO8%2Bm3Me8w2nu7YXe8FJzRFdZDduOxA1uQY6%2Fgf9xAp3tX%2B1Vz8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933ef8990f863afa-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=7385&min_rtt=2195&rtt_var=10585&sent=8&recv=8&lost=0&retrans=0&sent_bytes=2282&recv_bytes=2391&delivery_rate=1934966&cwnd=254&unsent_bytes=0&cid=d922fb8b3f36832f&ts=24325&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 13910988,\n            \"assets\": [],\n            \"create_date\": 1633441498481,\n            \"update_date\": 1745259617845,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"marketing\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"pliers\": 50,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"LP10WC\"\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 1,\n        \"results_per_page\": 100,\n        \"total_pages\": 1,\n        \"current_page\": 1\n    }\n}"},{"id":"c122e5d5-c8ab-453c-ac30-0fd3b894d002","name":"Price / Date Range","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"attributeKeys\": [\"regular_price\"],\r\n  \"filters\": [\r\n    {\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"between\",\r\n      \"lowerBoundValue\": \"10\",\r\n      \"upperBoundValue\": \"80\",\r\n      \"value\": []\r\n    },\r\n    {\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"<\",\r\n      \"upperBoundValue\": \"99.99\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \"<=\",\r\n      \"upperBoundValue\": \"94.99\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \">\",\r\n      \"lowerBoundValue\": \"10\"\r\n    },\r\n    {\r\n      \"attributeKey\": \"regular_price\",\r\n      \"operator\": \">=\",\r\n      \"lowerBoundValue\": \"9.99\"\r\n    }\r\n  ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products/filter","host":["https://api.catsy.com/v4"],"path":["products","filter"],"query":[{"key":"limit","value":null,"description":"The maximum number of products to return per request. Use in combination with offset for pagination.","disabled":true},{"key":"offset","value":null,"description":"The number of products to skip before starting to collect the result set. Used for pagination.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 18:33:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=4%2B33SMDy5kWo1t2RVEuKQZkrOp0vXBNVfHIKU5JEnY5tzz05oHxj647XTdXMNEPZ%2BmIzqSx5hAyyPO8%2Bm3Me8w2nu7YXe8FJzRFdZDduOxA1uQY6%2Fgf9xAp3tX%2B1Vz8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933ef8990f863afa-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=7385&min_rtt=2195&rtt_var=10585&sent=8&recv=8&lost=0&retrans=0&sent_bytes=2282&recv_bytes=2391&delivery_rate=1934966&cwnd=254&unsent_bytes=0&cid=d922fb8b3f36832f&ts=24325&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 13910988,\n            \"assets\": [],\n            \"create_date\": 1633441498481,\n            \"update_date\": 1745259617845,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"marketing\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"pliers\": 50,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"LP10WC\"\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 1,\n        \"results_per_page\": 100,\n        \"total_pages\": 1,\n        \"current_page\": 1\n    }\n}"},{"id":"3c8fa71c-4305-4bd3-ad25-71dc2882941f","name":"Is Exactly Bulk (Multi Search)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"attributeKeys\": [\"number\"],\r\n  \"filters\": [\r\n    {\r\n      \"attributeKey\": \"number\",\r\n      \"operator\": \"is exactly bulk\",\r\n      \"value\": \"LP10WC\\nSPE256-50-220\"\r\n    }\r\n  ]\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/products/filter","host":["https://api.catsy.com/v4"],"path":["products","filter"],"query":[{"key":"limit","value":null,"description":"The maximum number of products to return per request. Use in combination with offset for pagination.","disabled":true},{"key":"offset","value":null,"description":"The number of products to skip before starting to collect the result set. Used for pagination.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 20:38:40 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=SiaaUCBKhAyoyXZgBw2TE58goB7qEleikXLLrs3LXrTX6yemcGd3vKP15VEzCFKVjhdC1sy25%2BzZ20JrDE0ISkzxTcw1eoXBqjdz%2BUOZfakt5t1uBst7m3la0avpgqE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933fafb72be32d10-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2325&min_rtt=2149&rtt_var=932&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1338&delivery_rate=673801&cwnd=230&unsent_bytes=0&cid=f58dc946b6b215bc&ts=293&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 13910988,\n            \"assets\": [],\n            \"create_date\": 1633441498481,\n            \"update_date\": 1745259617845,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004672791,\n                4004676842,\n                4004676853,\n                4004676855,\n                4004677654\n            ],\n            \"completeness_score\": 91,\n            \"catsy$attribute_group_scores\": {\n                \"f8_fastenal\": 0,\n                \"fc20_fall_collection_2021\": 0,\n                \"rltt_ferguson_products\": 0,\n                \"logistics\": 100,\n                \"md15_menards_dot_com\": 0,\n                \"qktx_walmart\": 0,\n                \"safj_gvhjkl\": 0,\n                \"specifications\": 100,\n                \"marketing\": 100,\n                \"core\": 100,\n                \"digital_assets\": 100,\n                \"s220_summer_2021_products\": 0,\n                \"xhuf_website\": 0,\n                \"hrya_acme_export\": 0,\n                \"l217_lowes_2021_export\": 0,\n                \"np21_new_products_for_2021\": 0,\n                \"xhzi_malco_zoro\": 0,\n                \"eoxh_power_bi\": 0,\n                \"xhuq_build_ferguson\": 0,\n                \"pliers\": 50,\n                \"cqdm_salesforce\": 0,\n                \"ce25_city_electric_spring_2021\": 0,\n                \"onan_amazon\": 0\n            },\n            \"number\": \"LP10WC\"\n        },\n        {\n            \"id\": 21527848,\n            \"assets\": [],\n            \"create_date\": 1744736753538,\n            \"update_date\": 1744736753620,\n            \"create_user_id\": 4018007131,\n            \"update_user_id\": 4018007131,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_name\": \"Super Admin\",\n            \"collections\": [\n                4004676842\n            ],\n            \"completeness_score\": 17,\n            \"catsy$attribute_group_scores\": {\n                \"marketing\": 0,\n                \"core\": 33,\n                \"digital_assets\": 0,\n                \"asset_gallery\": 100,\n                \"deep_research\": 100,\n                \"logistics\": 100,\n                \"pricing\": 100\n            },\n            \"number\": \"SPE256-50-220\"\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 2,\n        \"results_per_page\": 100,\n        \"total_pages\": 1,\n        \"current_page\": 1\n    }\n}"}],"_postman_id":"cd9e472f-35d6-4ab0-91b2-6a60a0f20d20"},{"name":"Count Products","id":"5e431bbf-993b-4217-8c29-bdb2825109ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKey\": \"regular_price\",\r\n    \"operator\": \"between\",\r\n    \"lowerBoundValue\": \"10\",\r\n    \"upperBoundValue\": \"80\",\r\n    \"value\": []\r\n  },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \"<\", \"upperBoundValue\": \"99.99\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \"<=\", \"upperBoundValue\": \"94.99\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \">\", \"lowerBoundValue\": \"10\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \">=\", \"lowerBoundValue\": \"9.99\" }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/filter/count","description":"<h3 id=\"count-products\"><strong>Count Products</strong></h3>\n<p>Use this endpoint to retrieve a count of products based on filters.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["products","filter","count"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"0dac0c4e-b3d3-4a9a-8033-60f4cba0f000","name":"All Available Filters","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  { \"attributeKey\": \"status\", \"operator\": \"is\", \"value\": \"Active\" },\r\n  { \"attributeKey\": \"status\", \"operator\": \"not\", \"value\": \"Inactive\" },\r\n  { \"attributeKey\": \"capacity\", \"operator\": \"contains\", \"value\": \"13\" },\r\n  { \"attributeKey\": \"capacity\", \"operator\": \"does not contain\", \"value\": \"ounces\" },\r\n  { \"attributeKey\": \"jaw_type\", \"operator\": \"is empty\", \"value\": [] },\r\n  { \"attributeKey\": \"jaw_capacity\", \"operator\": \"is not empty\", \"value\": [] },\r\n  { \"attributeKey\": \"number\", \"operator\": \"starts with\", \"value\": \"LP\" },\r\n  { \"attributeKey\": \"number\", \"operator\": \"does not start with\", \"value\": \"TO\" },\r\n  { \"attributeKey\": \"number\", \"operator\": \"ends with\", \"value\": \"WC\" },\r\n  { \"attributeKey\": \"number\", \"operator\": \"does not end with\", \"value\": \"-XS\" },\r\n  {\r\n    \"attributeKey\": \"regular_price\",\r\n    \"operator\": \"between\",\r\n    \"lowerBoundValue\": \"10\",\r\n    \"upperBoundValue\": \"80\",\r\n    \"value\": []\r\n  },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \"<\", \"upperBoundValue\": \"99.99\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \"<=\", \"upperBoundValue\": \"94.99\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \">\", \"lowerBoundValue\": \"10\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \">=\", \"lowerBoundValue\": \"9.99\" }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/filter/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 19:12:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=K%2FQmxVvEPW7I6tq16yNQNcVUQ2mBmhq%2BijlaRBXmSgmhd%2BYKDRKYFWVCI1Klfhu2leWWTZHAAr8u%2F8serUo%2FKiQoCB5QWQQnHTgC%2BFzLTYYFvAzO9pmmtv%2B5yqr7ooA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933f3115a98607bc-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2353&min_rtt=2260&rtt_var=914&sent=4&recv=6&lost=0&retrans=0&sent_bytes=2817&recv_bytes=2423&delivery_rate=1281415&cwnd=248&unsent_bytes=0&cid=bb183c65f119b4cd&ts=247&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"1"},{"id":"90cd8a76-9fe5-49c4-8bf3-3da1d0394bf4","name":"Basic Equality & Category Filters","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKey\": \"status\",\r\n    \"operator\": \"is\",\r\n    \"value\": \"Active\"\r\n  },\r\n  {\r\n    \"attributeKey\": \"status\",\r\n    \"operator\": \"not\",\r\n    \"value\": \"Inactive\"\r\n  },\r\n  {\r\n    \"attributeKey\": \"category\",\r\n    \"operator\": \"is\",\r\n    \"value\": \"Tools\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/filter/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 19:13:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=Z7lUC8br9qt1BPbNG3Nu%2FhIGGBO09PX3jzLBmOKP3hG1eoASdrmSK3aDvqSVJQVH7fvQ7eHXJFCKKL9Lw8BDwX32J8Zldu2BUYFf65LmVqrqUc7VPT8JFFJ1jNZQVuU%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933f328a28b92285-CDG","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=80154&min_rtt=79983&rtt_var=17080&sent=8&recv=8&lost=0&retrans=0&sent_bytes=1749&recv_bytes=2178&delivery_rate=71706&cwnd=35&unsent_bytes=0&cid=817d767a1591799a&ts=19821&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"52"},{"id":"da1c3c8c-4c52-4589-9122-16d996169a4c","name":"Contains & Does Not Contain","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  { \"attributeKey\": \"capacity\", \"operator\": \"contains\", \"value\": \"13\" },\r\n  { \"attributeKey\": \"capacity\", \"operator\": \"does not contain\", \"value\": \"ounces\" }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/filter/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 19:14:56 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=yijT2TRgG82tbP7MKjm8KkgfunzfQv%2Bc%2FfWK50QsZr1qlZEhO0%2BFtDO8gW%2BX3TkeHqanz0ISCmxPaW4ysaiqoCL5GFnrV9FyufiHJzCfPTukfsADv9CC9JcyXiWqQ6w%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933f3509093f2292-CDG","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=77808&min_rtt=77481&rtt_var=29289&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1325&delivery_rate=18688&cwnd=31&unsent_bytes=0&cid=887aa7fa317b273c&ts=623&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"22"},{"id":"1dc4abf0-ec3d-4bf4-abce-4c66cf4ae57d","name":"Empty & Not Empty","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  { \"attributeKey\": \"jaw_type\", \"operator\": \"is empty\", \"value\": [] },\r\n  { \"attributeKey\": \"jaw_capacity\", \"operator\": \"is not empty\", \"value\": [] }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/filter/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 19:15:14 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=dHhaMN6twkIoGlVWoPgqiiQSAy%2B%2F0Xc2t7h4GFeBQCzxE2bjiCeOHm%2B1pzpf3BRUoob%2FWDhdxDAkXKmVzHThMdpSLrFmY5fmwGYibLc2EEurVkjDqotU9S5FvOl1L0w%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933f357e2afc3cb6-CDG","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=79858&min_rtt=79635&rtt_var=30022&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2817&recv_bytes=1317&delivery_rate=36365&cwnd=32&unsent_bytes=0&cid=afb9efe9773ab612&ts=632&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"1"},{"id":"8c35ed5d-0597-4ba5-897c-0253995a2796","name":"Starts With / Ends With","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  { \"attributeKey\": \"number\", \"operator\": \"starts with\", \"value\": \"LP\" },\r\n  { \"attributeKey\": \"number\", \"operator\": \"does not start with\", \"value\": \"TO\" },\r\n  { \"attributeKey\": \"number\", \"operator\": \"ends with\", \"value\": \"WC\" },\r\n  { \"attributeKey\": \"number\", \"operator\": \"does not end with\", \"value\": \"-XS\" }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/filter/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 19:15:32 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=auahXuDZNiT9UPzHaAQ2zdgCxw3c0RoUDyl%2FTPPyflnGLMmzCfQlF1Gbt8BCMgoW8fjER3kKaNuhkAXfAoKG8pqF3UeTAMcJnAKENGBoa1yEf5cqdyENVqqzjMBqTRQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933f35ebec2a3cbf-CDG","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=77759&min_rtt=77591&rtt_var=29217&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2816&recv_bytes=1478&delivery_rate=37323&cwnd=32&unsent_bytes=0&cid=d8800b05805efc3c&ts=711&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"1"},{"id":"4754ddd8-98af-40b9-9efb-67df0b113006","name":"Price / Date Range","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKey\": \"regular_price\",\r\n    \"operator\": \"between\",\r\n    \"lowerBoundValue\": \"10\",\r\n    \"upperBoundValue\": \"80\",\r\n    \"value\": []\r\n  },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \"<\", \"upperBoundValue\": \"99.99\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \"<=\", \"upperBoundValue\": \"94.99\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \">\", \"lowerBoundValue\": \"10\" },\r\n  { \"attributeKey\": \"regular_price\", \"operator\": \">=\", \"lowerBoundValue\": \"9.99\" }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/products/filter/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 21 Apr 2025 19:15:58 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=8D6CIOh5Z0Ys16YB2%2Fhljcr%2F%2Bz3GtBXW34tX8UO46%2Fbpuwx25bLwD1maOs4WOMudtJ%2F2yRX4GkhzHjwfyDnj%2FdoskBQWEUv6rKuYyhPrTewJolb1zIibw8dlCWMINM8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"933f3690deb9d171-CDG","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=80997&min_rtt=80863&rtt_var=30420&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1657&delivery_rate=17906&cwnd=37&unsent_bytes=0&cid=36240011a2f3ad59&ts=627&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"23"}],"_postman_id":"5e431bbf-993b-4217-8c29-bdb2825109ca"}],"id":"8070ab62-f954-40d4-9ace-e154a91fc51d","description":"<p>All resources related to Products</p>\n","_postman_id":"8070ab62-f954-40d4-9ace-e154a91fc51d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}}},{"name":"Assets","item":[{"name":"Assets","id":"d810f059-4cb7-42fa-843d-04695ef9ffe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/assets","description":"<h3 id=\"get-assets\">Get Assets</h3>\n<p>This endpoint retrieves a list of assets.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li>Method: GET</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON array containing objects with the following properties:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Property</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Property</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The ID of the asset</td>\n<td>size</td>\n<td>The size of the asset</td>\n</tr>\n<tr>\n<td>width</td>\n<td>The width of the asset</td>\n<td>height</td>\n<td>The height of the asset</td>\n</tr>\n<tr>\n<td>filename</td>\n<td>The name of the file</td>\n<td>url</td>\n<td>The URL of the asset</td>\n</tr>\n<tr>\n<td>create_user_id</td>\n<td>The ID of the user who created the asset</td>\n<td>create_date</td>\n<td>The date of creation</td>\n</tr>\n<tr>\n<td>create_user_name</td>\n<td>The name of the user who created the asset</td>\n<td>update_user_id</td>\n<td>The ID of the user who last updated the asset</td>\n</tr>\n<tr>\n<td>update_date</td>\n<td>The date of the last update</td>\n<td>update_user_name</td>\n<td>The name of the user who last updated the asset</td>\n</tr>\n<tr>\n<td>lightbox_ids</td>\n<td>An array of lightbox IDs associated with the asset</td>\n<td>thumbnail_filename</td>\n<td>The name of the thumbnail file</td>\n</tr>\n<tr>\n<td>asset_type</td>\n<td>The type of the asset</td>\n<td>aspect_ratio</td>\n<td>The aspect ratio of the asset</td>\n</tr>\n<tr>\n<td>thumbnail_url</td>\n<td>The URL of the thumbnail</td>\n<td>large_url</td>\n<td>The URL of the large-sized asset</td>\n</tr>\n<tr>\n<td>linked_products</td>\n<td>Linked products with number, name, ID, and attributes</td>\n<td>private</td>\n<td>Indicates if the asset is private</td>\n</tr>\n<tr>\n<td>extension</td>\n<td>The file extension of the asset</td>\n<td>transformations</td>\n<td>An object of transformation keys</td>\n</tr>\n<tr>\n<td>personna</td>\n<td>The persona associated with the asset</td>\n<td>marketing_campaigns</td>\n<td>Associated marketing campaigns</td>\n</tr>\n<tr>\n<td>source</td>\n<td>The source of the asset</td>\n<td>expiration_date</td>\n<td>The expiration date of the asset</td>\n</tr>\n<tr>\n<td>version</td>\n<td>The version of the asset</td>\n<td>tags</td>\n<td>Tags associated with the asset</td>\n</tr>\n<tr>\n<td>application_notes</td>\n<td>Application notes for the asset</td>\n<td>storemediaid</td>\n<td>The store media ID of the asset</td>\n</tr>\n<tr>\n<td>category</td>\n<td>Object with level_1, level_2, and level_3 categories</td>\n<td>s3_version</td>\n<td>The S3 version of the asset</td>\n</tr>\n<tr>\n<td>publish_date</td>\n<td>The publish date of the asset</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>Number of results to return per page. Default: 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Number of results to skip. Used for pagination. Default: 0</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Start of the date range filter (inclusive). Must be in UTC ISO 8601 format. (e.g., 2024-01-01T00:00:00Z)</p>\n","type":"text/plain"},"key":"begin_date","value":"1997-07-16T19:20:30+01:00"},{"disabled":true,"description":{"content":"<p>End of the date range filter (inclusive). Must be in UTC ISO 8601 format. (e.g., 2024-01-01T00:00:00Z)</p>\n","type":"text/plain"},"key":"end_date","value":"2025-12-13T00:00:00Z"}],"variable":[]}},"response":[{"id":"97899610-0661-48c9-b87f-9581fd304071","name":"Assets","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/assets","host":["https://api.catsy.com/v4"],"path":["assets"],"query":[{"key":"limit","value":"100","description":"Number of results to return per page. Default: 100","disabled":true},{"key":"offset","value":"0","description":"Number of results to skip. Used for pagination. Default: 0","disabled":true},{"key":"begin_date","value":"1997-07-16T19:20:30+01:00","description":"Start of the date range filter (inclusive). Must be in UTC ISO 8601 format. (e.g., 2024-01-01T00:00:00Z)","disabled":true},{"key":"end_date","value":"2025-12-13T00:00:00Z","description":"End of the date range filter (inclusive). Must be in UTC ISO 8601 format. (e.g., 2024-01-01T00:00:00Z)","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Apr 2025 15:48:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"Set-Cookie","value":"JSESSIONID=OGUxOGY1NTEtZmEyYS00NzZkLWFhODctNmY0ZGRjMjVmZWJi; Path=/; Secure; HttpOnly; SameSite=None","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=5ao0jJrn%2BEa0%2BL0ERumv4mxFdqPx7QT9bM6Qb%2Fq8yqos7LLj7B0rpj3hqnxzOeZ76E9BQZTQ3PuVKRzT3yV8nTWq8KT7pjbqfdz0A4we0TFSh4%2Febjr6naqWOFvEsoY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"93464397fb33a265-FCO","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=107385&min_rtt=107252&rtt_var=40314&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2817&recv_bytes=767&delivery_rate=27001&cwnd=32&unsent_bytes=0&cid=07e411bd85da1d7d&ts=1321&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 4070863022,\n        \"size\": 121103,\n        \"width\": 800,\n        \"height\": 800,\n        \"filename\": \"8052-Main.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/8052-Main.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1744204629287,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863022/comp-1.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"2200WNK\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                \"id\": 13295339\n            },\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"image_3\",\n                    \"image_2\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"RF\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"RF101\",\n                \"id\": 17412009\n            },\n            {\n                \"number\": \"RF-8054\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 120 PSI-130\",\n                \"id\": 17412010\n            },\n            {\n                \"number\": \"RF-8055\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                \"id\": 17412011\n            },\n            {\n                \"number\": \"RF-8056\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 100 PSI-132\",\n                \"id\": 17412012\n            },\n            {\n                \"number\": \"RF-8057\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 120 PSI-133\",\n                \"id\": 17412013\n            },\n            {\n                \"number\": \"RF-8058\",\n                \"asset_attribute_keys\": [\n                    \"main_image\",\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 125 PSI-134\",\n                \"id\": 17412014\n            },\n            {\n                \"number\": \"RF-8059\",\n                \"asset_attribute_keys\": [\n                    \"main_image\",\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 112 PSI-135\",\n                \"id\": 17412015\n            },\n            {\n                \"number\": \"RF-8060\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 120 PSI-136\",\n                \"id\": 17412016\n            },\n            {\n                \"number\": \"RF-8061\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 125 PSI-137\",\n                \"id\": 17412017\n            },\n            {\n                \"number\": \"RF-8062\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 130 PSI-138\",\n                \"id\": 17412018\n            },\n            {\n                \"number\": \"RF-8063\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 135 PSI-139\",\n                \"id\": 17412019\n            },\n            {\n                \"number\": \"RF-8064\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 140 PSI-140\",\n                \"id\": 17412020\n            },\n            {\n                \"number\": \"RF-8052D121\",\n                \"asset_attribute_keys\": [\n                    \"image_3\"\n                ],\n                \"name\": \"180 PSI, AirStream Reciprocating Compressor\",\n                \"id\": 17850739\n            },\n            {\n                \"number\": \"RF-8052E211\",\n                \"asset_attribute_keys\": [\n                    \"image_2\"\n                ],\n                \"name\": \"170 PSI, AirStream Reciprocating Compressor\",\n                \"id\": 17850740\n            },\n            {\n                \"number\": \"1N067_AS01\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"^1N067_AS01\",\n                \"id\": 20753904\n            },\n            {\n                \"number\": \"RF-8066\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"AirStream Reciprocating Compressor\",\n                \"id\": 20911397\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863022/8052-Main.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863022/8052-Main.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863022/8052-Main.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863022/8052-Main.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863022/8052-Main.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863022/8052-Main.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863022/8052-Main.png\"\n        },\n        \"personna\": \"DIY\",\n        \"marketing_campaigns\": [\n            \"Facebook\",\n            \"Twitter\",\n            \"YouTube\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"compressor\",\n        \"tags\": [\n            \"Machine\",\n            \"wheel\",\n            \"vehicle\",\n            \"compressor\",\n            \"top mount handle\",\n            \"car\",\n            \"black\",\n            \"handle\",\n            \"rubber grip\",\n            \"extra light\",\n            \"rubber wheels\",\n            \"diy\",\n            \"commercial\",\n            \"residential\",\n            \"new tag\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"T2yO5Q.wdnZvcz7i3CKNoeXTnF4sCHn_\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863013,\n        \"size\": 1054280,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"11335535.pdf\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335535.pdf\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1744134163672,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070555856,\n            4071505810\n        ],\n        \"thumbnail_filename\": \"4070863013/11335535.jpg\",\n        \"asset_type\": \"PDF\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863013/11335535.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863013/11335535.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"pdf\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863013/11335535.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863013/11335535.jpg\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"RF1012, new alt text\",\n        \"tags\": [\n            \"camera\",\n            \"electronics\",\n            \"Machine\",\n            \"quickest maintenance in the industry.\",\n            \"sphere air\",\n            \"spin-on oil separation system allows for the easiest and\",\n            \"key features\",\n            \"legendary package design offers multiple option\",\n            \"fuel efficient doosan d24 engine extends run time to\",\n            \"provides over 8,700 cubic inches for tool and accessory\",\n            \"the industry's largest and deepest, full-length toolbox\",\n            \"air compressor with truck mount\",\n            \"premium and intuitive control interface for ease of use.\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"XNqJLDa1gwsz76gvoBNfrlv1eyUNtP1Z\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863004,\n        \"size\": 963347,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"11335538.pdf\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335538.pdf\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1743532991657,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070555856,\n            4071505810\n        ],\n        \"thumbnail_filename\": \"4070863004/11335538.jpg\",\n        \"asset_type\": \"PDF\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863004/11335538.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863004/11335538.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"BT30-SK10-120\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Slim Chuck - ABC / Demo on March 13\",\n                \"id\": 13116222\n            },\n            {\n                \"number\": \"PLE411PF\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Elite Series Five Star™ 8\\\" x 3\\\" Golden Stainless Steel Midget Trowel with ProForm® Handle\",\n                \"id\": 13910548\n            },\n            {\n                \"number\": \"LP10WC\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"10″ CURVED JAW LOCKING PLIERS W/WIRE CUTTER\",\n                \"id\": 13910988\n            },\n            {\n                \"number\": \"WSL-2548\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"12V DC, Subcompact, 3/8 in Chuck, 1500 RPM Power Drill\",\n                \"id\": 13949314\n            },\n            {\n                \"number\": \"WSL-2548-WLK1\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"12V DC, Subcompact, 5/8 in Chuck, 1,500 RPM Power Drill\",\n                \"id\": 13949378\n            },\n            {\n                \"number\": \"WSL-2572-WLK1\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"12V DC, Subcompact, 1/2 in Chuck, 1,500 RPM Power Drill\",\n                \"id\": 13949379\n            },\n            {\n                \"number\": \"WSL-3848-WLK1\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"12V DC, Subcompact, 3/8 in Chuck, 2,000 RPM Power Drill\",\n                \"id\": 13949380\n            },\n            {\n                \"number\": \"WSL-3872-WLK1\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"12V DC, Subcompact, 5/8 in Chuck, 2,000 RPM Power Drill\",\n                \"id\": 13949381\n            },\n            {\n                \"number\": \"411\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register\",\n                \"id\": 13949382\n            },\n            {\n                \"number\": \"411-15\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949383\n            },\n            {\n                \"number\": \"411-19\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949384\n            },\n            {\n                \"number\": \"411-22\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949385\n            },\n            {\n                \"number\": \"411-29\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949386\n            },\n            {\n                \"number\": \"411-35\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949387\n            },\n            {\n                \"number\": \"411-40\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949388\n            },\n            {\n                \"number\": \"411-44\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949389\n            },\n            {\n                \"number\": \"411-53\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949390\n            },\n            {\n                \"number\": \"411-60\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949391\n            },\n            {\n                \"number\": \"RF-8055\",\n                \"asset_attribute_keys\": [\n                    \"spec_sheet\"\n                ],\n                \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                \"id\": 17412011\n            },\n            {\n                \"number\": \"GFBDF-2\",\n                \"asset_attribute_keys\": [\n                    \"spec_sheet\"\n                ],\n                \"name\": \"Reciprocating Air Compressor - 160 PSI\",\n                \"id\": 18321300\n            },\n            {\n                \"number\": \"GFBDF-3\",\n                \"asset_attribute_keys\": [\n                    \"spec_sheet\"\n                ],\n                \"name\": \"Reciprocating Air Compressor - 190 PSI\",\n                \"id\": 18321301\n            },\n            {\n                \"number\": \"GFBDF-4\",\n                \"asset_attribute_keys\": [\n                    \"spec_sheet\"\n                ],\n                \"name\": \"Reciprocating Air Compressor - 170 PSI\",\n                \"id\": 18321302\n            },\n            {\n                \"number\": \"BN31M1P\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"2-1/8” 18 GAUGE BRAD NAILER with Grip\",\n                \"id\": 21153060\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"pdf\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863004/11335538.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863004/11335538.jpg\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"specification sheet. abc\",\n        \"tags\": [\n            \"Machine\",\n            \"wheel\",\n            \"quickest maintenance in the industry.\",\n            \"sphere air\",\n            \"spin-on oil separation system allows for the easiest and\",\n            \"silent air portable electric air compressor\",\n            \"key features\",\n            \"legendary package design offers multiple option\",\n            \"fuel efficient doosan d24 engine extends run time to\",\n            \"provides over 8,700 cubic inches for tool and accessory\",\n            \"the industry's largest and deepest, full-length toolbox\",\n            \"premium and intuitive control interface for ease of use.\",\n            \"white\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"EBl5G.GV39Z2MpOf44qbuVDSR2fwbxE7\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398992,\n        \"size\": 20705,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_RT210CVN_MAIN.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_RT210CVN_MAIN.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1743520509291,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398992/CRS_RT210CVN_MAIN.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398992/CRS_RT210CVN_MAIN.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398992/CRS_RT210CVN_MAIN.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"RT210CVN-05\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" Straight Jaw Dipped Handle Tongue and Groove Pliers\",\n                \"id\": 21154284\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398992/CRS_RT210CVN_MAIN.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398992/CRS_RT210CVN_MAIN.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398992/CRS_RT210CVN_MAIN.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398992/CRS_RT210CVN_MAIN.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398992/CRS_RT210CVN_MAIN.png\"\n        },\n        \"personna\": \"DIY\",\n        \"marketing_campaigns\": [\n            \"Instagram abc\",\n            \"YouTube\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Rubber Grip - new\",\n        \"tags\": [\n            \"smoke pipe\",\n            \"device\",\n            \"pliers\",\n            \"brown\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"czqWS3fKkyZvSAZdJg4RfenJaB37z.wB\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863014,\n        \"size\": 982144,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"11335539.pdf\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335539.pdf\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742848828499,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070555856,\n            4071505810\n        ],\n        \"thumbnail_filename\": \"4070863014/11335539.jpg\",\n        \"asset_type\": \"PDF\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863014/11335539.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863014/11335539.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"pdf\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863014/11335539.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863014/11335539.jpg\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"updating alt text rubber grip\",\n        \"tags\": [\n            \"Machine\",\n            \"car\",\n            \"transportation\",\n            \"vehicle\",\n            \"quickest maintenance in the industry.\",\n            \"number\",\n            \"sphere air\",\n            \"spin-on oil separation system allows for the easiest and\",\n            \"key features\",\n            \"legendary package design offers multiple option\",\n            \"fuel efficient doosan d24 engine extends run time to\",\n            \"industrial 80 gallon air compressor\",\n            \"provides over 8,700 cubic inches for tool and accessory\",\n            \"the industry's largest and deepest, full-length toolbox\",\n            \"yellow\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"uH.6LLylydsNL2Yb3A6GP1z7496tggS1\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863040,\n        \"size\": 564424,\n        \"width\": 1000,\n        \"height\": 1000,\n        \"filename\": \"20005635.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/20005635.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742490046415,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863040/20005635.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863040/20005635.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863040/20005635.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"RF-8056\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Reciprocating Compressor 100 PSI-132\",\n                \"id\": 17412012\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863040/20005635.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863040/20005635.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Red industrial air compressor with black handles and wheels.\",\n        \"tags\": [\n            \"Air Compressor\",\n            \"red compressor\",\n            \"industrial tool\",\n            \"garage equipment\",\n            \"portable air pump\",\n            \"high-pressure\",\n            \"pneumatic tool\",\n            \"workshop gear\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"TfqtCzIpmnNzKmEpuHHz3lwJwA9FuZF6\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398989,\n        \"size\": 20174,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_193410CVNN-05_IMG-MAIN.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742490046415,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"193410CVNN-05\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" Dipped Handle Heavy-Duty Solid Joint Fence Tool Pliers\",\n                \"id\": 21154281\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Close-up of red-handled pliers gripping a metal wire.\",\n        \"tags\": [\n            \"pliers\",\n            \"hand tool\",\n            \"grip tool\",\n            \"industrial pliers\",\n            \"metalworking\",\n            \"red pliers\",\n            \"cutting tool\",\n            \"hardware tool\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\",\n            \"level_3\": \"Pliers\"\n        },\n        \"s3_version\": \"DtImqoBGPJEmtZSo0SIM3Nx763PuNVZz\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398990,\n        \"size\": 17873,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_GG010HN_MAIN.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_GG010HN_MAIN.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742490046415,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4072417577\n        ],\n        \"thumbnail_filename\": \"4072398990/CRS_GG010HN_MAIN.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398990/CRS_GG010HN_MAIN.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398990/CRS_GG010HN_MAIN.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"GG010HN\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" Heavy-Duty End Cutting Nipper Pliers\",\n                \"id\": 21154282\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398990/CRS_GG010HN_MAIN.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398990/CRS_GG010HN_MAIN.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398990/CRS_GG010HN_MAIN.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398990/CRS_GG010HN_MAIN.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398990/CRS_GG010HN_MAIN.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398990/CRS_GG010HN_MAIN.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398990/CRS_GG010HN_MAIN.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398990/CRS_GG010HN_MAIN.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398990/CRS_GG010HN_MAIN.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Pair of industrial pliers with rubberized red grips on a workbench.\",\n        \"tags\": [\n            \"pliers\",\n            \"hand tool\",\n            \"grip tool\",\n            \"industrial pliers\",\n            \"metalworking\",\n            \"red pliers\",\n            \"cutting tool\",\n            \"hardware tool\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\",\n            \"level_3\": \"Pliers\"\n        },\n        \"s3_version\": \"DozGU4_RQYNZ3fttP.6NYObkd0rs6XLY\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398715,\n        \"size\": 52858,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"FinishPro30XP_35兵_w_fasteners72x-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741880477519,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742488893809,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398715/FinishPro30XP_35兵_w_fasteners72x-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"9P0002N\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"2\\\" Angled Finish Nailer\",\n                \"id\": 21153073\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Senco 30XP Nail Gun Loaded Side View\",\n        \"tags\": [\n            \"device\",\n            \"tool\",\n            \"finish pro 30xp\",\n            \"senco\",\n            \"black\",\n            \"Nail gun\",\n            \"rubber grip\",\n            \"pneumatic\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Nail Guns\",\n            \"level_4\": \"Pneumatic Nail Guns\"\n        },\n        \"s3_version\": \"7wNxrpgJKg3PCnbX.ephHy1GgTPvpy.x\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398991,\n        \"size\": 17327,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742415111834,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4072417577\n        ],\n        \"thumbnail_filename\": \"4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\",\n                    \"exchange_policy\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"10TGSJDG\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" Smooth Jaw Dipped Handle Tongue & Groove Pliers\",\n                \"id\": 21154283\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"rubber grip\",\n        \"tags\": [\n            \"device\",\n            \"smoke pipe\",\n            \"pliers\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"3OHiVa04xsrfl.Ew7dgWJmlyiKTRPTus\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398993,\n        \"size\": 23849,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742403972517,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4072417577\n        ],\n        \"thumbnail_filename\": \"4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"C10SVN-08\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" Straight Jaw Locking Pliers\",\n                \"id\": 21154285\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Rubber Grip\",\n        \"tags\": [\n            \"blade\",\n            \"razor\",\n            \"weapon\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"a7cRn.jtBevzRkMbZYLeIySXWbzRy2pv\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398994,\n        \"size\": 19062,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_RT410CVN_IMG_ANG.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_RT410CVN_IMG_ANG.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742403972517,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4072417577\n        ],\n        \"thumbnail_filename\": \"4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RT410CVN-05\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" V-Jaw Dipped Handle Tongue and Groove Pliers\",\n                \"id\": 21154286\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398994/CRS_RT410CVN_IMG_ANG.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398994/CRS_RT410CVN_IMG_ANG.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398994/CRS_RT410CVN_IMG_ANG.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398994/CRS_RT410CVN_IMG_ANG.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398994/CRS_RT410CVN_IMG_ANG.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Rubber Grip\",\n        \"tags\": [\n            \"device\",\n            \"pliers\",\n            \"tool\",\n            \"rt410\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"B6eH6VYQxfi8485ldyHG39Pf9DDllOHR\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398995,\n        \"size\": 25405,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_RTAB10CG_IMG-ANGLE.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742403962067,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4072417577\n        ],\n        \"thumbnail_filename\": \"4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"RTAB10CG\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" Z2 Auto-Bite Dual Material Tongue & Groove Pliers\",\n                \"id\": 21154287\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"pliers rubber grip\",\n        \"tags\": [\n            \"device\",\n            \"pliers\",\n            \"tool\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"ldUfrGxdSScYwkqf81H0EVqcWprwN.fO\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863035,\n        \"size\": 1447422,\n        \"width\": 948,\n        \"height\": 866,\n        \"filename\": \"compressor.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/compressor.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1742310979070,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4072417577\n        ],\n        \"thumbnail_filename\": \"4070863035/compressor.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863035/compressor.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863035/compressor.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863035/compressor.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863035/compressor.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"english, in use , add text\",\n        \"tags\": [\n            \"Machine\",\n            \"ning your new\",\n            \"grey\",\n            \"application shot\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"g0UUc3_4Ck1mhEaXk9GD3V2XanLfEdl7\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398988,\n        \"size\": 21430,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741891822305,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"193610CVSMNN-05\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" Dipped Handle Dual Staple Grip Joint Fence Tool Pliers\",\n                \"id\": 21154280\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"axe\",\n            \"tool\",\n            \"red\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"QfoFSPNZhHRDevcRY0yUQA5SVmwyl7jv\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398987,\n        \"size\": 20902,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_C10CVN_FRNT_MAIN.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_C10CVN_FRNT_MAIN.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741891822074,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"C10CVN-08\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" Curved Jaw Locking Pliers with Wire Cutter\",\n                \"id\": 21154279\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398987/CRS_C10CVN_FRNT_MAIN.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398987/CRS_C10CVN_FRNT_MAIN.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398987/CRS_C10CVN_FRNT_MAIN.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398987/CRS_C10CVN_FRNT_MAIN.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398987/CRS_C10CVN_FRNT_MAIN.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"scissors\",\n            \"device\",\n            \"pliers\",\n            \"crescent\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"bswPbw1UmaF_F0rWJWhdspsr9SIz53CE\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398986,\n        \"size\": 17492,\n        \"width\": 720,\n        \"height\": 720,\n        \"filename\": \"CRS_52910N_FRNT_MAIN.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_52910N_FRNT_MAIN.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741891769695,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741891821812,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"52910N\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10\\\" A-N Connector Adjustable Joint Pliers\",\n                \"id\": 21154278\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398986/CRS_52910N_FRNT_MAIN.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398986/CRS_52910N_FRNT_MAIN.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398986/CRS_52910N_FRNT_MAIN.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398986/CRS_52910N_FRNT_MAIN.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398986/CRS_52910N_FRNT_MAIN.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"crescent\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"p5yQf5YVLtiuNTnTwVTnSlyDnM4noNYV\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398716,\n        \"size\": 57910,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"FinishPro18BMg_35L72x-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/FinishPro18BMg_35L72x-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741880477519,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741880543896,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398716/FinishPro18BMg_35L72x-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"9B0001N\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"2-1/8\\\" Magnesium Brad Nailer\",\n                \"id\": 21153074\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398716/FinishPro18BMg_35L72x-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398716/FinishPro18BMg_35L72x-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398716/FinishPro18BMg_35L72x-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398716/FinishPro18BMg_35L72x-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398716/FinishPro18BMg_35L72x-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"senco\",\n            \"18 brad nails\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"VB11JtYh1MH18w5Q4UWjywsx4Db0yTes\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398713,\n        \"size\": 42684,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"F-16XP_-35u_Hero_Low72x-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/F-16XP_-35u_Hero_Low72x-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741880477519,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741880543579,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"10N0001N\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"2-1/2” Cordless Finish Nailer\",\n                \"id\": 21153071\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398713/F-16XP_-35u_Hero_Low72x-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398713/F-16XP_-35u_Hero_Low72x-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398713/F-16XP_-35u_Hero_Low72x-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398713/F-16XP_-35u_Hero_Low72x-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398713/F-16XP_-35u_Hero_Low72x-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"gun\",\n            \"weapon\",\n            \"senco\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"7EIV3FyMIzVeekOkcXGx_v6a_2.sGc2R\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398712,\n        \"size\": 45208,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"F-18XP_0u_with_Fasteners72x-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/F-18XP_0u_with_Fasteners72x-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741880477519,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741880543352,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"10M0001N\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"2-1/8” Cordless Brad Nailer\",\n                \"id\": 21153070\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398712/F-18XP_0u_with_Fasteners72x-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398712/F-18XP_0u_with_Fasteners72x-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398712/F-18XP_0u_with_Fasteners72x-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398712/F-18XP_0u_with_Fasteners72x-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398712/F-18XP_0u_with_Fasteners72x-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"f-18xp\",\n            \"18v li-ion\",\n            \"senco\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"nOD_4O0UDQLpAl7R4MLB758xHk4C9nBs\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398711,\n        \"size\": 54924,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"TN11G1_35_Hero_H72x-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/TN11G1_35_Hero_H72x-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741880477519,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741880543131,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"TN11G1\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"1-3/8” 23 GAUGE PINNER\",\n                \"id\": 21153069\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398711/TN11G1_35_Hero_H72x-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398711/TN11G1_35_Hero_H72x-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398711/TN11G1_35_Hero_H72x-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398711/TN11G1_35_Hero_H72x-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398711/TN11G1_35_Hero_H72x-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"neverlube oil free tool\",\n            \"pin nailer\",\n            \"senco\",\n            \"brown\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"RagtDEPiJUQfH9836M_SpQ8DRHrJCQok\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398714,\n        \"size\": 41284,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741880477519,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741880543089,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"10L0001N\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"2-1/2” Cordless Finish Nailer\",\n                \"id\": 21153072\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"gun\",\n            \"weapon\",\n            \"senco\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"4ioYmVw1hC_QJaIzSX.ZTcei4W9lawIv\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398710,\n        \"size\": 47270,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"TN11L1_0_Fasteners72x-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/TN11L1_0_Fasteners72x-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741880477519,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741880542896,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"TN11L1\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"2” 23 GAUGE PINNER\",\n                \"id\": 21153068\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398710/TN11L1_0_Fasteners72x-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398710/TN11L1_0_Fasteners72x-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398710/TN11L1_0_Fasteners72x-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398710/TN11L1_0_Fasteners72x-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398710/TN11L1_0_Fasteners72x-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"23\",\n            \"neverlube oil free tool\",\n            \"senco\",\n            \"brown\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"RYNF0Y6W.Pktn7UOLrkde.x43bUG9SfG\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398709,\n        \"size\": 43088,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"TN21L1_0_Fasteners72x-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/TN21L1_0_Fasteners72x-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741880477519,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741880542570,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"TN21L1\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"2” 21 GAUGE PINNER\",\n                \"id\": 21153067\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398709/TN21L1_0_Fasteners72x-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398709/TN21L1_0_Fasteners72x-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398709/TN21L1_0_Fasteners72x-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398709/TN21L1_0_Fasteners72x-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398709/TN21L1_0_Fasteners72x-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"pin nailer\",\n            \"tn21l1\",\n            \"senco\",\n            \"black\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"3ZeRzmAm88.drUKo91kDheKQu3x90sBh\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398690,\n        \"size\": 65900,\n        \"width\": 876,\n        \"height\": 876,\n        \"filename\": \"BN31M1P_0°72ppi-100.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/BN31M1P_0%C2%B072ppi-100.jpg\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741875927536,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741880213827,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398690/BN31M1P_0°72ppi-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"BN31M1P\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"2-1/8” 18 GAUGE BRAD NAILER with Grip\",\n                \"id\": 21153060\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398690/BN31M1P_0%C2%B072ppi-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398690/BN31M1P_0%C2%B072ppi-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398690/BN31M1P_0%C2%B072ppi-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398690/BN31M1P_0%C2%B072ppi-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398690/BN31M1P_0%C2%B072ppi-100.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 2,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"brad nailer\",\n            \"senco\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"rkNYJ8bUhU52lmDs6LrRBe67mxWIyL9i\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072398689,\n        \"size\": 33216,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"BN31M1P_0°72ppi-100.webp\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/BN31M1P_0%C2%B072ppi-100.webp\",\n        \"create_user_id\": 4018014823,\n        \"create_date\": 1741875908090,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_user_id\": 4018014823,\n        \"update_date\": 1741875926752,\n        \"update_user_name\": \"Jarod Waters\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072398689/BN31M1P_0°72ppi-100.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"webp\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398689/BN31M1P_0%C2%B072ppi-100.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398689/BN31M1P_0%C2%B072ppi-100.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398689/BN31M1P_0%C2%B072ppi-100.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398689/BN31M1P_0%C2%B072ppi-100.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398689/BN31M1P_0%C2%B072ppi-100.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"brad nailer\",\n            \"senco\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"IlrKOwd3a7MxCebdcOqVgUWUQWPiwoUt\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863005,\n        \"size\": 865496,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"11335536.pdf\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335536.pdf\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1741198260208,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070555856,\n            4071505810\n        ],\n        \"thumbnail_filename\": \"4070863005/11335536.jpg\",\n        \"asset_type\": \"PDF\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863005/11335536.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863005/11335536.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"pdf\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863005/11335536.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863005/11335536.jpg\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": [\n            \"Twitter\",\n            \"Instagram abc\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"english spec sheet , hello\",\n        \"tags\": [\n            \"Machine\",\n            \"quickest maintenance in the industry.\",\n            \"sphere air\",\n            \"spin-on oil separation system allows for the easiest and\",\n            \"key features\",\n            \"legendary package design offers multiple option\",\n            \"fuel efficient doosan d24 engine extends run time to\",\n            \"provides over 8,700 cubic inches for tool and accessory\",\n            \"the industry's largest and deepest, full-length toolbox\",\n            \"quiet flow steel tank air compressor\",\n            \"premium and intuitive control interface for ease of use.\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"CwOHe50wBt3y5XlA17PF3W8Ru7VcrYpz\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072386472,\n        \"size\": 37947,\n        \"width\": 536,\n        \"height\": 536,\n        \"filename\": \"494M75_AS01_A.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/494M75_AS01_A.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1741137834793,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1741137851699,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072386472/494M75_AS01_A.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072386472/494M75_AS01_A.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072386472/494M75_AS01_A.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072386472/494M75_AS01_A.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072386472/494M75_AS01_A.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072386472/494M75_AS01_A.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072386472/494M75_AS01_A.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072386472/494M75_AS01_A.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072386472/494M75_AS01_A.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072386472/494M75_AS01_A.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072386472/494M75_AS01_A.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072386472/494M75_AS01_A.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"milwaukee\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"bNSCeE1f4p774WNZTO6nB5oQBPiOzZko\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863026,\n        \"size\": 1161081,\n        \"width\": 1200,\n        \"height\": 1200,\n        \"filename\": \"comp-1_wTransp.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/comp-1_wTransp.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740767383778,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070822538\n        ],\n        \"thumbnail_filename\": \"4070863026/comp-1_wTransp.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863026/comp-1_wTransp.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863026/comp-1_wTransp.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"2200WNK\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                \"id\": 13295339\n            },\n            {\n                \"number\": \"20023163\",\n                \"asset_attribute_keys\": [\n                    \"image_3\"\n                ],\n                \"name\": \"Pliers for ease of use\",\n                \"id\": 14998168\n            },\n            {\n                \"number\": \"RF\",\n                \"asset_attribute_keys\": [\n                    \"sell_sheet\"\n                ],\n                \"name\": \"RF101\",\n                \"id\": 17412009\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863026/comp-1_wTransp.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863026/comp-1_wTransp.jpg\"\n        },\n        \"personna\": \"DIY\",\n        \"marketing_campaigns\": [\n            \"Twitter\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"application shot\",\n        \"tags\": [\n            \"Machine\",\n            \"wheel\",\n            \"car\",\n            \"transportation\",\n            \"vehicle\",\n            \"black\",\n            \"rubber wheels\",\n            \"commercial\",\n            \"residential\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"QYMZJJi_12bV5PyEAPO.tbeveFh.vQlv\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863037,\n        \"size\": 1075552,\n        \"width\": 948,\n        \"height\": 862,\n        \"filename\": \"compressor2.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/compressor2.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740767383778,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863037/compressor2.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863037/compressor2.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863037/compressor2.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8054\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"Reciprocating Compressor 120 PSI-130\",\n                \"id\": 17412010\n            },\n            {\n                \"number\": \"RF-8057\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 120 PSI-133\",\n                \"id\": 17412013\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863037/compressor2.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863037/compressor2.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"application shot\",\n        \"tags\": [\n            \"Machine\",\n            \"m\",\n            \"black\",\n            \"rubber wheels\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"MRxT.qBkt5C_aSWzJfCKTyWGo2Bc.bSX\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863008,\n        \"size\": 537653,\n        \"width\": 1000,\n        \"height\": 1000,\n        \"filename\": \"11335534-3.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335534-3.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740767371487,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863008/11335534-3.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863008/11335534-3.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863008/11335534-3.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8054\",\n                \"asset_attribute_keys\": [\n                    \"sell_sheet\"\n                ],\n                \"name\": \"Reciprocating Compressor 120 PSI-130\",\n                \"id\": 17412010\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863008/11335534-3.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863008/11335534-3.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"application shot\",\n        \"tags\": [\n            \"Machine\",\n            \"Motor\",\n            \"engine\",\n            \"wheel\",\n            \"motorcycle\",\n            \"transportation\",\n            \"vehicle\",\n            \"gx\",\n            \"black\",\n            \"rubber wheels\",\n            \"diy\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"uFYed7bC7eV_.oQP.J81B5iyvG96vUhr\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863036,\n        \"size\": 1039925,\n        \"width\": 944,\n        \"height\": 860,\n        \"filename\": \"compressor3.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/compressor3.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740690622150,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863036/compressor3.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863036/compressor3.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863036/compressor3.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"20010901\",\n                \"asset_attribute_keys\": [\n                    \"image_2\"\n                ],\n                \"name\": \"Slim Chuck\",\n                \"id\": 13116362\n            },\n            {\n                \"number\": \"RF-8052\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Reciprocating Compressor\",\n                \"id\": 17412008\n            },\n            {\n                \"number\": \"RF-8061\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 125 PSI-137\",\n                \"id\": 17412017\n            },\n            {\n                \"number\": \"RF-8062\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 130 PSI-138\",\n                \"id\": 17412018\n            },\n            {\n                \"number\": \"RF-8063\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 135 PSI-139\",\n                \"id\": 17412019\n            },\n            {\n                \"number\": \"RF-8064\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Reciprocating Compressor 140 PSI-140\",\n                \"id\": 17412020\n            },\n            {\n                \"number\": \"1N067_AS01-1\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"^1N067_AS01-1\",\n                \"id\": 20781749\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863036/compressor3.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863036/compressor3.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"application image for compressor\",\n        \"tags\": [\n            \"Machine\",\n            \"wheel\",\n            \"person\",\n            \"worker\",\n            \"adult\",\n            \"male\",\n            \"man\",\n            \"helmet\",\n            \"pushing\",\n            \"black\",\n            \"rubber wheels\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"LnFhfx_eyWKhXltafK_RQwgj9MlP1ZOa\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072371742,\n        \"size\": 241633,\n        \"width\": 1770,\n        \"height\": 1162,\n        \"filename\": \"Screen Shot 2025-02-26 at 7.13.30 AM.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1740619473193,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740619490356,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070555856,\n            4070822538,\n            4071505810\n        ],\n        \"thumbnail_filename\": \"4072371742/Screen Shot 2025-02-26 at 7.13.30 AM.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"9CUexrCiaz36Vr7MMo05TjUiZj4Rzi0y\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072371741,\n        \"size\": 166233,\n        \"width\": 2650,\n        \"height\": 1546,\n        \"filename\": \"import-third-party-product-ids-step2.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/import-third-party-product-ids-step2.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1740619426459,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740619443239,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070555856,\n            4070822538,\n            4071505810\n        ],\n        \"thumbnail_filename\": \"4072371741/import-third-party-product-ids-step2.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072371741/import-third-party-product-ids-step2.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072371741/import-third-party-product-ids-step2.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072371741/import-third-party-product-ids-step2.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072371741/import-third-party-product-ids-step2.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072371741/import-third-party-product-ids-step2.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072371741/import-third-party-product-ids-step2.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072371741/import-third-party-product-ids-step2.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072371741/import-third-party-product-ids-step2.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072371741/import-third-party-product-ids-step2.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072371741/import-third-party-product-ids-step2.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072371741/import-third-party-product-ids-step2.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"yr7.eb2JDqql7ziZSK_3wK.2ybftw7hY\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070956161,\n        \"size\": 68571,\n        \"width\": 1072,\n        \"height\": 1072,\n        \"filename\": \"10G688_AS02-2.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/10G688_AS02-2.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1708347289780,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740597170820,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070822538\n        ],\n        \"thumbnail_filename\": \"4070956161/10G688_AS02-2.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070956161/10G688_AS02-2.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070956161/10G688_AS02-2.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"2200WNK\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                \"id\": 13295339\n            },\n            {\n                \"number\": \"DSN12C\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10″ CURVED JAW LOCKING PLIERS W/WIRE CUTTER\",\n                \"id\": 13597200\n            },\n            {\n                \"number\": \"LP10WC\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"10″ CURVED JAW LOCKING PLIERS W/WIRE CUTTER\",\n                \"id\": 13910988\n            },\n            {\n                \"number\": \"411\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register\",\n                \"id\": 13949382\n            },\n            {\n                \"number\": \"411-15\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949383\n            },\n            {\n                \"number\": \"411-19\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949384\n            },\n            {\n                \"number\": \"411-22\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949385\n            },\n            {\n                \"number\": \"411-29\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949386\n            },\n            {\n                \"number\": \"411-35\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949387\n            },\n            {\n                \"number\": \"411-40\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949388\n            },\n            {\n                \"number\": \"411-44\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949389\n            },\n            {\n                \"number\": \"411-53\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949390\n            },\n            {\n                \"number\": \"411-60\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Heavy Gauge Steel Floor Register..\",\n                \"id\": 13949391\n            },\n            {\n                \"number\": \"BPDB\",\n                \"asset_attribute_keys\": [\n                    \"main_image\",\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"High-Speed Steel Brad-Point Drill Bits\",\n                \"id\": 16705104\n            },\n            {\n                \"number\": \"783YX4\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"IRWIN Brad Drill Bits: 1/8 in Drill Bit Size, 2 9/16 in Overall Lg, 1/8 in Shank Dia, Straight Shank\",\n                \"id\": 16705109\n            },\n            {\n                \"number\": \"19TG90\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/8 in Drill Bit Size, 2 1/2 in Overall Lg, 1/8 in Shank Dia\",\n                \"id\": 16705110\n            },\n            {\n                \"number\": \"19TH31\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/8 in Drill Bit Size, 12 in Overall Lg, 1/8 in Shank Dia\",\n                \"id\": 16705111\n            },\n            {\n                \"number\": \"783YX5\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"IRWIN Brad Drill Bits: 3/16 in Drill Bit Size, 3 3/8 in Overall Lg, 3/16 in Shank Dia\",\n                \"id\": 16705112\n            },\n            {\n                \"number\": \"19TG94\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"EAZYPOWER Brad Point Drill Bit: 3/16 in Drill Bit Size, 3 1/4 in Overall Lg, 3/16 in Shank Dia - change\",\n                \"id\": 16705113\n            },\n            {\n                \"number\": \"19TH35\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"EAZYPOWER Brad Point Drill Bit: 3/16 in Drill Bit Size, 12 in Overall Lg, 3/16 in Shank Dia\",\n                \"id\": 16705114\n            },\n            {\n                \"number\": \"19TH70\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"EAZYPOWER Brad Point Drill Bit: 7/32 in Drill Bit Size, 3 1/2 in Overall Lg, 7/32 in Shank Dia\",\n                \"id\": 16705115\n            },\n            {\n                \"number\": \"19TG98\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/4 in Drill Bit Size, 4 in Overall Lg, 1/4 in Shank Dia\",\n                \"id\": 16705116\n            },\n            {\n                \"number\": \"19TH38\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/4 in Drill Bit Size, 12 in Overall Lg, 1/4 in Shank Dia\",\n                \"id\": 16705117\n            },\n            {\n                \"number\": \"783YX6\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"IRWIN Brad Drill Bits: 5/16 in Drill Bit Size, 4 9/16 in Overall Lg, 5/16 in Shank Dia\",\n                \"id\": 16705118\n            },\n            {\n                \"number\": \"RF\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"RF101\",\n                \"id\": 17412009\n            },\n            {\n                \"number\": \"GFBDF-3\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"Reciprocating Air Compressor - 190 PSI\",\n                \"id\": 18321301\n            },\n            {\n                \"number\": \"20036669\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"Sander\",\n                \"id\": 19577508\n            },\n            {\n                \"number\": \"RF-8066\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"AirStream Reciprocating Compressor\",\n                \"id\": 20911397\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070956161/10G688_AS02-2.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070956161/10G688_AS02-2.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070956161/10G688_AS02-2.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070956161/10G688_AS02-2.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070956161/10G688_AS02-2.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070956161/10G688_AS02-2.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070956161/10G688_AS02-2.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070956161/10G688_AS02-2.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070956161/10G688_AS02-2.png\"\n        },\n        \"personna\": \"DIY\",\n        \"marketing_campaigns\": [\n            \"LinkedIn\",\n            \"YouTube\",\n            \"Twitter\"\n        ],\n        \"source\": null,\n        \"expiration_date\": \"2024-05-15\",\n        \"version\": 1,\n        \"title_a\": \"red pliers\",\n        \"tags\": [\n            \"device\",\n            \"pliers\",\n            \"tool\",\n            \"esd safe\",\n            \"2838fcmp\",\n            \"red\",\n            \"rubber grip\",\n            \"snips\",\n            \"sharp\",\n            \"steel\",\n            \"carbide\",\n            \"plastic grip\",\n            \"Tools\",\n            \"lyon\",\n            \"chrome\",\n            \"grip\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"description_a\": \"new asset\",\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Masonary Ladders\"\n        },\n        \"s3_version\": \"iARrimFakxCZW.eFOKm5BALKTsgtkadN\",\n        \"publish_date\": \"2025-03-05\"\n    },\n    {\n        \"id\": 4070863007,\n        \"size\": 4930438,\n        \"width\": 3000,\n        \"height\": 3000,\n        \"filename\": \"918100_HOOK.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_HOOK.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740418792166,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070822538\n        ],\n        \"thumbnail_filename\": \"4070863007/918100_HOOK.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863007/918100_HOOK.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863007/918100_HOOK.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"2200WNK\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                \"id\": 13295339\n            },\n            {\n                \"number\": \"20038678\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Directly Input Values\",\n                \"id\": 20470625\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863007/918100_HOOK.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863007/918100_HOOK.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863007/918100_HOOK.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863007/918100_HOOK.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863007/918100_HOOK.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863007/918100_HOOK.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863007/918100_HOOK.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863007/918100_HOOK.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863007/918100_HOOK.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": [\n            \"LinkedIn\",\n            \"YouTube\"\n        ],\n        \"source\": null,\n        \"expiration_date\": \"2025-02-05\",\n        \"version\": 1,\n        \"title_a\": \"alt text\",\n        \"application_notes\": \"DEF\",\n        \"tags\": [\n            \"red\",\n            \"hook\",\n            \"Tools\",\n            \"adapter\"\n        ],\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Fastener Tools\"\n        },\n        \"s3_version\": \"r.eHerB3Lyt86a7.8u79Qh7rhS6F7Vge\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862999,\n        \"size\": 506664,\n        \"width\": 1000,\n        \"height\": 1000,\n        \"filename\": \"11335534-Life.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335534-Life.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1739984850927,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862999/11335534-Life.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862999/11335534-Life.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862999/11335534-Life.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF\",\n                \"asset_attribute_keys\": [\n                    \"repair_policy\"\n                ],\n                \"name\": \"RF101\",\n                \"id\": 17412009\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862999/11335534-Life.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862999/11335534-Life.jpg\"\n        },\n        \"personna\": \"Body Shop\",\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"in use photo\",\n        \"tags\": [\n            \"Machine\",\n            \"armored\",\n            \"military\",\n            \"tank\",\n            \"transportation\",\n            \"vehicle\",\n            \"weapon\",\n            \"black\",\n            \"rubber wheels\",\n            \"diy\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"uSx9KNY7ioEfM8S9g6ORpGzRGgs6VtHy\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862998,\n        \"size\": 945331,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"11335531.pdf\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335531.pdf\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1739830799054,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070555856,\n            4071505810\n        ],\n        \"thumbnail_filename\": \"4070862998/11335531.jpg\",\n        \"asset_type\": \"PDF\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862998/11335531.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862998/11335531.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"RF-8055\",\n                \"asset_attribute_keys\": [\n                    \"sell_sheet\"\n                ],\n                \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                \"id\": 17412011\n            },\n            {\n                \"number\": \"RF-8056\",\n                \"asset_attribute_keys\": [\n                    \"sell_sheet\"\n                ],\n                \"name\": \"Reciprocating Compressor 100 PSI-132\",\n                \"id\": 17412012\n            },\n            {\n                \"number\": \"RF-8057\",\n                \"asset_attribute_keys\": [\n                    \"sell_sheet\"\n                ],\n                \"name\": \"Reciprocating Compressor 120 PSI-133\",\n                \"id\": 17412013\n            },\n            {\n                \"number\": \"RF-8058\",\n                \"asset_attribute_keys\": [\n                    \"sell_sheet\"\n                ],\n                \"name\": \"Reciprocating Compressor 125 PSI-134\",\n                \"id\": 17412014\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"pdf\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862998/11335531.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862998/11335531.jpg\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": [\n            \"YouTube\",\n            \"Instagram abc\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"spec sheet\",\n        \"tags\": [\n            \"Machine\",\n            \"quickest maintenance in the industry.\",\n            \"sphere air\",\n            \"portable electric air compressor\",\n            \"spin-on oil separation system allows for the easiest and\",\n            \"key features\",\n            \"legendary package design offers multiple option\",\n            \"fuel efficient doosan d24 engine extends run time to\",\n            \"provides over 8,700 cubic inches for tool and accessory\",\n            \"the industry's largest and deepest, full-length toolbox\",\n            \"premium and intuitive control interface for ease of use.\",\n            \"white\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"TCKOO4RdEYSGD_v0XDtWQbn2VmaQbZ7_\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863025,\n        \"size\": 843306,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"comp-1.psd\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/comp-1.psd\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1739304958161,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070822538\n        ],\n        \"thumbnail_filename\": \"4070863025/comp-1.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863025/comp-1.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863025/comp-1.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"2200WNK\",\n                \"asset_attribute_keys\": [\n                    \"additional_images\"\n                ],\n                \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                \"id\": 13295339\n            },\n            {\n                \"number\": \"ERB S363\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                \"id\": 14848552\n            },\n            {\n                \"number\": \"20023094\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper (Orange)\",\n                \"id\": 14848553\n            },\n            {\n                \"number\": \"20023095\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                \"id\": 14848554\n            },\n            {\n                \"number\": \"20023096\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                \"id\": 14848555\n            },\n            {\n                \"number\": \"20023097\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                \"id\": 14848556\n            },\n            {\n                \"number\": \"20023098\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                \"id\": 14848557\n            },\n            {\n                \"number\": \"20023099\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                \"id\": 14848558\n            },\n            {\n                \"number\": \"486134\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Pliers\",\n                \"id\": 14998167\n            },\n            {\n                \"number\": \"CPD1001\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"Rock 20V MAX Cordless Power Drill, Brushless Motor\",\n                \"id\": 15020524\n            },\n            {\n                \"number\": \"RF\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"RF101\",\n                \"id\": 17412009\n            },\n            {\n                \"number\": \"RF-8052D121\",\n                \"asset_attribute_keys\": [\n                    \"image_2\"\n                ],\n                \"name\": \"180 PSI, AirStream Reciprocating Compressor\",\n                \"id\": 17850739\n            },\n            {\n                \"number\": \"RF-8066\",\n                \"asset_attribute_keys\": [\n                    \"lifestyle_image\"\n                ],\n                \"name\": \"AirStream Reciprocating Compressor\",\n                \"id\": 20911397\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"psd\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863025/comp-1.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863025/comp-1.jpg\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": \"Consumer\",\n        \"marketing_campaigns\": [\n            \"LinkedIn\",\n            \"YouTube\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"mobile\",\n        \"tags\": [\n            \"Machine\",\n            \"wheel\",\n            \"car\",\n            \"transportation\",\n            \"vehicle\",\n            \"black\",\n            \"rubber wheels\",\n            \"commercial\",\n            \"residential\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"3_ZWdR0CcupgyscsGfNP4UOBAKsyXu1I\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4072251434,\n        \"size\": 37364,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"Pool_Life_NSTPrime20.2bs.webp\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Pool_Life_NSTPrime20.2bs.webp\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1739280677394,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1739304950523,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"20042895\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"\",\n                \"id\": 21011083\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"webp\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072251434/Pool_Life_NSTPrime20.2bs.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072251434/Pool_Life_NSTPrime20.2bs.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072251434/Pool_Life_NSTPrime20.2bs.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072251434/Pool_Life_NSTPrime20.2bs.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072251434/Pool_Life_NSTPrime20.2bs.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"pool life\",\n        \"tags\": [\n            \"food\",\n            \"nst prime\",\n            \"danger\",\n            \"poolife\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"qfbgqgbDwu9pgYq77hBMc1wGy2bgFsQl\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862971,\n        \"size\": 134472,\n        \"width\": 624,\n        \"height\": 624,\n        \"filename\": \"223SP-4NB86_v1.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/223SP-4NB86_v1.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1734538391113,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862971/223SP-4NB86_v1.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862971/223SP-4NB86_v1.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862971/223SP-4NB86_v1.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862971/223SP-4NB86_v1.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862971/223SP-4NB86_v1.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": [\n            \"Twitter\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"compressor\",\n        \"tags\": [\n            \"grass\",\n            \"Plant\",\n            \"Machine\",\n            \"wheel\",\n            \"device\",\n            \"grey\",\n            \"handle\",\n            \"extra light\",\n            \"insulated\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \".EiZMZ0Mn6C.SmQ7JkhHhXFVStu1o.Bv\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862980,\n        \"size\": 472174,\n        \"width\": 768,\n        \"height\": 768,\n        \"filename\": \"2hp-Air-Compressor-Suppliers-In-India-768x768.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2hp-Air-Compressor-Suppliers-In-India-768x768.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1734538391113,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"compressor\",\n        \"tags\": [\n            \"Machine\",\n            \"wheel\",\n            \"car\",\n            \"transportation\",\n            \"vehicle\",\n            \"green\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"A9wEAYxt_u.RFUWnuo1spaWf4rYLGBh4\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862983,\n        \"size\": 3764583,\n        \"width\": 3216,\n        \"height\": 3216,\n        \"filename\": \"400A10_AS02.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/400A10_AS02.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1734538391113,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862983/400A10_AS02.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862983/400A10_AS02.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862983/400A10_AS02.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862983/400A10_AS02.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862983/400A10_AS02.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"compressor\",\n        \"tags\": [\n            \"Machine\",\n            \"usa\",\n            \"Cordless\",\n            \"charger\",\n            \"fast\",\n            \"dewalt\",\n            \"2.5\",\n            \"135 psi\",\n            \"flexvolt\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"1Wx.u1UsUMFgmoIw63kvsuaJUqvdBPhA\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862990,\n        \"size\": 1009779,\n        \"width\": 1000,\n        \"height\": 1000,\n        \"filename\": \"2hp-Air-Compressor-Price-In-India.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2hp-Air-Compressor-Price-In-India.png\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1734538391113,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862990/2hp-Air-Compressor-Price-In-India.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862990/2hp-Air-Compressor-Price-In-India.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862990/2hp-Air-Compressor-Price-In-India.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862990/2hp-Air-Compressor-Price-In-India.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862990/2hp-Air-Compressor-Price-In-India.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"compressor\",\n        \"tags\": [\n            \"Machine\",\n            \"device\",\n            \"grass\",\n            \"lawn\",\n            \"lawn mower\",\n            \"Plant\",\n            \"tool\",\n            \"maruti\",\n            \"hot\",\n            \"brown\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Tools\",\n            \"level_3\": \"Compressors\"\n        },\n        \"s3_version\": \"pfR6ZRxp85Evb_GuL3y6lF0djjCB.rpk\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862965,\n        \"size\": 597548,\n        \"width\": 2144,\n        \"height\": 2144,\n        \"filename\": \"1N067_AS01.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/1N067_AS01.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529907562,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1733872733039,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862965/1N067_AS01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862965/1N067_AS01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862965/1N067_AS01.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"1N067_AS01\",\n                \"asset_attribute_keys\": [\n                    \"auto_linked_image\"\n                ],\n                \"name\": \"^1N067_AS01\",\n                \"id\": 20753904\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862965/1N067_AS01.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862965/1N067_AS01.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"scissors\",\n            \"device\",\n            \"pliers\",\n            \"brown\",\n            \"insulated\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \"59tbxAwAWhqiN.UL7S_W1U9Q502jmgC8\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862966,\n        \"size\": 170031,\n        \"width\": 804,\n        \"height\": 804,\n        \"filename\": \"53KH20_AS01.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/53KH20_AS01.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862966/53KH20_AS01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862966/53KH20_AS01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862966/53KH20_AS01.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862966/53KH20_AS01.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862966/53KH20_AS01.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"screwdriver\",\n            \"tool\",\n            \"wiha\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \"Gu1JUIkbAwOUPTy6onNLBTjamCsVsFrL\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862967,\n        \"size\": 2114222,\n        \"width\": 3216,\n        \"height\": 3216,\n        \"filename\": \"4A860_AS01.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/4A860_AS01.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862967/4A860_AS01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862967/4A860_AS01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862967/4A860_AS01.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862967/4A860_AS01.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862967/4A860_AS01.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"pliers\",\n            \"tool\",\n            \"blade\",\n            \"dagger\",\n            \"knife\",\n            \"weapon\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \"fulQiVXxryZtMsle2omBb2n5J4v_6Ign\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862970,\n        \"size\": 214647,\n        \"width\": 804,\n        \"height\": 804,\n        \"filename\": \"450G63_AS01.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/450G63_AS01.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862970/450G63_AS01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862970/450G63_AS01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862970/450G63_AS01.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862970/450G63_AS01.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862970/450G63_AS01.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"screwdriver\",\n            \"tool\",\n            \"wiha\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \"SlfHuotfbH5PpdU4Q7xkjP9ILZKEv5sE\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862972,\n        \"size\": 187396,\n        \"width\": 804,\n        \"height\": 804,\n        \"filename\": \"26X282_AS01.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/26X282_AS01.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862972/26X282_AS01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862972/26X282_AS01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862972/26X282_AS01.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862972/26X282_AS01.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862972/26X282_AS01.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"screwdriver\",\n            \"tool\",\n            \"slim\",\n            \"wiha\",\n            \"red\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \"ejBtMc8Bkt.6OEUh3E76XmrftKMG45nk\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862976,\n        \"size\": 751982,\n        \"width\": 3216,\n        \"height\": 3216,\n        \"filename\": \"759Y19_AS01.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/759Y19_AS01.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862976/759Y19_AS01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862976/759Y19_AS01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862976/759Y19_AS01.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862976/759Y19_AS01.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862976/759Y19_AS01.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"pen\",\n            \"device\",\n            \"screwdriver\",\n            \"tool\",\n            \"klein tools\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \".CNEl.Ui6UBoqKH0hhvUATS7SZeQ91Xd\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862985,\n        \"size\": 37947,\n        \"width\": 536,\n        \"height\": 536,\n        \"filename\": \"494M75_AS01.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/494M75_AS01.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862985/494M75_AS01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862985/494M75_AS01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862985/494M75_AS01.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862985/494M75_AS01.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862985/494M75_AS01.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"screwdriver\",\n            \"milwaukee\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \"DhSkKQxDyerj5HboRGnFTSlkrwBr3_jg\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862987,\n        \"size\": 29754,\n        \"width\": 804,\n        \"height\": 804,\n        \"filename\": \"31XR28_AS01.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/31XR28_AS01.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862987/31XR28_AS01.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862987/31XR28_AS01.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862987/31XR28_AS01.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862987/31XR28_AS01.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862987/31XR28_AS01.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"screwdriver\",\n            \"tool\",\n            \"fatmax\",\n            \"spf\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \"UoWs4BaSCyXNDIvf5Cv74qSx6ZUVcj_a\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862988,\n        \"size\": 1564830,\n        \"width\": 3216,\n        \"height\": 3216,\n        \"filename\": \"4JA44_AS02.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/4JA44_AS02.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862988/4JA44_AS02.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862988/4JA44_AS02.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862988/4JA44_AS02.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862988/4JA44_AS02.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862988/4JA44_AS02.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"Tools\",\n            \"open\",\n            \"klein\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Hand Tools\"\n        },\n        \"s3_version\": \"FoIGjuIeZBcpszrU1wJS3pYziPYp8dFW\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862989,\n        \"size\": 3177450,\n        \"width\": 3216,\n        \"height\": 3216,\n        \"filename\": \"483A47_AS02.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/483A47_AS02.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529920350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862989/483A47_AS02.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862989/483A47_AS02.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862989/483A47_AS02.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862989/483A47_AS02.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862989/483A47_AS02.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"fuel\",\n            \"milwaukee\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Drills\",\n            \"level_3\": \"Cordless Drills\"\n        },\n        \"s3_version\": \"6zvmFAQ35O6n7asDCu6iFXiDO_mXPYjN\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863017,\n        \"size\": 4088011,\n        \"width\": 3000,\n        \"height\": 3000,\n        \"filename\": \"515500_MAGAZINE.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/515500_MAGAZINE.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863017/515500_MAGAZINE.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863017/515500_MAGAZINE.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863017/515500_MAGAZINE.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863017/515500_MAGAZINE.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863017/515500_MAGAZINE.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"car\",\n            \"transportation\",\n            \"vehicle\",\n            \"lock\",\n            \"push\",\n            \"out\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Fastener Tools\"\n        },\n        \"s3_version\": \"52PMyqhz3Q_kS2_xhkKJAG6Hr.GHNytk\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863018,\n        \"size\": 6957624,\n        \"width\": 3000,\n        \"height\": 3000,\n        \"filename\": \"918100_TRIGGER.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_TRIGGER.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529944155,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863018/918100_TRIGGER.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863018/918100_TRIGGER.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863018/918100_TRIGGER.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863018/918100_TRIGGER.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863018/918100_TRIGGER.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"firearm\",\n            \"weapon\",\n            \"gun\",\n            \"handgun\",\n            \"rifle\",\n            \"device\",\n            \"18s\",\n            \"brown\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Fastener Tools\"\n        },\n        \"s3_version\": \"xYE5SIXYW44o3dRByqnyke3MMb_zHFI9\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863019,\n        \"size\": 7983615,\n        \"width\": 3000,\n        \"height\": 3000,\n        \"filename\": \"918100_SERIAL.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_SERIAL.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529944155,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863019/918100_SERIAL.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863019/918100_SERIAL.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863019/918100_SERIAL.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863019/918100_SERIAL.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863019/918100_SERIAL.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"electrical device\",\n            \"gun\",\n            \"weapon\",\n            \"p\",\n            \"paslode\",\n            \"800-634-7373\",\n            \"paslode.com\",\n            \"year\",\n            \"service\",\n            \"promise\",\n            \"free\",\n            \"red\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Fastener Tools\"\n        },\n        \"s3_version\": \"guREyJLV62XVAprn7MW2bAwhJ_A2MyKW\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863027,\n        \"size\": 151220,\n        \"width\": 800,\n        \"height\": 800,\n        \"filename\": \"Chuck-Pistol-Power-Drill---18V.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Chuck-Pistol-Power-Drill---18V.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863027/Chuck-Pistol-Power-Drill---18V.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863027/Chuck-Pistol-Power-Drill---18V.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863027/Chuck-Pistol-Power-Drill---18V.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863027/Chuck-Pistol-Power-Drill---18V.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863027/Chuck-Pistol-Power-Drill---18V.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"drill/driver kit\",\n            \"18v cordless\",\n            \"18v\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Drills\",\n            \"level_3\": \"Cordless Drills\"\n        },\n        \"s3_version\": \"uC443PM0nW.ti.DVurMLNKrQvteVG9UQ\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863039,\n        \"size\": 2771910,\n        \"width\": 6832,\n        \"height\": 5176,\n        \"filename\": \"Cordless Power Drill Yellow 3.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Cordless+Power+Drill+Yellow+3.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863039/Cordless Power Drill Yellow 3.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863039/Cordless+Power+Drill+Yellow+3.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863039/Cordless+Power+Drill+Yellow+3.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"BT30-SK10-120\",\n                \"asset_attribute_keys\": [\n                    \"image_2\",\n                    \"sell_sheet\"\n                ],\n                \"name\": \"Slim Chuck - ABC / Demo on March 13\",\n                \"id\": 13116222\n            },\n            {\n                \"number\": \"CPD1001\",\n                \"asset_attribute_keys\": [\n                    \"main_image\"\n                ],\n                \"name\": \"Rock 20V MAX Cordless Power Drill, Brushless Motor\",\n                \"id\": 15020524\n            },\n            {\n                \"number\": \"RF\",\n                \"asset_attribute_keys\": [\n                    \"image_3\"\n                ],\n                \"name\": \"RF101\",\n                \"id\": 17412009\n            },\n            {\n                \"number\": \"RF-8055\",\n                \"asset_attribute_keys\": [\n                    \"image_3\"\n                ],\n                \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                \"id\": 17412011\n            },\n            {\n                \"number\": \"RF-8066\",\n                \"asset_attribute_keys\": [\n                    \"image_3\"\n                ],\n                \"name\": \"AirStream Reciprocating Compressor\",\n                \"id\": 20911397\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863039/Cordless+Power+Drill+Yellow+3.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863039/Cordless+Power+Drill+Yellow+3.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"black\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Drills\",\n            \"level_3\": \"Cordless Drills\"\n        },\n        \"s3_version\": \"Pz3ZiUj2uJMVwRJTEdGU.aUKFCWum2.p\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863044,\n        \"size\": 1555824,\n        \"width\": 5616,\n        \"height\": 3744,\n        \"filename\": \"Cordless Power Drill Yellow 3 iStock-184639599.jpeg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpeg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529945511,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863044/Cordless Power Drill Yellow 3 iStock-184639599.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863044/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863044/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"CPD1001\",\n                \"asset_attribute_keys\": [\n                    \"image_2\"\n                ],\n                \"name\": \"Rock 20V MAX Cordless Power Drill, Brushless Motor\",\n                \"id\": 15020524\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpeg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863044/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863044/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Drills\",\n            \"level_3\": \"Cordless Drills\"\n        },\n        \"s3_version\": \"IRhMHU6QOLdqEq.ZgHesPdwJxIi7oP5w\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863047,\n        \"size\": 124221,\n        \"width\": 800,\n        \"height\": 800,\n        \"filename\": \"MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529957599,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"13 15 17 19\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Drills\",\n            \"level_3\": \"Cordless Drills\"\n        },\n        \"s3_version\": \"juJ3YHXnewxAQlllEak_T_ljORw2KyMo\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863055,\n        \"size\": 124221,\n        \"width\": 800,\n        \"height\": 800,\n        \"filename\": \"MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529957599,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636691022,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"13 15 17 19\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Power Drills\",\n            \"level_3\": \"Cordless Drills\"\n        },\n        \"s3_version\": \"oLhlDZ3WGY.ACBZ4OfcIM8fGNuAJI9fY\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070863002,\n        \"size\": 3872528,\n        \"width\": 3000,\n        \"height\": 3000,\n        \"filename\": \"918000_ANGLE1.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918000_ANGLE1.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529939078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636608452,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070863002/918000_ANGLE1.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863002/918000_ANGLE1.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863002/918000_ANGLE1.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863002/918000_ANGLE1.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863002/918000_ANGLE1.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"paslode\",\n            \"18 gauge finish nailer\",\n            \"red\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Fastener Tools\"\n        },\n        \"s3_version\": \"uGTXBsjJxnfyDYL3qKkNHcd8XqJ3Yl2Y\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862997,\n        \"size\": 5450343,\n        \"width\": 3000,\n        \"height\": 3000,\n        \"filename\": \"918100_NOSE_SIDE.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_NOSE_SIDE.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529934231,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636598839,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862997/918100_NOSE_SIDE.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862997/918100_NOSE_SIDE.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862997/918100_NOSE_SIDE.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862997/918100_NOSE_SIDE.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862997/918100_NOSE_SIDE.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"weapon\",\n            \"18s\",\n            \"black\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Fastener Tools\"\n        },\n        \"s3_version\": \"BRw7tva_9jQiy_Fnvpa_ajK8Mtbrb09T\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862996,\n        \"size\": 5782619,\n        \"width\": 3000,\n        \"height\": 3000,\n        \"filename\": \"918100_NOSE_ANGLE.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_NOSE_ANGLE.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529934231,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636591787,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862996/918100_NOSE_ANGLE.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862996/918100_NOSE_ANGLE.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862996/918100_NOSE_ANGLE.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862996/918100_NOSE_ANGLE.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862996/918100_NOSE_ANGLE.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"firearm\",\n            \"weapon\",\n            \"grey\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Fastener Tools\"\n        },\n        \"s3_version\": \"uenRUSfzKyQI3KbgLqS71.HvaMrBeny9\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4070862994,\n        \"size\": 8537073,\n        \"width\": 3000,\n        \"height\": 3000,\n        \"filename\": \"918000_SERIAL.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918000_SERIAL.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705529930760,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730636580716,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4070862994/918000_SERIAL.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862994/918000_SERIAL.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862994/918000_SERIAL.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862994/918000_SERIAL.jpg\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862994/918000_SERIAL.jpg\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": [\n            \"device\",\n            \"power drill\",\n            \"tool\",\n            \"800-634-7373\",\n            \"paslode.com\",\n            \"year\",\n            \"service\",\n            \"promise\",\n            \"free\",\n            \"red\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Tools\",\n            \"level_2\": \"Fastener Tools\"\n        },\n        \"s3_version\": \"tVPp4AFe6zyq5lFIjncvYlk12ZxIHoCB\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855605,\n        \"size\": 224319,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862092_3.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_3.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730395221763,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855605/2000x2000px-862092_3.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855605/2000x2000px-862092_3.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855605/2000x2000px-862092_3.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855605/2000x2000px-862092_3.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855605/2000x2000px-862092_3.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855605/2000x2000px-862092_3.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855605/2000x2000px-862092_3.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855605/2000x2000px-862092_3.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855605/2000x2000px-862092_3.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855605/2000x2000px-862092_3.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855605/2000x2000px-862092_3.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855605/2000x2000px-862092_3.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": [\n            \"Twitter\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Label\",\n        \"tags\": [\n            \"light\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"M1.pNclbxHzzs4pEsJ4IeNTWgWtAp2Eq\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855608,\n        \"size\": 260369,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862092_6.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_6.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730395221763,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855608/2000x2000px-862092_6.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855608/2000x2000px-862092_6.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855608/2000x2000px-862092_6.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855608/2000x2000px-862092_6.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855608/2000x2000px-862092_6.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855608/2000x2000px-862092_6.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855608/2000x2000px-862092_6.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855608/2000x2000px-862092_6.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855608/2000x2000px-862092_6.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855608/2000x2000px-862092_6.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855608/2000x2000px-862092_6.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855608/2000x2000px-862092_6.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": [\n            \"Twitter\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Label\",\n        \"tags\": [\n            \"light\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"b6Rv9zXdaca1YsLzZDl3z_HcQDcWzOGY\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071859186,\n        \"size\": 493099,\n        \"width\": 0,\n        \"height\": 0,\n        \"filename\": \"862037_6.pdf\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/862037_6.pdf\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729768790286,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1730395221763,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071859186/862037_6.jpg\",\n        \"asset_type\": \"PDF\",\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071859186/862037_6.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071859186/862037_6.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"862039\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"1.8W LED G4 WAFER FROST GLASS 2700K 12V-4PK\",\n                \"id\": 20615952\n            },\n            {\n                \"number\": \"862040\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"1.8W LED G4 WAFER FROST GLASS 3000K 12V-4PK\",\n                \"id\": 20615953\n            },\n            {\n                \"number\": \"862037\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"1.8W LED G4 WAFER GLASS 2700K 12V-4PK\",\n                \"id\": 20615954\n            },\n            {\n                \"number\": \"862038\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"1.8W LED G4 WAFER GLASS 3000K 12V-4PK\",\n                \"id\": 20615955\n            },\n            {\n                \"number\": \"862043\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"1.8W LED GY6 WAFER FROST GLASS 2700K 12V-4PK\",\n                \"id\": 20615956\n            },\n            {\n                \"number\": \"862084\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4.5W LED CA10 3000K FILAMENT E26 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615957\n            },\n            {\n                \"number\": \"862045\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4.5W LED G9 WAFER FROST GLASS 2700K 120V-4PK\",\n                \"id\": 20615958\n            },\n            {\n                \"number\": \"862046\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4.5W LED G9 WAFER FROST GLASS 3000K 120V-4PK\",\n                \"id\": 20615959\n            },\n            {\n                \"number\": \"862106\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4.5W LED T6 4000K FILAMENT E12 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615960\n            },\n            {\n                \"number\": \"862107\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4.5W LED T6 4000K FILAMENT E12 MILKY FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615961\n            },\n            {\n                \"number\": \"862053\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4W LED A15 2700K FILAMENT E12 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615962\n            },\n            {\n                \"number\": \"862049\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4W LED ST15 2700K FILAMENT FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615963\n            },\n            {\n                \"number\": \"862051\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4W LED ST15 2700K FILAMENT MILKY FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615964\n            },\n            {\n                \"number\": \"862050\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4W LED ST15 3000K FILAMENT FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615965\n            },\n            {\n                \"number\": \"862052\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"4W LED ST15 3000K FILAMENT MILKY FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615966\n            },\n            {\n                \"number\": \"862065\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"5W LED A19 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615967\n            },\n            {\n                \"number\": \"862070\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"5W LED A19 2700K FILAMENT MILKY FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615968\n            },\n            {\n                \"number\": \"862077\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"5W LED B11 5000K FILAMENT E12 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615969\n            },\n            {\n                \"number\": \"862078\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"5W LED B11 5000K FILAMENT MILKY E12 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615970\n            },\n            {\n                \"number\": \"862082\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"5W LED CA10 2700K FILAMENT E26 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615971\n            },\n            {\n                \"number\": \"862081\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"6W LED B11 4000K FILAMENT MILKY E12 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615972\n            },\n            {\n                \"number\": \"862079\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"6W LED B11 5000K FILAMENT E12 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615973\n            },\n            {\n                \"number\": \"862080\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"6W LED B11 5000K FILAMENT MILKY E12 FULLY COMPATIBLE DIMMING-4PK\",\n                \"id\": 20615974\n            },\n            {\n                \"number\": \"862064\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"6W LED G25 2700K FILAMENT HALF BLACK FULLY COMPATIBLE DIMMING-2PK\",\n                \"id\": 20615975\n            },\n            {\n                \"number\": \"862068\",\n                \"asset_attribute_keys\": [\n                    \"lighting_facts_pdf\"\n                ],\n                \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                \"id\": 20615976\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"pdf\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071859186/862037_6.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071859186/862037_6.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071859186/862037_6.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071859186/862037_6.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071859186/862037_6.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071859186/862037_6.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071859186/862037_6.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071859186/862037_6.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071859186/862037_6.png\"\n        },\n        \"aspect_ratio\": null,\n        \"personna\": null,\n        \"marketing_campaigns\": [\n            \"Twitter\"\n        ],\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": \"Label\",\n        \"tags\": [\n            \"light\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"OAUDJqYHBZJlRlb2U6BUw9X00z36emE9\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855604,\n        \"size\": 302396,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862092_2-copy.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_2-copy.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723248788,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855604/2000x2000px-862092_2-copy.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855604/2000x2000px-862092_2-copy.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855604/2000x2000px-862092_2-copy.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855604/2000x2000px-862092_2-copy.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855604/2000x2000px-862092_2-copy.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855604/2000x2000px-862092_2-copy.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855604/2000x2000px-862092_2-copy.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855604/2000x2000px-862092_2-copy.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855604/2000x2000px-862092_2-copy.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855604/2000x2000px-862092_2-copy.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855604/2000x2000px-862092_2-copy.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855604/2000x2000px-862092_2-copy.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"dCunR3Ipiwfl7nMtpPARP6Arq8z98b48\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855603,\n        \"size\": 152277,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862092_1.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_1.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723248593,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855603/2000x2000px-862092_1.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855603/2000x2000px-862092_1.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855603/2000x2000px-862092_1.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855603/2000x2000px-862092_1.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855603/2000x2000px-862092_1.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855603/2000x2000px-862092_1.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855603/2000x2000px-862092_1.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855603/2000x2000px-862092_1.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855603/2000x2000px-862092_1.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855603/2000x2000px-862092_1.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855603/2000x2000px-862092_1.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855603/2000x2000px-862092_1.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"igwjX2x7VGeSVLJ8Rgs0aO5mw5lg8qzo\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855602,\n        \"size\": 91283,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862091_7.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_7.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723248391,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855602/2000x2000px-862091_7.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855602/2000x2000px-862091_7.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855602/2000x2000px-862091_7.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855602/2000x2000px-862091_7.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855602/2000x2000px-862091_7.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855602/2000x2000px-862091_7.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855602/2000x2000px-862091_7.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855602/2000x2000px-862091_7.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855602/2000x2000px-862091_7.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855602/2000x2000px-862091_7.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855602/2000x2000px-862091_7.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855602/2000x2000px-862091_7.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"DzDnjURoqA4Gmaj1jay8WLlsSZusoJWB\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855607,\n        \"size\": 177689,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862092_5.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_5.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723238138,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855607/2000x2000px-862092_5.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855607/2000x2000px-862092_5.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855607/2000x2000px-862092_5.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855607/2000x2000px-862092_5.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855607/2000x2000px-862092_5.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855607/2000x2000px-862092_5.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855607/2000x2000px-862092_5.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855607/2000x2000px-862092_5.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855607/2000x2000px-862092_5.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855607/2000x2000px-862092_5.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855607/2000x2000px-862092_5.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855607/2000x2000px-862092_5.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"VOlgHizUAOwNe0xTTqHP5N7Bs7Agj8sg\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855606,\n        \"size\": 328658,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862092_4.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_4.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723229347,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855606/2000x2000px-862092_4.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855606/2000x2000px-862092_4.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855606/2000x2000px-862092_4.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855606/2000x2000px-862092_4.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855606/2000x2000px-862092_4.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855606/2000x2000px-862092_4.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855606/2000x2000px-862092_4.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855606/2000x2000px-862092_4.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855606/2000x2000px-862092_4.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855606/2000x2000px-862092_4.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855606/2000x2000px-862092_4.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855606/2000x2000px-862092_4.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"csAJh7k28SwYU1.U_cejHSnyfghF2LLM\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855601,\n        \"size\": 260088,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862091_6.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_6.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723197248,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855601/2000x2000px-862091_6.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855601/2000x2000px-862091_6.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855601/2000x2000px-862091_6.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855601/2000x2000px-862091_6.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855601/2000x2000px-862091_6.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855601/2000x2000px-862091_6.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855601/2000x2000px-862091_6.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855601/2000x2000px-862091_6.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855601/2000x2000px-862091_6.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855601/2000x2000px-862091_6.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855601/2000x2000px-862091_6.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855601/2000x2000px-862091_6.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"bm_edpED1JSHJS6b6xJ4xnAik57BOA29\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855600,\n        \"size\": 177689,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862091_5.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_5.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723181313,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855600/2000x2000px-862091_5.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855600/2000x2000px-862091_5.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855600/2000x2000px-862091_5.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855600/2000x2000px-862091_5.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855600/2000x2000px-862091_5.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855600/2000x2000px-862091_5.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855600/2000x2000px-862091_5.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855600/2000x2000px-862091_5.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855600/2000x2000px-862091_5.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855600/2000x2000px-862091_5.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855600/2000x2000px-862091_5.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855600/2000x2000px-862091_5.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"7j5H1SZGo9FMZkvJ2qcMOElaNIhA30kl\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855597,\n        \"size\": 256168,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862091_2-copy.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_2-copy.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723181154,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855597/2000x2000px-862091_2-copy.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855597/2000x2000px-862091_2-copy.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855597/2000x2000px-862091_2-copy.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855597/2000x2000px-862091_2-copy.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855597/2000x2000px-862091_2-copy.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855597/2000x2000px-862091_2-copy.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855597/2000x2000px-862091_2-copy.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855597/2000x2000px-862091_2-copy.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855597/2000x2000px-862091_2-copy.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855597/2000x2000px-862091_2-copy.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855597/2000x2000px-862091_2-copy.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855597/2000x2000px-862091_2-copy.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"bQ7ypLo9drpU7Z3zHN6NJ3EreFuzqWFb\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855596,\n        \"size\": 75133,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862091_1.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_1.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723180946,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855596/2000x2000px-862091_1.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855596/2000x2000px-862091_1.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855596/2000x2000px-862091_1.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855596/2000x2000px-862091_1.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855596/2000x2000px-862091_1.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855596/2000x2000px-862091_1.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855596/2000x2000px-862091_1.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855596/2000x2000px-862091_1.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855596/2000x2000px-862091_1.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855596/2000x2000px-862091_1.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855596/2000x2000px-862091_1.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855596/2000x2000px-862091_1.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"G3HVLKUkdzRhecalo.nAfqSBeXdQlN0A\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855595,\n        \"size\": 123029,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862090_7.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_7.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723180730,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855595/2000x2000px-862090_7.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855595/2000x2000px-862090_7.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855595/2000x2000px-862090_7.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855595/2000x2000px-862090_7.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855595/2000x2000px-862090_7.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855595/2000x2000px-862090_7.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855595/2000x2000px-862090_7.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855595/2000x2000px-862090_7.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855595/2000x2000px-862090_7.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855595/2000x2000px-862090_7.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855595/2000x2000px-862090_7.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855595/2000x2000px-862090_7.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"f0MaFVicb90rj5uUzP65oeEUYTr6eNyE\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855594,\n        \"size\": 260088,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862090_6.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_6.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723180390,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855594/2000x2000px-862090_6.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855594/2000x2000px-862090_6.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855594/2000x2000px-862090_6.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855594/2000x2000px-862090_6.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855594/2000x2000px-862090_6.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855594/2000x2000px-862090_6.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855594/2000x2000px-862090_6.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855594/2000x2000px-862090_6.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855594/2000x2000px-862090_6.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855594/2000x2000px-862090_6.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855594/2000x2000px-862090_6.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855594/2000x2000px-862090_6.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"8OW7GRg9QLiVcmelxMvGUR14w4IJBM.8\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855599,\n        \"size\": 367174,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862091_4.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_4.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723173553,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855599/2000x2000px-862091_4.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855599/2000x2000px-862091_4.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855599/2000x2000px-862091_4.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855599/2000x2000px-862091_4.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855599/2000x2000px-862091_4.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855599/2000x2000px-862091_4.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855599/2000x2000px-862091_4.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855599/2000x2000px-862091_4.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855599/2000x2000px-862091_4.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855599/2000x2000px-862091_4.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855599/2000x2000px-862091_4.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855599/2000x2000px-862091_4.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"tmaJNgmWIhIxf.EK6_fyrTLXy_4ZJFL6\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855598,\n        \"size\": 191988,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862091_3.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_3.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723151754,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855598/2000x2000px-862091_3.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855598/2000x2000px-862091_3.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855598/2000x2000px-862091_3.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855598/2000x2000px-862091_3.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855598/2000x2000px-862091_3.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855598/2000x2000px-862091_3.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855598/2000x2000px-862091_3.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855598/2000x2000px-862091_3.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855598/2000x2000px-862091_3.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855598/2000x2000px-862091_3.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855598/2000x2000px-862091_3.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855598/2000x2000px-862091_3.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"DJZiCZR3A9CPppwGZPBaHRA0AIcpqZfx\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855593,\n        \"size\": 177689,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862090_5.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_5.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723131585,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855593/2000x2000px-862090_5.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855593/2000x2000px-862090_5.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855593/2000x2000px-862090_5.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855593/2000x2000px-862090_5.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855593/2000x2000px-862090_5.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855593/2000x2000px-862090_5.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855593/2000x2000px-862090_5.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855593/2000x2000px-862090_5.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855593/2000x2000px-862090_5.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855593/2000x2000px-862090_5.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855593/2000x2000px-862090_5.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855593/2000x2000px-862090_5.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"gR6D1UdQNyN.h7NERt1wWC3J0Lwxip.4\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855592,\n        \"size\": 367174,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862090_4.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_4.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723110013,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855592/2000x2000px-862090_4.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855592/2000x2000px-862090_4.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855592/2000x2000px-862090_4.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855592/2000x2000px-862090_4.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855592/2000x2000px-862090_4.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855592/2000x2000px-862090_4.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855592/2000x2000px-862090_4.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855592/2000x2000px-862090_4.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855592/2000x2000px-862090_4.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855592/2000x2000px-862090_4.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855592/2000x2000px-862090_4.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855592/2000x2000px-862090_4.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"MdHyhCynZpaUXRfyCfihg2VML.N0SQRM\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855588,\n        \"size\": 99438,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862072.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862072.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723101999,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [\n            4070555856,\n            4070822538,\n            4071505810\n        ],\n        \"thumbnail_filename\": \"4071855588/2000x2000px-862072.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855588/2000x2000px-862072.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855588/2000x2000px-862072.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855588/2000x2000px-862072.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855588/2000x2000px-862072.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855588/2000x2000px-862072.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855588/2000x2000px-862072.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855588/2000x2000px-862072.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855588/2000x2000px-862072.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855588/2000x2000px-862072.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855588/2000x2000px-862072.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855588/2000x2000px-862072.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 2,\n        \"title_a\": null,\n        \"tags\": [\n            \"text\",\n            \"13.7 years\",\n            \"warm\",\n            \"life\",\n            \"white\"\n        ],\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"q8X.AeLnQFtiEmatZeCN8hKkDp4fcVR6\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855589,\n        \"size\": 152277,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862090_1.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_1.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723090794,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855589/2000x2000px-862090_1.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855589/2000x2000px-862090_1.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855589/2000x2000px-862090_1.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855589/2000x2000px-862090_1.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855589/2000x2000px-862090_1.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855589/2000x2000px-862090_1.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855589/2000x2000px-862090_1.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855589/2000x2000px-862090_1.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855589/2000x2000px-862090_1.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855589/2000x2000px-862090_1.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855589/2000x2000px-862090_1.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855589/2000x2000px-862090_1.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"storemediaid\": null,\n        \"source\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"expiration_date\": null,\n        \"publish_date\": null,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null\n    },\n    {\n        \"id\": 4071855590,\n        \"size\": 304704,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862090_2-copy.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_2-copy.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723090794,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855590/2000x2000px-862090_2-copy.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855590/2000x2000px-862090_2-copy.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855590/2000x2000px-862090_2-copy.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855590/2000x2000px-862090_2-copy.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855590/2000x2000px-862090_2-copy.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855590/2000x2000px-862090_2-copy.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855590/2000x2000px-862090_2-copy.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855590/2000x2000px-862090_2-copy.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855590/2000x2000px-862090_2-copy.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855590/2000x2000px-862090_2-copy.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855590/2000x2000px-862090_2-copy.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855590/2000x2000px-862090_2-copy.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"storemediaid\": null,\n        \"source\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"expiration_date\": null,\n        \"publish_date\": null,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null\n    },\n    {\n        \"id\": 4071855591,\n        \"size\": 215332,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862090_3.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_3.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723090794,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855591/2000x2000px-862090_3.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855591/2000x2000px-862090_3.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855591/2000x2000px-862090_3.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855591/2000x2000px-862090_3.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855591/2000x2000px-862090_3.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855591/2000x2000px-862090_3.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855591/2000x2000px-862090_3.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855591/2000x2000px-862090_3.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855591/2000x2000px-862090_3.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855591/2000x2000px-862090_3.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855591/2000x2000px-862090_3.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855591/2000x2000px-862090_3.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"storemediaid\": null,\n        \"source\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"expiration_date\": null,\n        \"publish_date\": null,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null\n    },\n    {\n        \"id\": 4071855586,\n        \"size\": 260369,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862071_6.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_6.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723069550,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855586/2000x2000px-862071_6.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855586/2000x2000px-862071_6.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855586/2000x2000px-862071_6.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855586/2000x2000px-862071_6.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855586/2000x2000px-862071_6.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855586/2000x2000px-862071_6.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855586/2000x2000px-862071_6.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855586/2000x2000px-862071_6.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855586/2000x2000px-862071_6.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855586/2000x2000px-862071_6.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855586/2000x2000px-862071_6.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855586/2000x2000px-862071_6.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"mTvlbGazXbyj3UqLpoR4V8UDceMUgTAg\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855587,\n        \"size\": 116375,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862071_7.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_7.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723059854,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855587/2000x2000px-862071_7.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855587/2000x2000px-862071_7.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855587/2000x2000px-862071_7.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855587/2000x2000px-862071_7.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855587/2000x2000px-862071_7.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855587/2000x2000px-862071_7.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855587/2000x2000px-862071_7.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855587/2000x2000px-862071_7.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855587/2000x2000px-862071_7.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855587/2000x2000px-862071_7.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855587/2000x2000px-862071_7.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855587/2000x2000px-862071_7.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"storemediaid\": null,\n        \"source\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"expiration_date\": null,\n        \"publish_date\": null,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null\n    },\n    {\n        \"id\": 4071855584,\n        \"size\": 328658,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862071_4.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_4.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723057878,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855584/2000x2000px-862071_4.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855584/2000x2000px-862071_4.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855584/2000x2000px-862071_4.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855584/2000x2000px-862071_4.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855584/2000x2000px-862071_4.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855584/2000x2000px-862071_4.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855584/2000x2000px-862071_4.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855584/2000x2000px-862071_4.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855584/2000x2000px-862071_4.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855584/2000x2000px-862071_4.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855584/2000x2000px-862071_4.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855584/2000x2000px-862071_4.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"6adMv7LbxLgcBaPaNpx1wFIlLr_dHVD0\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855583,\n        \"size\": 221383,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862071_3.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_3.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723057655,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855583/2000x2000px-862071_3.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855583/2000x2000px-862071_3.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855583/2000x2000px-862071_3.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855583/2000x2000px-862071_3.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855583/2000x2000px-862071_3.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855583/2000x2000px-862071_3.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855583/2000x2000px-862071_3.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855583/2000x2000px-862071_3.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855583/2000x2000px-862071_3.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855583/2000x2000px-862071_3.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855583/2000x2000px-862071_3.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855583/2000x2000px-862071_3.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"ntPgcCBaJZbIcWy4Fv8AsfAbyAyOa.Et\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855582,\n        \"size\": 298484,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862071_2-copy.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_2-copy.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723057439,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855582/2000x2000px-862071_2-copy.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855582/2000x2000px-862071_2-copy.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855582/2000x2000px-862071_2-copy.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855582/2000x2000px-862071_2-copy.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855582/2000x2000px-862071_2-copy.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855582/2000x2000px-862071_2-copy.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855582/2000x2000px-862071_2-copy.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855582/2000x2000px-862071_2-copy.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855582/2000x2000px-862071_2-copy.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855582/2000x2000px-862071_2-copy.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855582/2000x2000px-862071_2-copy.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855582/2000x2000px-862071_2-copy.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"hePdthWIkNB.3Qe6InHRfq7rJ_PHbRQT\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855581,\n        \"size\": 140793,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862071_1.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_1.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723057210,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855581/2000x2000px-862071_1.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855581/2000x2000px-862071_1.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855581/2000x2000px-862071_1.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855581/2000x2000px-862071_1.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855581/2000x2000px-862071_1.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855581/2000x2000px-862071_1.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855581/2000x2000px-862071_1.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855581/2000x2000px-862071_1.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855581/2000x2000px-862071_1.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855581/2000x2000px-862071_1.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855581/2000x2000px-862071_1.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855581/2000x2000px-862071_1.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"F2gB7f1BuY1FfLkjPFqf3.U98cnS.rqB\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855585,\n        \"size\": 177689,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862071_5.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_5.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723050165,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855585/2000x2000px-862071_5.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855585/2000x2000px-862071_5.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855585/2000x2000px-862071_5.jpg\",\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855585/2000x2000px-862071_5.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855585/2000x2000px-862071_5.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855585/2000x2000px-862071_5.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855585/2000x2000px-862071_5.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855585/2000x2000px-862071_5.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855585/2000x2000px-862071_5.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855585/2000x2000px-862071_5.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855585/2000x2000px-862071_5.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855585/2000x2000px-862071_5.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"xAEh2a5r6NGBMPg8_3rUx9f5p.IZ_L15\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855580,\n        \"size\": 115503,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862068_7.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_7.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729723002209,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855580/2000x2000px-862068_7.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855580/2000x2000px-862068_7.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855580/2000x2000px-862068_7.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"862068\",\n                \"asset_attribute_keys\": [\n                    \"image_7_will_it_fit\"\n                ],\n                \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                \"id\": 20615976\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855580/2000x2000px-862068_7.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855580/2000x2000px-862068_7.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855580/2000x2000px-862068_7.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855580/2000x2000px-862068_7.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855580/2000x2000px-862068_7.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855580/2000x2000px-862068_7.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855580/2000x2000px-862068_7.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855580/2000x2000px-862068_7.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855580/2000x2000px-862068_7.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"gRhTAf6ys8CNcGuZnqy9toAbR7oCVkym\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855579,\n        \"size\": 258423,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862068_6.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_6.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729722992878,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855579/2000x2000px-862068_6.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855579/2000x2000px-862068_6.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855579/2000x2000px-862068_6.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"862068\",\n                \"asset_attribute_keys\": [\n                    \"image_6_lighting_facts_jpg\"\n                ],\n                \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                \"id\": 20615976\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855579/2000x2000px-862068_6.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855579/2000x2000px-862068_6.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855579/2000x2000px-862068_6.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855579/2000x2000px-862068_6.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855579/2000x2000px-862068_6.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855579/2000x2000px-862068_6.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855579/2000x2000px-862068_6.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855579/2000x2000px-862068_6.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855579/2000x2000px-862068_6.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"VNt65I5dWMGMhBzLHn9n9MZVsl6.KR.e\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855578,\n        \"size\": 177689,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862068_5.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_5.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729722992648,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855578/2000x2000px-862068_5.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855578/2000x2000px-862068_5.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855578/2000x2000px-862068_5.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"862068\",\n                \"asset_attribute_keys\": [\n                    \"image_5_ideal_for\"\n                ],\n                \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                \"id\": 20615976\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855578/2000x2000px-862068_5.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855578/2000x2000px-862068_5.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855578/2000x2000px-862068_5.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855578/2000x2000px-862068_5.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855578/2000x2000px-862068_5.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855578/2000x2000px-862068_5.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855578/2000x2000px-862068_5.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855578/2000x2000px-862068_5.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855578/2000x2000px-862068_5.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"EWMGF7ZZ6gRMP8zF3vnrI.Fywzmy36Dq\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855577,\n        \"size\": 231604,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862068_4.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_4.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729722992452,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855577/2000x2000px-862068_4.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855577/2000x2000px-862068_4.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855577/2000x2000px-862068_4.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"862068\",\n                \"asset_attribute_keys\": [\n                    \"image_4_color_temp\"\n                ],\n                \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                \"id\": 20615976\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855577/2000x2000px-862068_4.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855577/2000x2000px-862068_4.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855577/2000x2000px-862068_4.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855577/2000x2000px-862068_4.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855577/2000x2000px-862068_4.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855577/2000x2000px-862068_4.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855577/2000x2000px-862068_4.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855577/2000x2000px-862068_4.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855577/2000x2000px-862068_4.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"W6gzhCrKR1VGyLxWrwRbrfTbP6YmTOTv\",\n        \"publish_date\": null\n    },\n    {\n        \"id\": 4071855576,\n        \"size\": 218580,\n        \"width\": 2000,\n        \"height\": 2000,\n        \"filename\": \"2000x2000px-862068_3.jpg\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_3.jpg\",\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1729694807207,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1729722992259,\n        \"update_user_name\": \"Super Admin\",\n        \"lightbox_ids\": [],\n        \"thumbnail_filename\": \"4071855576/2000x2000px-862068_3.jpg\",\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855576/2000x2000px-862068_3.jpg\",\n        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855576/2000x2000px-862068_3.jpg\",\n        \"linked_products\": [\n            {\n                \"number\": \"862068\",\n                \"asset_attribute_keys\": [\n                    \"image_3_get_the_look\"\n                ],\n                \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                \"id\": 20615976\n            }\n        ],\n        \"private\": false,\n        \"extension\": \"jpg\",\n        \"transformations\": {\n            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855576/2000x2000px-862068_3.jpg\",\n            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855576/2000x2000px-862068_3.jpg\",\n            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855576/2000x2000px-862068_3.png\",\n            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855576/2000x2000px-862068_3.png\",\n            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855576/2000x2000px-862068_3.png\",\n            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855576/2000x2000px-862068_3.jpg\",\n            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855576/2000x2000px-862068_3.png\",\n            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855576/2000x2000px-862068_3.jpg\",\n            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855576/2000x2000px-862068_3.png\"\n        },\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"source\": null,\n        \"expiration_date\": null,\n        \"version\": 1,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null,\n        \"storemediaid\": null,\n        \"category\": {\n            \"level_1\": \"Uncategorized\"\n        },\n        \"s3_version\": \"kRoK04BWLBcOAjF6rWhhzn7dwJLTxgDD\",\n        \"publish_date\": null\n    }\n]"}],"_postman_id":"d810f059-4cb7-42fa-843d-04695ef9ffe8"},{"name":"Upload Asset","id":"b06f6a07-92d9-4d1f-b957-3300c7f723d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"image_data","type":"file","uuid":"c5f7eb57-4f26-4637-8dee-383213baa9d3","src":"tjJBYKaiL/logo_2c756023-f61f-4cdc-aa7c-4e4a2c384766.png"}]},"url":"https://api.catsy.com/v4/assets","description":"<h3 id=\"create-new-asset\">Create New Asset</h3>\n<p>This endpoint allows the client to create a new asset by sending a POST request to the specified URL.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>asset_type</code> (string) - The type of the asset to be created.</p>\n</li>\n<li><p><code>asset_path</code> (string) - The path or URL of the asset.</p>\n</li>\n<li><p><code>overwrite</code> (boolean) - Indicates whether to overwrite the asset if it already exists.</p>\n</li>\n<li><p><code>rename</code> (boolean) - Indicates whether to rename the asset if there is a naming conflict.</p>\n</li>\n<li><p><code>asset_id</code> (number) - The ID of the asset.</p>\n</li>\n<li><p><code>image_data</code> (file) - Browse local computer attach file</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>The type of the asset to be created.</p>\n","type":"text/plain"},"key":"asset_type","value":""},{"disabled":true,"description":{"content":"<p>The name of the asset.</p>\n","type":"text/plain"},"key":"asset_path","value":""},{"disabled":true,"description":{"content":"<p>Indicates whether to overwrite the asset if it already exists.</p>\n","type":"text/plain"},"key":"overwrite","value":""},{"disabled":true,"description":{"content":"<p>If set to true, the system will automatically rename the new file being uploaded to avoid conflict</p>\n","type":"text/plain"},"key":"rename","value":""},{"disabled":true,"description":{"content":"<p>The ID of the asset.</p>\n","type":"text/plain"},"key":"asset_id","value":""}],"variable":[]}},"response":[{"id":"1ce7ef52-6e97-48a7-bd7d-493c63de76b5","name":"Upload Asset","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"image_data","type":"file","uuid":"c5f7eb57-4f26-4637-8dee-383213baa9d3","src":"tjJBYKaiL/logo_2c756023-f61f-4cdc-aa7c-4e4a2c384766.png"}],"options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/assets","host":["https://api.catsy.com/v4"],"path":["assets"],"query":[{"key":"asset_type","value":"","description":"The type of the asset to be created.","disabled":true},{"key":"asset_path","value":"","description":"The name of the asset.","disabled":true},{"key":"overwrite","value":"","description":"Indicates whether to overwrite the asset if it already exists.","disabled":true},{"key":"rename","value":"","description":"The ID of the asset.","disabled":true},{"key":"asset_id","value":"","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Apr 2025 21:35:16 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=%2FvwgsuyUfsI%2BySNv%2B2bC%2F%2F6k1s5kFZMeiSPaZyhGG46oGUKmn%2FVBYpsygbIWiPm1Jos5K5Qr0L5vOIQuY3EOyPsP6tpikwxN97guFsazmJDgv2GsTtXs1xLU5pj9auw%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"93483fccadde8c42-EWR","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=9974&min_rtt=9910&rtt_var=3762&sent=7&recv=12&lost=0&retrans=0&sent_bytes=2818&recv_bytes=11197&delivery_rate=292230&cwnd=82&unsent_bytes=0&cid=6fda56f3245ff703&ts=8614&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"action\": \"UPDATE\",\n    \"actionResponse\": {\n        \"id\": 4072616576,\n        \"size\": 9775,\n        \"width\": 382,\n        \"height\": 145,\n        \"filename\": \"logo_2c756023-f61f-4cdc-aa7c-4e4a2c384766.png\",\n        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/logo_2c756023-f61f-4cdc-aa7c-4e4a2c384766.png\",\n        \"create_user_id\": 4018007130,\n        \"create_date\": 1745357708404,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_user_id\": 4018007130,\n        \"update_date\": 1745357708404,\n        \"update_user_name\": \"Catsy Administrator\",\n        \"lightbox_ids\": [],\n        \"asset_type\": \"IMAGE\",\n        \"aspect_ratio\": null,\n        \"linked_products\": [],\n        \"private\": false,\n        \"extension\": \"png\",\n        \"transformations\": {},\n        \"personna\": null,\n        \"marketing_campaigns\": null,\n        \"storemediaid\": null,\n        \"source\": null,\n        \"category\": null,\n        \"expiration_date\": null,\n        \"publish_date\": null,\n        \"title_a\": null,\n        \"tags\": null,\n        \"application_notes\": null\n    }\n}"}],"_postman_id":"b06f6a07-92d9-4d1f-b957-3300c7f723d1"},{"name":"Asset by ID","id":"9caa636a-d401-4c30-bd46-56daf538b482","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/assets/:asset_id","description":"<h3 id=\"retrieve-asset-details\">Retrieve Asset Details</h3>\n<p>This endpoint retrieves details of a specific asset based on the provided <code>asset_id</code>.</p>\n<h4 id=\"path-variables\">Path Variables</h4>\n<ul>\n<li><code>asset_id</code>: The ID of the asset to retrieve.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets",":asset_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Asset ID</p>\n","type":"text/plain"},"type":"any","value":"{asset_id}","key":"asset_id"}]}},"response":[{"id":"3692e069-06f9-423d-ab67-5e416b4f1f2c","name":"Asset by ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/assets/:asset_id","host":["https://api.catsy.com/v4"],"path":["assets",":asset_id"],"variable":[{"key":"asset_id","value":"4070863022","description":"Internal Asset ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Apr 2025 15:50:46 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=mhh3QLfTyqRc6XIZV0K8Fdw23qVuyZ%2B14Fz37SVc6Vaszj5Lh8mo%2FE%2BHtzVrQtA45mo0UqVAyLjDLwIJWG%2FLf0swFzNGIRM44CsKGssnAxeor40LheYALv3A0PaoJZk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"93464758ae7ab785-EWR","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=8183&min_rtt=7977&rtt_var=3139&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2817&recv_bytes=1102&delivery_rate=363043&cwnd=65&unsent_bytes=0&cid=4b39c3521362632d&ts=924&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4070863022,\n    \"size\": 121103,\n    \"width\": 800,\n    \"height\": 800,\n    \"filename\": \"8052-Main.jpeg\",\n    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/8052-Main.jpeg\",\n    \"create_user_id\": 4018007131,\n    \"create_date\": 1705529945511,\n    \"create_user_name\": \"Super Admin\",\n    \"update_user_id\": 4018007131,\n    \"update_date\": 1744204629287,\n    \"update_user_name\": \"Super Admin\",\n    \"lightbox_ids\": [],\n    \"thumbnail_filename\": \"4070863022/comp-1.jpg\",\n    \"asset_type\": \"IMAGE\",\n    \"aspect_ratio\": null,\n    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n    \"linked_products\": [\n        {\n            \"number\": \"2200WNK\",\n            \"asset_attribute_keys\": [\n                \"additional_images\"\n            ],\n            \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n            \"id\": 13295339\n        },\n        {\n            \"number\": \"RF-8052\",\n            \"asset_attribute_keys\": [\n                \"image_3\",\n                \"image_2\"\n            ],\n            \"name\": \"Reciprocating Compressor\",\n            \"id\": 17412008\n        },\n        {\n            \"number\": \"RF\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"RF101\",\n            \"id\": 17412009\n        },\n        {\n            \"number\": \"RF-8054\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 120 PSI-130\",\n            \"id\": 17412010\n        },\n        {\n            \"number\": \"RF-8055\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 200 PSI-200\",\n            \"id\": 17412011\n        },\n        {\n            \"number\": \"RF-8056\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 100 PSI-132\",\n            \"id\": 17412012\n        },\n        {\n            \"number\": \"RF-8057\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 120 PSI-133\",\n            \"id\": 17412013\n        },\n        {\n            \"number\": \"RF-8058\",\n            \"asset_attribute_keys\": [\n                \"main_image\",\n                \"lifestyle_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 125 PSI-134\",\n            \"id\": 17412014\n        },\n        {\n            \"number\": \"RF-8059\",\n            \"asset_attribute_keys\": [\n                \"main_image\",\n                \"lifestyle_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 112 PSI-135\",\n            \"id\": 17412015\n        },\n        {\n            \"number\": \"RF-8060\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 120 PSI-136\",\n            \"id\": 17412016\n        },\n        {\n            \"number\": \"RF-8061\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 125 PSI-137\",\n            \"id\": 17412017\n        },\n        {\n            \"number\": \"RF-8062\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 130 PSI-138\",\n            \"id\": 17412018\n        },\n        {\n            \"number\": \"RF-8063\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 135 PSI-139\",\n            \"id\": 17412019\n        },\n        {\n            \"number\": \"RF-8064\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 140 PSI-140\",\n            \"id\": 17412020\n        },\n        {\n            \"number\": \"RF-8052D121\",\n            \"asset_attribute_keys\": [\n                \"image_3\"\n            ],\n            \"name\": \"180 PSI, AirStream Reciprocating Compressor\",\n            \"id\": 17850739\n        },\n        {\n            \"number\": \"RF-8052E211\",\n            \"asset_attribute_keys\": [\n                \"image_2\"\n            ],\n            \"name\": \"170 PSI, AirStream Reciprocating Compressor\",\n            \"id\": 17850740\n        },\n        {\n            \"number\": \"1N067_AS01\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"^1N067_AS01\",\n            \"id\": 20753904\n        },\n        {\n            \"number\": \"RF-8066\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"AirStream Reciprocating Compressor\",\n            \"id\": 20911397\n        }\n    ],\n    \"private\": false,\n    \"extension\": \"jpeg\",\n    \"transformations\": {\n        \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863022/8052-Main.jpg\",\n        \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863022/8052-Main.jpg\",\n        \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863022/8052-Main.png\",\n        \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863022/8052-Main.png\",\n        \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863022/8052-Main.png\",\n        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n        \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863022/8052-Main.png\",\n        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n        \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863022/8052-Main.png\"\n    },\n    \"personna\": \"DIY\",\n    \"marketing_campaigns\": [\n        \"Facebook\",\n        \"Twitter\",\n        \"YouTube\"\n    ],\n    \"source\": null,\n    \"expiration_date\": null,\n    \"version\": 1,\n    \"title_a\": \"compressor\",\n    \"tags\": [\n        \"Machine\",\n        \"wheel\",\n        \"vehicle\",\n        \"compressor\",\n        \"top mount handle\",\n        \"car\",\n        \"black\",\n        \"handle\",\n        \"rubber grip\",\n        \"extra light\",\n        \"rubber wheels\",\n        \"diy\",\n        \"commercial\",\n        \"residential\",\n        \"new tag\"\n    ],\n    \"application_notes\": null,\n    \"storemediaid\": null,\n    \"category\": {\n        \"level_1\": \"Tools\",\n        \"level_2\": \"Power Tools\",\n        \"level_3\": \"Compressors\"\n    },\n    \"s3_version\": \"T2yO5Q.wdnZvcz7i3CKNoeXTnF4sCHn_\",\n    \"publish_date\": null\n}"}],"_postman_id":"9caa636a-d401-4c30-bd46-56daf538b482"},{"name":"Update Metadata","id":"00f663a3-41a2-4fbe-aa7f-4abee1fa3f50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title_a\": \"Yellow Air Compressor\",\r\n    \"application_notes\": \"1000PSI\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/assets/:assetID","description":"<h3 id=\"update-asset-details\">Update Asset Details</h3>\n<p>This endpoint allows updating the details of a specific asset.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets",":assetID"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Unique asset identifier</p>\n","type":"text/plain"},"type":"any","value":"{asset_id}","key":"assetID"}]}},"response":[{"id":"eceb2604-ad34-4f05-a96c-3270cc412091","name":"Update Metadata","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title_a\": \"Yellow Air Compressor\",\r\n    \"application_notes\": \"1000PSI\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/assets/:assetID","host":["https://api.catsy.com/v4"],"path":["assets",":assetID"],"variable":[{"key":"assetID","value":"4070863022","description":"Unique asset identifier"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Apr 2025 15:52:53 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=UXQ3WdQwUNfG3%2BmBU8B0q9J0G8N%2FuT%2Fo8E2vfvG3TI6NROcai3DExzb8ZlNQcemGYvErgX9WiPhGUr5cojVtsqRfz4PlBQBp84DpVTi1BRibwWhVo7cqNpFlOPKLCyA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"93464a6c0cefd386-FRA","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=88779&min_rtt=88650&rtt_var=33336&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2816&recv_bytes=1235&delivery_rate=32667&cwnd=32&unsent_bytes=0&cid=542297ebd1bb28bb&ts=1524&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4070863022,\n    \"size\": 121103,\n    \"width\": 800,\n    \"height\": 800,\n    \"filename\": \"8052-Main.jpeg\",\n    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/8052-Main.jpeg\",\n    \"create_user_id\": 4018007131,\n    \"create_date\": 1705529945511,\n    \"create_user_name\": \"Super Admin\",\n    \"update_user_id\": 4018007130,\n    \"update_date\": 1745337172467,\n    \"update_user_name\": \"Catsy Administrator\",\n    \"lightbox_ids\": [],\n    \"thumbnail_filename\": \"4070863022/comp-1.jpg\",\n    \"asset_type\": \"IMAGE\",\n    \"aspect_ratio\": null,\n    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n    \"linked_products\": [\n        {\n            \"number\": \"2200WNK\",\n            \"asset_attribute_keys\": [\n                \"additional_images\"\n            ],\n            \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n            \"id\": 13295339\n        },\n        {\n            \"number\": \"RF-8052\",\n            \"asset_attribute_keys\": [\n                \"image_3\",\n                \"image_2\"\n            ],\n            \"name\": \"Reciprocating Compressor\",\n            \"id\": 17412008\n        },\n        {\n            \"number\": \"RF\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"RF101\",\n            \"id\": 17412009\n        },\n        {\n            \"number\": \"RF-8054\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 120 PSI-130\",\n            \"id\": 17412010\n        },\n        {\n            \"number\": \"RF-8055\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 200 PSI-200\",\n            \"id\": 17412011\n        },\n        {\n            \"number\": \"RF-8056\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 100 PSI-132\",\n            \"id\": 17412012\n        },\n        {\n            \"number\": \"RF-8057\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 120 PSI-133\",\n            \"id\": 17412013\n        },\n        {\n            \"number\": \"RF-8058\",\n            \"asset_attribute_keys\": [\n                \"main_image\",\n                \"lifestyle_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 125 PSI-134\",\n            \"id\": 17412014\n        },\n        {\n            \"number\": \"RF-8059\",\n            \"asset_attribute_keys\": [\n                \"main_image\",\n                \"lifestyle_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 112 PSI-135\",\n            \"id\": 17412015\n        },\n        {\n            \"number\": \"RF-8060\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 120 PSI-136\",\n            \"id\": 17412016\n        },\n        {\n            \"number\": \"RF-8061\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 125 PSI-137\",\n            \"id\": 17412017\n        },\n        {\n            \"number\": \"RF-8062\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 130 PSI-138\",\n            \"id\": 17412018\n        },\n        {\n            \"number\": \"RF-8063\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 135 PSI-139\",\n            \"id\": 17412019\n        },\n        {\n            \"number\": \"RF-8064\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"Reciprocating Compressor 140 PSI-140\",\n            \"id\": 17412020\n        },\n        {\n            \"number\": \"RF-8052D121\",\n            \"asset_attribute_keys\": [\n                \"image_3\"\n            ],\n            \"name\": \"180 PSI, AirStream Reciprocating Compressor\",\n            \"id\": 17850739\n        },\n        {\n            \"number\": \"RF-8052E211\",\n            \"asset_attribute_keys\": [\n                \"image_2\"\n            ],\n            \"name\": \"170 PSI, AirStream Reciprocating Compressor\",\n            \"id\": 17850740\n        },\n        {\n            \"number\": \"1N067_AS01\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"^1N067_AS01\",\n            \"id\": 20753904\n        },\n        {\n            \"number\": \"RF-8066\",\n            \"asset_attribute_keys\": [\n                \"main_image\"\n            ],\n            \"name\": \"AirStream Reciprocating Compressor\",\n            \"id\": 20911397\n        }\n    ],\n    \"private\": false,\n    \"extension\": \"jpeg\",\n    \"transformations\": {\n        \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863022/8052-Main.jpg\",\n        \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863022/8052-Main.jpg\",\n        \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863022/8052-Main.png\",\n        \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863022/8052-Main.png\",\n        \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863022/8052-Main.png\",\n        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n        \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863022/8052-Main.png\",\n        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n        \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863022/8052-Main.png\"\n    },\n    \"personna\": \"DIY\",\n    \"marketing_campaigns\": [\n        \"Facebook\",\n        \"Twitter\",\n        \"YouTube\"\n    ],\n    \"source\": null,\n    \"expiration_date\": null,\n    \"version\": 1,\n    \"title_a\": \"Yellow Air Compressor\",\n    \"application_notes\": \"1000PSI\",\n    \"tags\": [\n        \"Machine\",\n        \"wheel\",\n        \"vehicle\",\n        \"compressor\",\n        \"top mount handle\",\n        \"car\",\n        \"black\",\n        \"handle\",\n        \"rubber grip\",\n        \"extra light\",\n        \"rubber wheels\",\n        \"diy\",\n        \"commercial\",\n        \"residential\",\n        \"new tag\"\n    ],\n    \"storemediaid\": null,\n    \"category\": {\n        \"level_1\": \"Tools\",\n        \"level_2\": \"Power Tools\",\n        \"level_3\": \"Compressors\"\n    },\n    \"s3_version\": \"T2yO5Q.wdnZvcz7i3CKNoeXTnF4sCHn_\",\n    \"publish_date\": null\n}"}],"_postman_id":"00f663a3-41a2-4fbe-aa7f-4abee1fa3f50"},{"name":"Export Metadata","id":"1467ad27-0217-4b2f-afeb-57fba9c057a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"assetFilters\": {\r\n\t\t\"attributeKeys\": [\r\n\t\t\t\"title_a\",\r\n\t\t\t\"application_notes\"\r\n\t\t],\r\n\t\t\"filters\": [\r\n\t\t\t{\r\n\t\t\t\t\"attributeKey\": \"title_a\",\r\n\t\t\t\t\"operator\": \"contains\",\r\n\t\t\t\t\"value\": \"compressor\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"attributeKey\": \"status\",\r\n\t\t\t\t\"operator\": \"not\",\r\n\t\t\t\t\"value\": \"Inactive\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"orderBy\": {\r\n\t\t\t\"attributeKey\": \"fileName\",\r\n\t\t\t\"direction\": \"ASCENDING\"\r\n\t\t}\r\n\t},\r\n\t\"email\": \"jarwat@catsy.com\",\r\n\t\"includeProducts\": true,\r\n\t\"spreadCategoryColumns\": true\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/assets/export","description":"<h3 id=\"export-assets\">Export Assets</h3>\n<p>This endpoint allows the user to export assets based on specified filters and receive the download URL.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>assetFilters</code> (object) - Specifies the filters for assets.</p>\n<ul>\n<li><p><code>attributeKeys</code> (array) - The attribute keys to return with the assets.</p>\n</li>\n<li><p><code>filters</code> (array) - The filters to apply on the assets.</p>\n<ul>\n<li><p><code>attributeKey</code> (string) - The attribute key to apply the filter on.</p>\n</li>\n<li><p><code>operator</code> (string) - The operator for the filter (e.g., \"contains\", \"equals\").</p>\n</li>\n<li><p><code>value</code> (string) - The value to filter by.</p>\n</li>\n</ul>\n</li>\n<li><p><code>orderBy</code> (object) - Specifies the attribute key and direction for ordering the assets.</p>\n<ul>\n<li><p><code>attributeKey</code> (string) - The attribute key to order by.</p>\n</li>\n<li><p><code>direction</code> (string) - The direction of ordering (\"ASCENDING\" or \"DESCENDING\").</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>email</code> (string) - The email to receive the export notification.</p>\n</li>\n<li><p><code>includeProducts</code> (boolean) - Indicates whether to include products in the export.</p>\n</li>\n<li><p><code>spreadCategoryColumns</code> (boolean) - Indicates whether to spread category columns in the export.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will be in JSON format with the following schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"download_url\": \"\"\n}\n\n</code></pre>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets","export"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"4d5b2345-ecf0-4b70-9da7-86b0296490c1","name":"Export Metadata","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n\t\"assetFilters\": {\r\n\t\t\"attributeKeys\": [\r\n\t\t\t\"title_a\",\r\n\t\t\t\"application_notes\"\r\n\t\t],\r\n\t\t\"filters\": [\r\n\t\t\t{\r\n\t\t\t\t\"attributeKey\": \"title_a\",\r\n\t\t\t\t\"operator\": \"contains\",\r\n\t\t\t\t\"value\": \"compressor\"\r\n\t\t\t},\r\n\t\t\t{\r\n\t\t\t\t\"attributeKey\": \"status\",\r\n\t\t\t\t\"operator\": \"not\",\r\n\t\t\t\t\"value\": \"Inactive\"\r\n\t\t\t}\r\n\t\t],\r\n\t\t\"orderBy\": {\r\n\t\t\t\"attributeKey\": \"name\",\r\n\t\t\t\"direction\": \"ASCENDING\"\r\n\t\t}\r\n\t}\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/assets/export"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Apr 2025 15:59:39 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=m5icclPfl31ehT1hRcdMxwl7mNFSSJpE2xrogqdt1PXtMhhglnamxPd9yakyN35GfdRrpjdLfhjQF%2BK2KjgZf58ke6u1JNVUSgYfiHNCpsHdCkjsPwHEu3XOSPorskg%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"9346545aaa1e1ce4-FRA","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=87205&min_rtt=87043&rtt_var=32757&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2818&recv_bytes=1540&delivery_rate=33270&cwnd=32&unsent_bytes=0&cid=f634e103c6d89033&ts=1279&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"download_url\": \"https://s3.us-west-2.amazonaws.com/catsy.804/_aps/_downloads/Assets-20250422-1059-39-20250422-1059-39.xlsx\"\n}"}],"_postman_id":"1467ad27-0217-4b2f-afeb-57fba9c057a9"},{"name":"File Extensions","id":"fa6c9c5d-5ec4-4830-ab7f-f7f4053416eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/assets/extensions","description":"<h3 id=\"get-asset-extensions\">Get Asset Extensions</h3>\n<p>This endpoint makes an HTTP GET request to retrieve a list of asset extensions.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<p>This request does not require a request body.</p>\n<h4 id=\"response\">Response</h4>\n<ul>\n<li><p>Status: 200</p>\n</li>\n<li><p>Content-Type: application/json</p>\n</li>\n</ul>\n<p>The response returns an array of asset extensions in JSON format.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets","extensions"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"78ea61b0-e19f-43c8-8058-6f7aa2a97d3f","name":"File Extensions","originalRequest":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/assets/extensions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Apr 2025 21:03:51 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"Set-Cookie","value":"JSESSIONID=Nzk3MzJjYzgtNDc2Ni00MjdiLTg4ZGItNzJkZDhmODlhZTg5; Path=/; Secure; HttpOnly; SameSite=None","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=8ZNqBGUtv6YJbWNeIBke7%2FKnVcXo1V021g678rgahSxTVzKh0%2BSe9vzZ6ZxTFidqFMYWiaODcqHJNtN96JS9j6IBZ6GggtAzF9f25qsyAMOSOJJ8WSUimbZVPbYkp8k%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"934811f88a24e041-NRT","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=176988&min_rtt=176933&rtt_var=66389&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2816&recv_bytes=847&delivery_rate=16367&cwnd=32&unsent_bytes=0&cid=f5c27d977741b838&ts=1034&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"[\n    \"jpg\",\n    \"psd\",\n    \"pdf\",\n    \"mov\",\n    \"ai\",\n    \"png\",\n    \"jpeg\",\n    \"webp\"\n]"}],"_postman_id":"fa6c9c5d-5ec4-4830-ab7f-f7f4053416eb"},{"name":"Filter Assets","id":"5ee2394f-15f5-4375-bea6-88d0e9713f23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"attributeKeys\": [\r\n        \"title_a\",\r\n        \"application_notes\"\r\n    ],\r\n    \"filters\": [\r\n        {\r\n            \"attributeKey\": \"title_a\",\r\n            \"operator\": \"contains\",\r\n            \"value\": \"compressor\"\r\n        },\r\n        {\r\n            \"attributeKey\": \"status\",\r\n            \"operator\": \"not\",\r\n            \"value\": \"Inactive\"\r\n        }\r\n    ],\r\n    \"orderBy\": {\r\n        \"attributeKey\": \"fileName\",\r\n        \"direction\": \"ASCENDING\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/assets/filter","description":"<h3 id=\"post-assetsfilter\">POST /assets/filter</h3>\n<p>This endpoint is used to filter assets based on specified attribute keys and filters, and order the results by a specified attribute key.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p>attributeKeys (array of strings): An array of attribute keys to filter the assets.</p>\n</li>\n<li><p>filters (array of objects): An array of filter objects containing attributeKey, operator, and value to filter the assets.</p>\n</li>\n<li><p>orderBy (object): An object containing attributeKey and direction to order the results.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets","filter"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"14b84a1c-793b-408d-8d46-3c7943614615","name":"Filter Assets","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"attributeKeys\": [\r\n        \"title_a\",\r\n        \"application_notes\"\r\n    ],\r\n    \"filters\": [\r\n        {\r\n            \"attributeKey\": \"title_a\",\r\n            \"operator\": \"contains\",\r\n            \"value\": \"compressor\"\r\n        },\r\n        {\r\n            \"attributeKey\": \"status\",\r\n            \"operator\": \"not\",\r\n            \"value\": \"Inactive\"\r\n        }\r\n    ],\r\n    \"orderBy\": {\r\n        \"attributeKey\": \"fileName\",\r\n        \"direction\": \"ASCENDING\"\r\n    }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/assets/filter"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 22 Apr 2025 21:05:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=5BrS%2BrV06NzROYPcQbbj0NnIBGu04awZ5MSN8awCA1MS5hpW4UiLrx6URc%2F7cSg9bWkfNQFKQapXI7itGXFdtpeh5zl0C9nEao875e2tR7fIZ5yJkNiUruyn1rvUclk%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"934813fa4856f493-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2584&min_rtt=2400&rtt_var=838&sent=4&recv=6&lost=0&retrans=0&sent_bytes=2816&recv_bytes=1620&delivery_rate=1203157&cwnd=251&unsent_bytes=0&cid=4b61c0e5b841b177&ts=683&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"assets\": [\n        {\n            \"id\": 4070863022,\n            \"size\": 121103,\n            \"width\": 800,\n            \"height\": 800,\n            \"filename\": \"8052-Main.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/8052-Main.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007130,\n            \"update_date\": 1745337172467,\n            \"update_user_name\": \"Catsy Administrator\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863022/comp-1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"2200WNK\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                    \"id\": 13295339\n                },\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"image_3\",\n                        \"image_2\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"RF\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"RF Series Reciprocating Air Compressor\",\n                    \"id\": 17412009\n                },\n                {\n                    \"number\": \"RF-8054\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 120 PSI-130\",\n                    \"id\": 17412010\n                },\n                {\n                    \"number\": \"RF-8055\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                    \"id\": 17412011\n                },\n                {\n                    \"number\": \"RF-8056\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 100 PSI-132\",\n                    \"id\": 17412012\n                },\n                {\n                    \"number\": \"RF-8057\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 120 PSI-133\",\n                    \"id\": 17412013\n                },\n                {\n                    \"number\": \"RF-8058\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\",\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 125 PSI-134\",\n                    \"id\": 17412014\n                },\n                {\n                    \"number\": \"RF-8059\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\",\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 112 PSI-135\",\n                    \"id\": 17412015\n                },\n                {\n                    \"number\": \"RF-8060\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 120 PSI-136\",\n                    \"id\": 17412016\n                },\n                {\n                    \"number\": \"RF-8061\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 125 PSI-137\",\n                    \"id\": 17412017\n                },\n                {\n                    \"number\": \"RF-8062\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 130 PSI-138\",\n                    \"id\": 17412018\n                },\n                {\n                    \"number\": \"RF-8063\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 135 PSI-139\",\n                    \"id\": 17412019\n                },\n                {\n                    \"number\": \"RF-8064\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 140 PSI-140\",\n                    \"id\": 17412020\n                },\n                {\n                    \"number\": \"RF-8052D121\",\n                    \"asset_attribute_keys\": [\n                        \"image_3\"\n                    ],\n                    \"name\": \"180 PSI, AirStream Reciprocating Compressor\",\n                    \"id\": 17850739\n                },\n                {\n                    \"number\": \"RF-8052E211\",\n                    \"asset_attribute_keys\": [\n                        \"image_2\"\n                    ],\n                    \"name\": \"170 PSI, AirStream Reciprocating Compressor\",\n                    \"id\": 17850740\n                },\n                {\n                    \"number\": \"1N067_AS01\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"^1N067_AS01\",\n                    \"id\": 20753904\n                },\n                {\n                    \"number\": \"RF-8066\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"AirStream Reciprocating Compressor\",\n                    \"id\": 20911397\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863022/8052-Main.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863022/8052-Main.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863022/8052-Main.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863022/8052-Main.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863022/8052-Main.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863022/8052-Main.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863022/8052-Main.png\"\n            },\n            \"personna\": \"DIY\",\n            \"marketing_campaigns\": [\n                \"Facebook\",\n                \"Twitter\",\n                \"YouTube\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Yellow Air Compressor\",\n            \"application_notes\": \"1000PSI\",\n            \"tags\": [\n                \"Machine\",\n                \"wheel\",\n                \"vehicle\",\n                \"compressor\",\n                \"top mount handle\",\n                \"car\",\n                \"black\",\n                \"handle\",\n                \"rubber grip\",\n                \"extra light\",\n                \"rubber wheels\",\n                \"diy\",\n                \"commercial\",\n                \"residential\",\n                \"new tag\"\n            ],\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"T2yO5Q.wdnZvcz7i3CKNoeXTnF4sCHn_\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863013,\n            \"size\": 1054280,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"11335535.pdf\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335535.pdf\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1744134163672,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070555856,\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4070863013/11335535.jpg\",\n            \"asset_type\": \"PDF\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863013/11335535.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863013/11335535.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"pdf\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863013/11335535.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863013/11335535.jpg\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"RF1012, new alt text\",\n            \"tags\": [\n                \"camera\",\n                \"electronics\",\n                \"Machine\",\n                \"quickest maintenance in the industry.\",\n                \"sphere air\",\n                \"spin-on oil separation system allows for the easiest and\",\n                \"key features\",\n                \"legendary package design offers multiple option\",\n                \"fuel efficient doosan d24 engine extends run time to\",\n                \"provides over 8,700 cubic inches for tool and accessory\",\n                \"the industry's largest and deepest, full-length toolbox\",\n                \"air compressor with truck mount\",\n                \"premium and intuitive control interface for ease of use.\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"XNqJLDa1gwsz76gvoBNfrlv1eyUNtP1Z\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863004,\n            \"size\": 963347,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"11335538.pdf\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335538.pdf\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1743532991657,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070555856,\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4070863004/11335538.jpg\",\n            \"asset_type\": \"PDF\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863004/11335538.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863004/11335538.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"BT30-SK10-120\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Slim Chuck - ABC / Demo on March 13\",\n                    \"id\": 13116222\n                },\n                {\n                    \"number\": \"PLE411PF\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Elite Series Five Star™ 8\\\" x 3\\\" Golden Stainless Steel Midget Trowel with ProForm® Handle\",\n                    \"id\": 13910548\n                },\n                {\n                    \"number\": \"LP10WC\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"10″ CURVED JAW LOCKING PLIERS W/WIRE CUTTER\",\n                    \"id\": 13910988\n                },\n                {\n                    \"number\": \"WSL-2548\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"12V DC, Subcompact, 3/8 in Chuck, 1500 RPM Power Drill\",\n                    \"id\": 13949314\n                },\n                {\n                    \"number\": \"WSL-2548-WLK1\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"12V DC, Subcompact, 5/8 in Chuck, 1,500 RPM Power Drill\",\n                    \"id\": 13949378\n                },\n                {\n                    \"number\": \"WSL-2572-WLK1\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"12V DC, Subcompact, 1/2 in Chuck, 1,500 RPM Power Drill\",\n                    \"id\": 13949379\n                },\n                {\n                    \"number\": \"WSL-3848-WLK1\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"12V DC, Subcompact, 3/8 in Chuck, 2,000 RPM Power Drill\",\n                    \"id\": 13949380\n                },\n                {\n                    \"number\": \"WSL-3872-WLK1\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"12V DC, Subcompact, 5/8 in Chuck, 2,000 RPM Power Drill\",\n                    \"id\": 13949381\n                },\n                {\n                    \"number\": \"411\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register\",\n                    \"id\": 13949382\n                },\n                {\n                    \"number\": \"411-15\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949383\n                },\n                {\n                    \"number\": \"411-19\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949384\n                },\n                {\n                    \"number\": \"411-22\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949385\n                },\n                {\n                    \"number\": \"411-29\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949386\n                },\n                {\n                    \"number\": \"411-35\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949387\n                },\n                {\n                    \"number\": \"411-40\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949388\n                },\n                {\n                    \"number\": \"411-44\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949389\n                },\n                {\n                    \"number\": \"411-53\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949390\n                },\n                {\n                    \"number\": \"411-60\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949391\n                },\n                {\n                    \"number\": \"RF-8055\",\n                    \"asset_attribute_keys\": [\n                        \"spec_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                    \"id\": 17412011\n                },\n                {\n                    \"number\": \"GFBDF-2\",\n                    \"asset_attribute_keys\": [\n                        \"spec_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Air Compressor - 160 PSI\",\n                    \"id\": 18321300\n                },\n                {\n                    \"number\": \"GFBDF-3\",\n                    \"asset_attribute_keys\": [\n                        \"spec_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Air Compressor - 190 PSI\",\n                    \"id\": 18321301\n                },\n                {\n                    \"number\": \"GFBDF-4\",\n                    \"asset_attribute_keys\": [\n                        \"spec_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Air Compressor - 170 PSI\",\n                    \"id\": 18321302\n                },\n                {\n                    \"number\": \"BN31M1P\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"2-1/8” 18 GAUGE BRAD NAILER with Grip\",\n                    \"id\": 21153060\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"pdf\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863004/11335538.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863004/11335538.jpg\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"specification sheet. abc\",\n            \"tags\": [\n                \"Machine\",\n                \"wheel\",\n                \"quickest maintenance in the industry.\",\n                \"sphere air\",\n                \"spin-on oil separation system allows for the easiest and\",\n                \"silent air portable electric air compressor\",\n                \"key features\",\n                \"legendary package design offers multiple option\",\n                \"fuel efficient doosan d24 engine extends run time to\",\n                \"provides over 8,700 cubic inches for tool and accessory\",\n                \"the industry's largest and deepest, full-length toolbox\",\n                \"premium and intuitive control interface for ease of use.\",\n                \"white\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"EBl5G.GV39Z2MpOf44qbuVDSR2fwbxE7\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398992,\n            \"size\": 20705,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_RT210CVN_MAIN.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_RT210CVN_MAIN.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1743520509291,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398992/CRS_RT210CVN_MAIN.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"RT210CVN-05\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" Straight Jaw Dipped Handle Tongue and Groove Pliers\",\n                    \"id\": 21154284\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398992/CRS_RT210CVN_MAIN.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398992/CRS_RT210CVN_MAIN.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398992/CRS_RT210CVN_MAIN.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398992/CRS_RT210CVN_MAIN.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398992/CRS_RT210CVN_MAIN.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398992/CRS_RT210CVN_MAIN.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398992/CRS_RT210CVN_MAIN.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398992/CRS_RT210CVN_MAIN.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398992/CRS_RT210CVN_MAIN.png\"\n            },\n            \"personna\": \"DIY\",\n            \"marketing_campaigns\": [\n                \"Instagram abc\",\n                \"YouTube\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Rubber Grip - new\",\n            \"tags\": [\n                \"smoke pipe\",\n                \"device\",\n                \"pliers\",\n                \"brown\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"czqWS3fKkyZvSAZdJg4RfenJaB37z.wB\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863014,\n            \"size\": 982144,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"11335539.pdf\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335539.pdf\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742848828499,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070555856,\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4070863014/11335539.jpg\",\n            \"asset_type\": \"PDF\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863014/11335539.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863014/11335539.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"pdf\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863014/11335539.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863014/11335539.jpg\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"updating alt text rubber grip\",\n            \"tags\": [\n                \"Machine\",\n                \"car\",\n                \"transportation\",\n                \"vehicle\",\n                \"quickest maintenance in the industry.\",\n                \"number\",\n                \"sphere air\",\n                \"spin-on oil separation system allows for the easiest and\",\n                \"key features\",\n                \"legendary package design offers multiple option\",\n                \"fuel efficient doosan d24 engine extends run time to\",\n                \"industrial 80 gallon air compressor\",\n                \"provides over 8,700 cubic inches for tool and accessory\",\n                \"the industry's largest and deepest, full-length toolbox\",\n                \"yellow\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"uH.6LLylydsNL2Yb3A6GP1z7496tggS1\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863040,\n            \"size\": 564424,\n            \"width\": 1000,\n            \"height\": 1000,\n            \"filename\": \"20005635.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/20005635.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742490046415,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863040/20005635.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863040/20005635.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863040/20005635.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"RF-8056\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 100 PSI-132\",\n                    \"id\": 17412012\n                },\n                {\n                    \"number\": \"20044839\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Reciprocating Air Compressor\",\n                    \"id\": 21400692\n                },\n                {\n                    \"number\": \"20044841\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2 gal / horizontal / 90\",\n                    \"id\": 21400693\n                },\n                {\n                    \"number\": \"20044843\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"1 gal / vertical / 90\",\n                    \"id\": 21400694\n                },\n                {\n                    \"number\": \"20044840\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"1 gal / horizontal / 90\",\n                    \"id\": 21400695\n                },\n                {\n                    \"number\": \"20044845\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"3gal / vertical / 90\",\n                    \"id\": 21400696\n                },\n                {\n                    \"number\": \"20044844\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2 gal / vertical / 90\",\n                    \"id\": 21400697\n                },\n                {\n                    \"number\": \"20044849\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"1 gal / vertical / 120\",\n                    \"id\": 21400698\n                },\n                {\n                    \"number\": \"20044846\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"1 gal / horizontal / 120\",\n                    \"id\": 21400699\n                },\n                {\n                    \"number\": \"20044850\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2 gal / vertical / 120\",\n                    \"id\": 21400700\n                },\n                {\n                    \"number\": \"20044847\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2 gal / horizontal / 120\",\n                    \"id\": 21400701\n                },\n                {\n                    \"number\": \"20044851\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"3gal / vertical / 120\",\n                    \"id\": 21400702\n                },\n                {\n                    \"number\": \"20044842\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"3gal / horizontal / 90\",\n                    \"id\": 21400703\n                },\n                {\n                    \"number\": \"20044848\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"3gal / horizontal / 120\",\n                    \"id\": 21400704\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863040/20005635.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863040/20005635.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Red industrial air compressor with black handles and wheels.\",\n            \"tags\": [\n                \"Air Compressor\",\n                \"red compressor\",\n                \"industrial tool\",\n                \"garage equipment\",\n                \"portable air pump\",\n                \"high-pressure\",\n                \"pneumatic tool\",\n                \"workshop gear\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"TfqtCzIpmnNzKmEpuHHz3lwJwA9FuZF6\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398989,\n            \"size\": 20174,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742490046415,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"193410CVNN-05\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" Dipped Handle Heavy-Duty Solid Joint Fence Tool Pliers\",\n                    \"id\": 21154281\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398989/CRS_193410CVNN-05_IMG-MAIN.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398989/CRS_193410CVNN-05_IMG-MAIN.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Close-up of red-handled pliers gripping a metal wire.\",\n            \"tags\": [\n                \"pliers\",\n                \"hand tool\",\n                \"grip tool\",\n                \"industrial pliers\",\n                \"metalworking\",\n                \"red pliers\",\n                \"cutting tool\",\n                \"hardware tool\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\",\n                \"level_3\": \"Pliers\"\n            },\n            \"s3_version\": \"DtImqoBGPJEmtZSo0SIM3Nx763PuNVZz\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398990,\n            \"size\": 17873,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_GG010HN_MAIN.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_GG010HN_MAIN.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742490046415,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072417577\n            ],\n            \"thumbnail_filename\": \"4072398990/CRS_GG010HN_MAIN.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398990/CRS_GG010HN_MAIN.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398990/CRS_GG010HN_MAIN.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"GG010HN\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" Heavy-Duty End Cutting Nipper Pliers\",\n                    \"id\": 21154282\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398990/CRS_GG010HN_MAIN.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398990/CRS_GG010HN_MAIN.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398990/CRS_GG010HN_MAIN.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398990/CRS_GG010HN_MAIN.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398990/CRS_GG010HN_MAIN.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398990/CRS_GG010HN_MAIN.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398990/CRS_GG010HN_MAIN.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398990/CRS_GG010HN_MAIN.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398990/CRS_GG010HN_MAIN.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Pair of industrial pliers with rubberized red grips on a workbench.\",\n            \"tags\": [\n                \"pliers\",\n                \"hand tool\",\n                \"grip tool\",\n                \"industrial pliers\",\n                \"metalworking\",\n                \"red pliers\",\n                \"cutting tool\",\n                \"hardware tool\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\",\n                \"level_3\": \"Pliers\"\n            },\n            \"s3_version\": \"DozGU4_RQYNZ3fttP.6NYObkd0rs6XLY\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398715,\n            \"size\": 52858,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"FinishPro30XP_35兵_w_fasteners72x-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741880477519,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742488893809,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398715/FinishPro30XP_35兵_w_fasteners72x-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"9P0002N\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2\\\" Angled Finish Nailer\",\n                    \"id\": 21153073\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398715/FinishPro30XP_35%E5%85%B5_w_fasteners72x-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Senco 30XP Nail Gun Loaded Side View\",\n            \"tags\": [\n                \"device\",\n                \"tool\",\n                \"finish pro 30xp\",\n                \"senco\",\n                \"black\",\n                \"Nail gun\",\n                \"rubber grip\",\n                \"pneumatic\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Nail Guns\",\n                \"level_4\": \"Pneumatic Nail Guns\"\n            },\n            \"s3_version\": \"7wNxrpgJKg3PCnbX.ephHy1GgTPvpy.x\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398991,\n            \"size\": 17327,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742415111834,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072417577\n            ],\n            \"thumbnail_filename\": \"4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\",\n                        \"exchange_policy\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"10TGSJDG\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" Smooth Jaw Dipped Handle Tongue & Groove Pliers\",\n                    \"id\": 21154283\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398991/CRS_10TGSJDG_IMG_MAIN_01.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398991/CRS_10TGSJDG_IMG_MAIN_01.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"rubber grip\",\n            \"tags\": [\n                \"device\",\n                \"smoke pipe\",\n                \"pliers\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"3OHiVa04xsrfl.Ew7dgWJmlyiKTRPTus\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398993,\n            \"size\": 23849,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742403972517,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072417577\n            ],\n            \"thumbnail_filename\": \"4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"C10SVN-08\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" Straight Jaw Locking Pliers\",\n                    \"id\": 21154285\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398993/CRS_C10SVN-08-IMG-MAIN-01.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398993/CRS_C10SVN-08-IMG-MAIN-01.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Rubber Grip\",\n            \"tags\": [\n                \"blade\",\n                \"razor\",\n                \"weapon\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"a7cRn.jtBevzRkMbZYLeIySXWbzRy2pv\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398994,\n            \"size\": 19062,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_RT410CVN_IMG_ANG.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_RT410CVN_IMG_ANG.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742403972517,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072417577\n            ],\n            \"thumbnail_filename\": \"4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RT410CVN-05\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" V-Jaw Dipped Handle Tongue and Groove Pliers\",\n                    \"id\": 21154286\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398994/CRS_RT410CVN_IMG_ANG.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398994/CRS_RT410CVN_IMG_ANG.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398994/CRS_RT410CVN_IMG_ANG.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398994/CRS_RT410CVN_IMG_ANG.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398994/CRS_RT410CVN_IMG_ANG.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398994/CRS_RT410CVN_IMG_ANG.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Rubber Grip\",\n            \"tags\": [\n                \"device\",\n                \"pliers\",\n                \"tool\",\n                \"rt410\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"B6eH6VYQxfi8485ldyHG39Pf9DDllOHR\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398995,\n            \"size\": 25405,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742403962067,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072417577\n            ],\n            \"thumbnail_filename\": \"4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"RTAB10CG\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" Z2 Auto-Bite Dual Material Tongue & Groove Pliers\",\n                    \"id\": 21154287\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398995/CRS_RTAB10CG_IMG-ANGLE.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398995/CRS_RTAB10CG_IMG-ANGLE.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"pliers rubber grip\",\n            \"tags\": [\n                \"device\",\n                \"pliers\",\n                \"tool\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"ldUfrGxdSScYwkqf81H0EVqcWprwN.fO\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863035,\n            \"size\": 1447422,\n            \"width\": 948,\n            \"height\": 866,\n            \"filename\": \"compressor.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/compressor.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742310979070,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4072417577\n            ],\n            \"thumbnail_filename\": \"4070863035/compressor.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863035/compressor.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863035/compressor.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863035/compressor.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863035/compressor.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"english, in use , add text\",\n            \"tags\": [\n                \"Machine\",\n                \"ning your new\",\n                \"grey\",\n                \"application shot\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"g0UUc3_4Ck1mhEaXk9GD3V2XanLfEdl7\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398988,\n            \"size\": 21430,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741891822305,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"193610CVSMNN-05\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" Dipped Handle Dual Staple Grip Joint Fence Tool Pliers\",\n                    \"id\": 21154280\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398988/CRS_193610CVSMNN-05_IMG-MAIN.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"axe\",\n                \"tool\",\n                \"red\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"QfoFSPNZhHRDevcRY0yUQA5SVmwyl7jv\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398987,\n            \"size\": 20902,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741891822074,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"C10CVN-08\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" Curved Jaw Locking Pliers with Wire Cutter\",\n                    \"id\": 21154279\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398987/CRS_C10CVN_FRNT_MAIN.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398987/CRS_C10CVN_FRNT_MAIN.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398987/CRS_C10CVN_FRNT_MAIN.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398987/CRS_C10CVN_FRNT_MAIN.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398987/CRS_C10CVN_FRNT_MAIN.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398987/CRS_C10CVN_FRNT_MAIN.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"scissors\",\n                \"device\",\n                \"pliers\",\n                \"crescent\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"bswPbw1UmaF_F0rWJWhdspsr9SIz53CE\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398986,\n            \"size\": 17492,\n            \"width\": 720,\n            \"height\": 720,\n            \"filename\": \"CRS_52910N_FRNT_MAIN.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/CRS_52910N_FRNT_MAIN.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741891769695,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741891821812,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"52910N\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10\\\" A-N Connector Adjustable Joint Pliers\",\n                    \"id\": 21154278\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398986/CRS_52910N_FRNT_MAIN.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398986/CRS_52910N_FRNT_MAIN.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398986/CRS_52910N_FRNT_MAIN.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398986/CRS_52910N_FRNT_MAIN.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398986/CRS_52910N_FRNT_MAIN.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398986/CRS_52910N_FRNT_MAIN.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"crescent\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"p5yQf5YVLtiuNTnTwVTnSlyDnM4noNYV\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398716,\n            \"size\": 57910,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"FinishPro18BMg_35L72x-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/FinishPro18BMg_35L72x-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741880477519,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741880543896,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398716/FinishPro18BMg_35L72x-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"9B0001N\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2-1/8\\\" Magnesium Brad Nailer\",\n                    \"id\": 21153074\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398716/FinishPro18BMg_35L72x-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398716/FinishPro18BMg_35L72x-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398716/FinishPro18BMg_35L72x-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398716/FinishPro18BMg_35L72x-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398716/FinishPro18BMg_35L72x-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398716/FinishPro18BMg_35L72x-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"senco\",\n                \"18 brad nails\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"VB11JtYh1MH18w5Q4UWjywsx4Db0yTes\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398713,\n            \"size\": 42684,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741880477519,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741880543579,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"10N0001N\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2-1/2” Cordless Finish Nailer\",\n                    \"id\": 21153071\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398713/F-16XP_-35u_Hero_Low72x-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398713/F-16XP_-35u_Hero_Low72x-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398713/F-16XP_-35u_Hero_Low72x-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398713/F-16XP_-35u_Hero_Low72x-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398713/F-16XP_-35u_Hero_Low72x-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398713/F-16XP_-35u_Hero_Low72x-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"gun\",\n                \"weapon\",\n                \"senco\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"7EIV3FyMIzVeekOkcXGx_v6a_2.sGc2R\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398712,\n            \"size\": 45208,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741880477519,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741880543352,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"10M0001N\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2-1/8” Cordless Brad Nailer\",\n                    \"id\": 21153070\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398712/F-18XP_0u_with_Fasteners72x-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398712/F-18XP_0u_with_Fasteners72x-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398712/F-18XP_0u_with_Fasteners72x-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398712/F-18XP_0u_with_Fasteners72x-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398712/F-18XP_0u_with_Fasteners72x-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398712/F-18XP_0u_with_Fasteners72x-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"f-18xp\",\n                \"18v li-ion\",\n                \"senco\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"nOD_4O0UDQLpAl7R4MLB758xHk4C9nBs\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398711,\n            \"size\": 54924,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"TN11G1_35_Hero_H72x-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/TN11G1_35_Hero_H72x-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741880477519,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741880543131,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"TN11G1\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"1-3/8” 23 GAUGE PINNER\",\n                    \"id\": 21153069\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398711/TN11G1_35_Hero_H72x-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398711/TN11G1_35_Hero_H72x-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398711/TN11G1_35_Hero_H72x-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398711/TN11G1_35_Hero_H72x-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398711/TN11G1_35_Hero_H72x-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398711/TN11G1_35_Hero_H72x-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"neverlube oil free tool\",\n                \"pin nailer\",\n                \"senco\",\n                \"brown\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"RagtDEPiJUQfH9836M_SpQ8DRHrJCQok\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398714,\n            \"size\": 41284,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741880477519,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741880543089,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"10L0001N\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2-1/2” Cordless Finish Nailer\",\n                    \"id\": 21153072\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398714/F-15XP_35u_Hero_Low_Upright_with_Fasteners72x-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"gun\",\n                \"weapon\",\n                \"senco\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"4ioYmVw1hC_QJaIzSX.ZTcei4W9lawIv\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398710,\n            \"size\": 47270,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"TN11L1_0_Fasteners72x-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/TN11L1_0_Fasteners72x-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741880477519,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741880542896,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"TN11L1\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2” 23 GAUGE PINNER\",\n                    \"id\": 21153068\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398710/TN11L1_0_Fasteners72x-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398710/TN11L1_0_Fasteners72x-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398710/TN11L1_0_Fasteners72x-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398710/TN11L1_0_Fasteners72x-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398710/TN11L1_0_Fasteners72x-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398710/TN11L1_0_Fasteners72x-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"23\",\n                \"neverlube oil free tool\",\n                \"senco\",\n                \"brown\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"RYNF0Y6W.Pktn7UOLrkde.x43bUG9SfG\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398709,\n            \"size\": 43088,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"TN21L1_0_Fasteners72x-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/TN21L1_0_Fasteners72x-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741880477519,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741880542570,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"TN21L1\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2” 21 GAUGE PINNER\",\n                    \"id\": 21153067\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398709/TN21L1_0_Fasteners72x-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398709/TN21L1_0_Fasteners72x-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398709/TN21L1_0_Fasteners72x-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398709/TN21L1_0_Fasteners72x-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398709/TN21L1_0_Fasteners72x-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398709/TN21L1_0_Fasteners72x-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"pin nailer\",\n                \"tn21l1\",\n                \"senco\",\n                \"black\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"3ZeRzmAm88.drUKo91kDheKQu3x90sBh\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398690,\n            \"size\": 65900,\n            \"width\": 876,\n            \"height\": 876,\n            \"filename\": \"BN31M1P_0°72ppi-100.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741875927536,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741880213827,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398690/BN31M1P_0°72ppi-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"BN31M1P\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"2-1/8” 18 GAUGE BRAD NAILER with Grip\",\n                    \"id\": 21153060\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398690/BN31M1P_0%C2%B072ppi-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398690/BN31M1P_0%C2%B072ppi-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398690/BN31M1P_0%C2%B072ppi-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398690/BN31M1P_0%C2%B072ppi-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398690/BN31M1P_0%C2%B072ppi-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398690/BN31M1P_0%C2%B072ppi-100.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 2,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"brad nailer\",\n                \"senco\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"rkNYJ8bUhU52lmDs6LrRBe67mxWIyL9i\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072398689,\n            \"size\": 33216,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"BN31M1P_0°72ppi-100.webp\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/BN31M1P_0%C2%B072ppi-100.webp\",\n            \"create_user_id\": 4018014823,\n            \"create_date\": 1741875908090,\n            \"create_user_name\": \"Jarod Waters\",\n            \"update_user_id\": 4018014823,\n            \"update_date\": 1741875926752,\n            \"update_user_name\": \"Jarod Waters\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072398689/BN31M1P_0°72ppi-100.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"webp\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072398689/BN31M1P_0%C2%B072ppi-100.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072398689/BN31M1P_0%C2%B072ppi-100.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072398689/BN31M1P_0%C2%B072ppi-100.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072398689/BN31M1P_0%C2%B072ppi-100.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072398689/BN31M1P_0%C2%B072ppi-100.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072398689/BN31M1P_0%C2%B072ppi-100.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"brad nailer\",\n                \"senco\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"IlrKOwd3a7MxCebdcOqVgUWUQWPiwoUt\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863005,\n            \"size\": 865496,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"11335536.pdf\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335536.pdf\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1741198260208,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070555856,\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4070863005/11335536.jpg\",\n            \"asset_type\": \"PDF\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863005/11335536.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863005/11335536.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"pdf\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863005/11335536.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863005/11335536.jpg\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": [\n                \"Twitter\",\n                \"Instagram abc\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"english spec sheet , hello\",\n            \"tags\": [\n                \"Machine\",\n                \"quickest maintenance in the industry.\",\n                \"sphere air\",\n                \"spin-on oil separation system allows for the easiest and\",\n                \"key features\",\n                \"legendary package design offers multiple option\",\n                \"fuel efficient doosan d24 engine extends run time to\",\n                \"provides over 8,700 cubic inches for tool and accessory\",\n                \"the industry's largest and deepest, full-length toolbox\",\n                \"quiet flow steel tank air compressor\",\n                \"premium and intuitive control interface for ease of use.\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"CwOHe50wBt3y5XlA17PF3W8Ru7VcrYpz\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072386472,\n            \"size\": 37947,\n            \"width\": 536,\n            \"height\": 536,\n            \"filename\": \"494M75_AS01_A.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/494M75_AS01_A.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1741137834793,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1741137851699,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072386472/494M75_AS01_A.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072386472/494M75_AS01_A.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072386472/494M75_AS01_A.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072386472/494M75_AS01_A.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072386472/494M75_AS01_A.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072386472/494M75_AS01_A.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072386472/494M75_AS01_A.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072386472/494M75_AS01_A.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072386472/494M75_AS01_A.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072386472/494M75_AS01_A.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072386472/494M75_AS01_A.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072386472/494M75_AS01_A.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"milwaukee\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"bNSCeE1f4p774WNZTO6nB5oQBPiOzZko\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863026,\n            \"size\": 1161081,\n            \"width\": 1200,\n            \"height\": 1200,\n            \"filename\": \"comp-1_wTransp.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/comp-1_wTransp.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1740767383778,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070822538\n            ],\n            \"thumbnail_filename\": \"4070863026/comp-1_wTransp.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863026/comp-1_wTransp.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863026/comp-1_wTransp.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"2200WNK\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                    \"id\": 13295339\n                },\n                {\n                    \"number\": \"20023163\",\n                    \"asset_attribute_keys\": [\n                        \"image_3\"\n                    ],\n                    \"name\": \"Pliers for ease of use\",\n                    \"id\": 14998168\n                },\n                {\n                    \"number\": \"RF\",\n                    \"asset_attribute_keys\": [\n                        \"sell_sheet\"\n                    ],\n                    \"name\": \"RF Series Reciprocating Air Compressor\",\n                    \"id\": 17412009\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863026/comp-1_wTransp.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863026/comp-1_wTransp.jpg\"\n            },\n            \"personna\": \"DIY\",\n            \"marketing_campaigns\": [\n                \"Twitter\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"application shot\",\n            \"tags\": [\n                \"Machine\",\n                \"wheel\",\n                \"car\",\n                \"transportation\",\n                \"vehicle\",\n                \"black\",\n                \"rubber wheels\",\n                \"commercial\",\n                \"residential\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"QYMZJJi_12bV5PyEAPO.tbeveFh.vQlv\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863037,\n            \"size\": 1075552,\n            \"width\": 948,\n            \"height\": 862,\n            \"filename\": \"compressor2.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/compressor2.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1740767383778,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863037/compressor2.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863037/compressor2.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863037/compressor2.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8054\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 120 PSI-130\",\n                    \"id\": 17412010\n                },\n                {\n                    \"number\": \"RF-8057\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 120 PSI-133\",\n                    \"id\": 17412013\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863037/compressor2.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863037/compressor2.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"application shot\",\n            \"tags\": [\n                \"Machine\",\n                \"m\",\n                \"black\",\n                \"rubber wheels\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"MRxT.qBkt5C_aSWzJfCKTyWGo2Bc.bSX\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863008,\n            \"size\": 537653,\n            \"width\": 1000,\n            \"height\": 1000,\n            \"filename\": \"11335534-3.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335534-3.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1740767371487,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863008/11335534-3.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863008/11335534-3.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863008/11335534-3.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8054\",\n                    \"asset_attribute_keys\": [\n                        \"sell_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 120 PSI-130\",\n                    \"id\": 17412010\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863008/11335534-3.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863008/11335534-3.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"application shot\",\n            \"tags\": [\n                \"Machine\",\n                \"Motor\",\n                \"engine\",\n                \"wheel\",\n                \"motorcycle\",\n                \"transportation\",\n                \"vehicle\",\n                \"gx\",\n                \"black\",\n                \"rubber wheels\",\n                \"diy\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"uFYed7bC7eV_.oQP.J81B5iyvG96vUhr\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863036,\n            \"size\": 1039925,\n            \"width\": 944,\n            \"height\": 860,\n            \"filename\": \"compressor3.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/compressor3.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1740690622150,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863036/compressor3.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863036/compressor3.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863036/compressor3.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"20010901\",\n                    \"asset_attribute_keys\": [\n                        \"image_2\"\n                    ],\n                    \"name\": \"Slim Chuck\",\n                    \"id\": 13116362\n                },\n                {\n                    \"number\": \"RF-8052\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"AF Series Reciprocating Air Compressor\",\n                    \"id\": 17412008\n                },\n                {\n                    \"number\": \"RF-8061\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 125 PSI-137\",\n                    \"id\": 17412017\n                },\n                {\n                    \"number\": \"RF-8062\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 130 PSI-138\",\n                    \"id\": 17412018\n                },\n                {\n                    \"number\": \"RF-8063\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 135 PSI-139\",\n                    \"id\": 17412019\n                },\n                {\n                    \"number\": \"RF-8064\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 140 PSI-140\",\n                    \"id\": 17412020\n                },\n                {\n                    \"number\": \"1N067_AS01-1\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"^1N067_AS01-1\",\n                    \"id\": 20781749\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863036/compressor3.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863036/compressor3.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"application image for compressor\",\n            \"tags\": [\n                \"Machine\",\n                \"wheel\",\n                \"person\",\n                \"worker\",\n                \"adult\",\n                \"male\",\n                \"man\",\n                \"helmet\",\n                \"pushing\",\n                \"black\",\n                \"rubber wheels\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"LnFhfx_eyWKhXltafK_RQwgj9MlP1ZOa\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072371742,\n            \"size\": 241633,\n            \"width\": 1770,\n            \"height\": 1162,\n            \"filename\": \"Screen Shot 2025-02-26 at 7.13.30 AM.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1740619473193,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1740619490356,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070555856,\n                4070822538,\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4072371742/Screen Shot 2025-02-26 at 7.13.30 AM.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072371742/Screen+Shot+2025-02-26+at+7.13.30+AM.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"9CUexrCiaz36Vr7MMo05TjUiZj4Rzi0y\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072371741,\n            \"size\": 166233,\n            \"width\": 2650,\n            \"height\": 1546,\n            \"filename\": \"import-third-party-product-ids-step2.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/import-third-party-product-ids-step2.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1740619426459,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1740619443239,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070555856,\n                4070822538,\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4072371741/import-third-party-product-ids-step2.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072371741/import-third-party-product-ids-step2.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072371741/import-third-party-product-ids-step2.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072371741/import-third-party-product-ids-step2.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072371741/import-third-party-product-ids-step2.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072371741/import-third-party-product-ids-step2.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072371741/import-third-party-product-ids-step2.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072371741/import-third-party-product-ids-step2.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072371741/import-third-party-product-ids-step2.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072371741/import-third-party-product-ids-step2.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072371741/import-third-party-product-ids-step2.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072371741/import-third-party-product-ids-step2.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"yr7.eb2JDqql7ziZSK_3wK.2ybftw7hY\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070956161,\n            \"size\": 68571,\n            \"width\": 1072,\n            \"height\": 1072,\n            \"filename\": \"10G688_AS02-2.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/10G688_AS02-2.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1708347289780,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1740597170820,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070822538\n            ],\n            \"thumbnail_filename\": \"4070956161/10G688_AS02-2.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070956161/10G688_AS02-2.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070956161/10G688_AS02-2.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"2200WNK\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                    \"id\": 13295339\n                },\n                {\n                    \"number\": \"DSN12C\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10″ CURVED JAW LOCKING PLIERS W/WIRE CUTTER\",\n                    \"id\": 13597200\n                },\n                {\n                    \"number\": \"LP10WC\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"10″ CURVED JAW LOCKING PLIERS W/WIRE CUTTER\",\n                    \"id\": 13910988\n                },\n                {\n                    \"number\": \"411\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register\",\n                    \"id\": 13949382\n                },\n                {\n                    \"number\": \"411-15\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949383\n                },\n                {\n                    \"number\": \"411-19\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949384\n                },\n                {\n                    \"number\": \"411-22\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949385\n                },\n                {\n                    \"number\": \"411-29\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949386\n                },\n                {\n                    \"number\": \"411-35\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949387\n                },\n                {\n                    \"number\": \"411-40\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949388\n                },\n                {\n                    \"number\": \"411-44\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949389\n                },\n                {\n                    \"number\": \"411-53\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949390\n                },\n                {\n                    \"number\": \"411-60\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Heavy Gauge Steel Floor Register..\",\n                    \"id\": 13949391\n                },\n                {\n                    \"number\": \"BPDB\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\",\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"High-Speed Steel Brad-Point Drill Bits\",\n                    \"id\": 16705104\n                },\n                {\n                    \"number\": \"783YX4\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"IRWIN Brad Drill Bits: 1/8 in Drill Bit Size, 2 9/16 in Overall Lg, 1/8 in Shank Dia, Straight Shank\",\n                    \"id\": 16705109\n                },\n                {\n                    \"number\": \"19TG90\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/8 in Drill Bit Size, 2 1/2 in Overall Lg, 1/8 in Shank Dia\",\n                    \"id\": 16705110\n                },\n                {\n                    \"number\": \"19TH31\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/8 in Drill Bit Size, 12 in Overall Lg, 1/8 in Shank Dia\",\n                    \"id\": 16705111\n                },\n                {\n                    \"number\": \"783YX5\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"IRWIN Brad Drill Bits: 3/16 in Drill Bit Size, 3 3/8 in Overall Lg, 3/16 in Shank Dia\",\n                    \"id\": 16705112\n                },\n                {\n                    \"number\": \"19TG94\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 3/16 in Drill Bit Size, 3 1/4 in Overall Lg, 3/16 in Shank Dia - change\",\n                    \"id\": 16705113\n                },\n                {\n                    \"number\": \"19TH35\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 3/16 in Drill Bit Size, 12 in Overall Lg, 3/16 in Shank Dia\",\n                    \"id\": 16705114\n                },\n                {\n                    \"number\": \"19TH70\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 7/32 in Drill Bit Size, 3 1/2 in Overall Lg, 7/32 in Shank Dia\",\n                    \"id\": 16705115\n                },\n                {\n                    \"number\": \"19TG98\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/4 in Drill Bit Size, 4 in Overall Lg, 1/4 in Shank Dia\",\n                    \"id\": 16705116\n                },\n                {\n                    \"number\": \"19TH38\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"EAZYPOWER Brad Point Drill Bit: 1/4 in Drill Bit Size, 12 in Overall Lg, 1/4 in Shank Dia\",\n                    \"id\": 16705117\n                },\n                {\n                    \"number\": \"783YX6\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"IRWIN Brad Drill Bits: 5/16 in Drill Bit Size, 4 9/16 in Overall Lg, 5/16 in Shank Dia\",\n                    \"id\": 16705118\n                },\n                {\n                    \"number\": \"RF\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"RF Series Reciprocating Air Compressor\",\n                    \"id\": 17412009\n                },\n                {\n                    \"number\": \"GFBDF-3\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"Reciprocating Air Compressor - 190 PSI\",\n                    \"id\": 18321301\n                },\n                {\n                    \"number\": \"20036669\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"Sander\",\n                    \"id\": 19577508\n                },\n                {\n                    \"number\": \"RF-8066\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"AirStream Reciprocating Compressor\",\n                    \"id\": 20911397\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070956161/10G688_AS02-2.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070956161/10G688_AS02-2.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070956161/10G688_AS02-2.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070956161/10G688_AS02-2.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070956161/10G688_AS02-2.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070956161/10G688_AS02-2.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070956161/10G688_AS02-2.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070956161/10G688_AS02-2.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070956161/10G688_AS02-2.png\"\n            },\n            \"personna\": \"DIY\",\n            \"marketing_campaigns\": [\n                \"LinkedIn\",\n                \"YouTube\",\n                \"Twitter\"\n            ],\n            \"source\": null,\n            \"expiration_date\": \"2024-05-15\",\n            \"version\": 1,\n            \"title_a\": \"red pliers\",\n            \"tags\": [\n                \"device\",\n                \"pliers\",\n                \"tool\",\n                \"esd safe\",\n                \"2838fcmp\",\n                \"red\",\n                \"rubber grip\",\n                \"snips\",\n                \"sharp\",\n                \"steel\",\n                \"carbide\",\n                \"plastic grip\",\n                \"Tools\",\n                \"lyon\",\n                \"chrome\",\n                \"grip\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"description_a\": \"new asset\",\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Masonary Ladders\"\n            },\n            \"s3_version\": \"iARrimFakxCZW.eFOKm5BALKTsgtkadN\",\n            \"publish_date\": \"2025-03-05\"\n        },\n        {\n            \"id\": 4070863007,\n            \"size\": 4930438,\n            \"width\": 3000,\n            \"height\": 3000,\n            \"filename\": \"918100_HOOK.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_HOOK.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1740418792166,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070822538\n            ],\n            \"thumbnail_filename\": \"4070863007/918100_HOOK.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863007/918100_HOOK.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863007/918100_HOOK.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"2200WNK\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                    \"id\": 13295339\n                },\n                {\n                    \"number\": \"20038678\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Directly Input Values\",\n                    \"id\": 20470625\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863007/918100_HOOK.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863007/918100_HOOK.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863007/918100_HOOK.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863007/918100_HOOK.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863007/918100_HOOK.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863007/918100_HOOK.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863007/918100_HOOK.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863007/918100_HOOK.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863007/918100_HOOK.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": [\n                \"LinkedIn\",\n                \"YouTube\"\n            ],\n            \"source\": null,\n            \"expiration_date\": \"2025-02-05\",\n            \"version\": 1,\n            \"title_a\": \"alt text\",\n            \"application_notes\": \"DEF\",\n            \"tags\": [\n                \"red\",\n                \"hook\",\n                \"Tools\",\n                \"adapter\"\n            ],\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Fastener Tools\"\n            },\n            \"s3_version\": \"r.eHerB3Lyt86a7.8u79Qh7rhS6F7Vge\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862999,\n            \"size\": 506664,\n            \"width\": 1000,\n            \"height\": 1000,\n            \"filename\": \"11335534-Life.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335534-Life.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1739984850927,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862999/11335534-Life.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862999/11335534-Life.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862999/11335534-Life.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF\",\n                    \"asset_attribute_keys\": [\n                        \"repair_policy\"\n                    ],\n                    \"name\": \"RF Series Reciprocating Air Compressor\",\n                    \"id\": 17412009\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862999/11335534-Life.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862999/11335534-Life.jpg\"\n            },\n            \"personna\": \"Body Shop\",\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"in use photo\",\n            \"tags\": [\n                \"Machine\",\n                \"armored\",\n                \"military\",\n                \"tank\",\n                \"transportation\",\n                \"vehicle\",\n                \"weapon\",\n                \"black\",\n                \"rubber wheels\",\n                \"diy\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"uSx9KNY7ioEfM8S9g6ORpGzRGgs6VtHy\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862998,\n            \"size\": 945331,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"11335531.pdf\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335531.pdf\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1739830799054,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070555856,\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4070862998/11335531.jpg\",\n            \"asset_type\": \"PDF\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862998/11335531.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862998/11335531.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"RF-8055\",\n                    \"asset_attribute_keys\": [\n                        \"sell_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                    \"id\": 17412011\n                },\n                {\n                    \"number\": \"RF-8056\",\n                    \"asset_attribute_keys\": [\n                        \"sell_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 100 PSI-132\",\n                    \"id\": 17412012\n                },\n                {\n                    \"number\": \"RF-8057\",\n                    \"asset_attribute_keys\": [\n                        \"sell_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 120 PSI-133\",\n                    \"id\": 17412013\n                },\n                {\n                    \"number\": \"RF-8058\",\n                    \"asset_attribute_keys\": [\n                        \"sell_sheet\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 125 PSI-134\",\n                    \"id\": 17412014\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"pdf\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862998/11335531.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862998/11335531.jpg\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": [\n                \"YouTube\",\n                \"Instagram abc\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"spec sheet\",\n            \"tags\": [\n                \"Machine\",\n                \"quickest maintenance in the industry.\",\n                \"sphere air\",\n                \"portable electric air compressor\",\n                \"spin-on oil separation system allows for the easiest and\",\n                \"key features\",\n                \"legendary package design offers multiple option\",\n                \"fuel efficient doosan d24 engine extends run time to\",\n                \"provides over 8,700 cubic inches for tool and accessory\",\n                \"the industry's largest and deepest, full-length toolbox\",\n                \"premium and intuitive control interface for ease of use.\",\n                \"white\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"TCKOO4RdEYSGD_v0XDtWQbn2VmaQbZ7_\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863025,\n            \"size\": 843306,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"comp-1.psd\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/comp-1.psd\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1739304958161,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070822538\n            ],\n            \"thumbnail_filename\": \"4070863025/comp-1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863025/comp-1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863025/comp-1.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"2200WNK\",\n                    \"asset_attribute_keys\": [\n                        \"additional_images\"\n                    ],\n                    \"name\": \"2\\\" Cut Diam, 3/4\\\" Arbor Hole Diam, 0.1181\\\" Max Depth, Indexable High-Feed Mill\",\n                    \"id\": 13295339\n                },\n                {\n                    \"number\": \"ERB S363\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"id\": 14848552\n                },\n                {\n                    \"number\": \"20023094\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper (Orange)\",\n                    \"id\": 14848553\n                },\n                {\n                    \"number\": \"20023095\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"id\": 14848554\n                },\n                {\n                    \"number\": \"20023096\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"id\": 14848555\n                },\n                {\n                    \"number\": \"20023097\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"id\": 14848556\n                },\n                {\n                    \"number\": \"20023098\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"id\": 14848557\n                },\n                {\n                    \"number\": \"20023099\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"ERB S363 Type R Class 2 Mesh Economy Safety Vest with Zipper\",\n                    \"id\": 14848558\n                },\n                {\n                    \"number\": \"486134\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Pliers\",\n                    \"id\": 14998167\n                },\n                {\n                    \"number\": \"CPD1001\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"Rock 20V MAX Cordless Power Drill, Brushless Motor\",\n                    \"id\": 15020524\n                },\n                {\n                    \"number\": \"RF\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"RF Series Reciprocating Air Compressor\",\n                    \"id\": 17412009\n                },\n                {\n                    \"number\": \"RF-8052D121\",\n                    \"asset_attribute_keys\": [\n                        \"image_2\"\n                    ],\n                    \"name\": \"180 PSI, AirStream Reciprocating Compressor\",\n                    \"id\": 17850739\n                },\n                {\n                    \"number\": \"RF-8066\",\n                    \"asset_attribute_keys\": [\n                        \"lifestyle_image\"\n                    ],\n                    \"name\": \"AirStream Reciprocating Compressor\",\n                    \"id\": 20911397\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"psd\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863025/comp-1.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863025/comp-1.jpg\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": \"Consumer\",\n            \"marketing_campaigns\": [\n                \"LinkedIn\",\n                \"YouTube\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"mobile\",\n            \"tags\": [\n                \"Machine\",\n                \"wheel\",\n                \"car\",\n                \"transportation\",\n                \"vehicle\",\n                \"black\",\n                \"rubber wheels\",\n                \"commercial\",\n                \"residential\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"3_ZWdR0CcupgyscsGfNP4UOBAKsyXu1I\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4072251434,\n            \"size\": 37364,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"Pool_Life_NSTPrime20.2bs.webp\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Pool_Life_NSTPrime20.2bs.webp\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1739280677394,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1739304950523,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"webp\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4072251434/Pool_Life_NSTPrime20.2bs.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4072251434/Pool_Life_NSTPrime20.2bs.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4072251434/Pool_Life_NSTPrime20.2bs.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4072251434/Pool_Life_NSTPrime20.2bs.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4072251434/Pool_Life_NSTPrime20.2bs.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4072251434/Pool_Life_NSTPrime20.2bs.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"pool life\",\n            \"tags\": [\n                \"food\",\n                \"nst prime\",\n                \"danger\",\n                \"poolife\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"qfbgqgbDwu9pgYq77hBMc1wGy2bgFsQl\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862971,\n            \"size\": 134472,\n            \"width\": 624,\n            \"height\": 624,\n            \"filename\": \"223SP-4NB86_v1.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/223SP-4NB86_v1.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1734538391113,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862971/223SP-4NB86_v1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862971/223SP-4NB86_v1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862971/223SP-4NB86_v1.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862971/223SP-4NB86_v1.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862971/223SP-4NB86_v1.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": [\n                \"Twitter\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"compressor\",\n            \"tags\": [\n                \"grass\",\n                \"Plant\",\n                \"Machine\",\n                \"wheel\",\n                \"device\",\n                \"grey\",\n                \"handle\",\n                \"extra light\",\n                \"insulated\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \".EiZMZ0Mn6C.SmQ7JkhHhXFVStu1o.Bv\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862980,\n            \"size\": 472174,\n            \"width\": 768,\n            \"height\": 768,\n            \"filename\": \"2hp-Air-Compressor-Suppliers-In-India-768x768.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2hp-Air-Compressor-Suppliers-In-India-768x768.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1734538391113,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862980/2hp-Air-Compressor-Suppliers-In-India-768x768.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"compressor\",\n            \"tags\": [\n                \"Machine\",\n                \"wheel\",\n                \"car\",\n                \"transportation\",\n                \"vehicle\",\n                \"green\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"A9wEAYxt_u.RFUWnuo1spaWf4rYLGBh4\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862983,\n            \"size\": 3764583,\n            \"width\": 3216,\n            \"height\": 3216,\n            \"filename\": \"400A10_AS02.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/400A10_AS02.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1734538391113,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862983/400A10_AS02.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862983/400A10_AS02.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862983/400A10_AS02.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862983/400A10_AS02.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862983/400A10_AS02.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"compressor\",\n            \"tags\": [\n                \"Machine\",\n                \"usa\",\n                \"Cordless\",\n                \"charger\",\n                \"fast\",\n                \"dewalt\",\n                \"2.5\",\n                \"135 psi\",\n                \"flexvolt\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"1Wx.u1UsUMFgmoIw63kvsuaJUqvdBPhA\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862990,\n            \"size\": 1009779,\n            \"width\": 1000,\n            \"height\": 1000,\n            \"filename\": \"2hp-Air-Compressor-Price-In-India.png\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2hp-Air-Compressor-Price-In-India.png\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1734538391113,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862990/2hp-Air-Compressor-Price-In-India.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862990/2hp-Air-Compressor-Price-In-India.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862990/2hp-Air-Compressor-Price-In-India.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"png\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862990/2hp-Air-Compressor-Price-In-India.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862990/2hp-Air-Compressor-Price-In-India.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"compressor\",\n            \"tags\": [\n                \"Machine\",\n                \"device\",\n                \"grass\",\n                \"lawn\",\n                \"lawn mower\",\n                \"Plant\",\n                \"tool\",\n                \"maruti\",\n                \"hot\",\n                \"brown\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Tools\",\n                \"level_3\": \"Compressors\"\n            },\n            \"s3_version\": \"pfR6ZRxp85Evb_GuL3y6lF0djjCB.rpk\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862965,\n            \"size\": 597548,\n            \"width\": 2144,\n            \"height\": 2144,\n            \"filename\": \"1N067_AS01.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/1N067_AS01.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529907562,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1733872733039,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862965/1N067_AS01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862965/1N067_AS01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862965/1N067_AS01.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"1N067_AS01\",\n                    \"asset_attribute_keys\": [\n                        \"auto_linked_image\"\n                    ],\n                    \"name\": \"^1N067_AS01\",\n                    \"id\": 20753904\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862965/1N067_AS01.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862965/1N067_AS01.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"scissors\",\n                \"device\",\n                \"pliers\",\n                \"brown\",\n                \"insulated\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \"59tbxAwAWhqiN.UL7S_W1U9Q502jmgC8\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862966,\n            \"size\": 170031,\n            \"width\": 804,\n            \"height\": 804,\n            \"filename\": \"53KH20_AS01.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/53KH20_AS01.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862966/53KH20_AS01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862966/53KH20_AS01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862966/53KH20_AS01.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862966/53KH20_AS01.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862966/53KH20_AS01.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"screwdriver\",\n                \"tool\",\n                \"wiha\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \"Gu1JUIkbAwOUPTy6onNLBTjamCsVsFrL\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862967,\n            \"size\": 2114222,\n            \"width\": 3216,\n            \"height\": 3216,\n            \"filename\": \"4A860_AS01.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/4A860_AS01.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862967/4A860_AS01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862967/4A860_AS01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862967/4A860_AS01.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862967/4A860_AS01.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862967/4A860_AS01.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"pliers\",\n                \"tool\",\n                \"blade\",\n                \"dagger\",\n                \"knife\",\n                \"weapon\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \"fulQiVXxryZtMsle2omBb2n5J4v_6Ign\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862970,\n            \"size\": 214647,\n            \"width\": 804,\n            \"height\": 804,\n            \"filename\": \"450G63_AS01.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/450G63_AS01.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862970/450G63_AS01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862970/450G63_AS01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862970/450G63_AS01.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862970/450G63_AS01.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862970/450G63_AS01.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"screwdriver\",\n                \"tool\",\n                \"wiha\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \"SlfHuotfbH5PpdU4Q7xkjP9ILZKEv5sE\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862972,\n            \"size\": 187396,\n            \"width\": 804,\n            \"height\": 804,\n            \"filename\": \"26X282_AS01.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/26X282_AS01.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862972/26X282_AS01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862972/26X282_AS01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862972/26X282_AS01.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862972/26X282_AS01.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862972/26X282_AS01.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"screwdriver\",\n                \"tool\",\n                \"slim\",\n                \"wiha\",\n                \"red\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \"ejBtMc8Bkt.6OEUh3E76XmrftKMG45nk\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862976,\n            \"size\": 751982,\n            \"width\": 3216,\n            \"height\": 3216,\n            \"filename\": \"759Y19_AS01.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/759Y19_AS01.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862976/759Y19_AS01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862976/759Y19_AS01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862976/759Y19_AS01.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862976/759Y19_AS01.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862976/759Y19_AS01.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"pen\",\n                \"device\",\n                \"screwdriver\",\n                \"tool\",\n                \"klein tools\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \".CNEl.Ui6UBoqKH0hhvUATS7SZeQ91Xd\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862985,\n            \"size\": 37947,\n            \"width\": 536,\n            \"height\": 536,\n            \"filename\": \"494M75_AS01.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/494M75_AS01.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862985/494M75_AS01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862985/494M75_AS01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862985/494M75_AS01.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862985/494M75_AS01.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862985/494M75_AS01.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"screwdriver\",\n                \"milwaukee\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \"DhSkKQxDyerj5HboRGnFTSlkrwBr3_jg\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862987,\n            \"size\": 29754,\n            \"width\": 804,\n            \"height\": 804,\n            \"filename\": \"31XR28_AS01.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/31XR28_AS01.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862987/31XR28_AS01.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862987/31XR28_AS01.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862987/31XR28_AS01.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862987/31XR28_AS01.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862987/31XR28_AS01.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"screwdriver\",\n                \"tool\",\n                \"fatmax\",\n                \"spf\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \"UoWs4BaSCyXNDIvf5Cv74qSx6ZUVcj_a\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862988,\n            \"size\": 1564830,\n            \"width\": 3216,\n            \"height\": 3216,\n            \"filename\": \"4JA44_AS02.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/4JA44_AS02.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862988/4JA44_AS02.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862988/4JA44_AS02.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862988/4JA44_AS02.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862988/4JA44_AS02.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862988/4JA44_AS02.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"Tools\",\n                \"open\",\n                \"klein\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Hand Tools\"\n            },\n            \"s3_version\": \"FoIGjuIeZBcpszrU1wJS3pYziPYp8dFW\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862989,\n            \"size\": 3177450,\n            \"width\": 3216,\n            \"height\": 3216,\n            \"filename\": \"483A47_AS02.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/483A47_AS02.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529920350,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862989/483A47_AS02.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862989/483A47_AS02.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862989/483A47_AS02.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862989/483A47_AS02.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862989/483A47_AS02.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"fuel\",\n                \"milwaukee\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\",\n                \"level_3\": \"Cordless Drills\"\n            },\n            \"s3_version\": \"6zvmFAQ35O6n7asDCu6iFXiDO_mXPYjN\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863017,\n            \"size\": 4088011,\n            \"width\": 3000,\n            \"height\": 3000,\n            \"filename\": \"515500_MAGAZINE.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/515500_MAGAZINE.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863017/515500_MAGAZINE.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863017/515500_MAGAZINE.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863017/515500_MAGAZINE.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863017/515500_MAGAZINE.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863017/515500_MAGAZINE.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"car\",\n                \"transportation\",\n                \"vehicle\",\n                \"lock\",\n                \"push\",\n                \"out\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Fastener Tools\"\n            },\n            \"s3_version\": \"52PMyqhz3Q_kS2_xhkKJAG6Hr.GHNytk\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863018,\n            \"size\": 6957624,\n            \"width\": 3000,\n            \"height\": 3000,\n            \"filename\": \"918100_TRIGGER.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_TRIGGER.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529944155,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863018/918100_TRIGGER.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863018/918100_TRIGGER.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863018/918100_TRIGGER.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863018/918100_TRIGGER.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863018/918100_TRIGGER.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"firearm\",\n                \"weapon\",\n                \"gun\",\n                \"handgun\",\n                \"rifle\",\n                \"device\",\n                \"18s\",\n                \"brown\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Fastener Tools\"\n            },\n            \"s3_version\": \"xYE5SIXYW44o3dRByqnyke3MMb_zHFI9\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863019,\n            \"size\": 7983615,\n            \"width\": 3000,\n            \"height\": 3000,\n            \"filename\": \"918100_SERIAL.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_SERIAL.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529944155,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863019/918100_SERIAL.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863019/918100_SERIAL.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863019/918100_SERIAL.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863019/918100_SERIAL.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863019/918100_SERIAL.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"electrical device\",\n                \"gun\",\n                \"weapon\",\n                \"p\",\n                \"paslode\",\n                \"800-634-7373\",\n                \"paslode.com\",\n                \"year\",\n                \"service\",\n                \"promise\",\n                \"free\",\n                \"red\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Fastener Tools\"\n            },\n            \"s3_version\": \"guREyJLV62XVAprn7MW2bAwhJ_A2MyKW\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863027,\n            \"size\": 151220,\n            \"width\": 800,\n            \"height\": 800,\n            \"filename\": \"Chuck-Pistol-Power-Drill---18V.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Chuck-Pistol-Power-Drill---18V.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863027/Chuck-Pistol-Power-Drill---18V.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863027/Chuck-Pistol-Power-Drill---18V.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863027/Chuck-Pistol-Power-Drill---18V.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863027/Chuck-Pistol-Power-Drill---18V.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863027/Chuck-Pistol-Power-Drill---18V.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"drill/driver kit\",\n                \"18v cordless\",\n                \"18v\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\",\n                \"level_3\": \"Cordless Drills\"\n            },\n            \"s3_version\": \"uC443PM0nW.ti.DVurMLNKrQvteVG9UQ\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863039,\n            \"size\": 2771910,\n            \"width\": 6832,\n            \"height\": 5176,\n            \"filename\": \"Cordless Power Drill Yellow 3.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Cordless+Power+Drill+Yellow+3.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863039/Cordless Power Drill Yellow 3.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863039/Cordless+Power+Drill+Yellow+3.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863039/Cordless+Power+Drill+Yellow+3.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"BT30-SK10-120\",\n                    \"asset_attribute_keys\": [\n                        \"image_2\",\n                        \"sell_sheet\"\n                    ],\n                    \"name\": \"Slim Chuck - ABC / Demo on March 13\",\n                    \"id\": 13116222\n                },\n                {\n                    \"number\": \"CPD1001\",\n                    \"asset_attribute_keys\": [\n                        \"main_image\"\n                    ],\n                    \"name\": \"Rock 20V MAX Cordless Power Drill, Brushless Motor\",\n                    \"id\": 15020524\n                },\n                {\n                    \"number\": \"RF\",\n                    \"asset_attribute_keys\": [\n                        \"image_3\"\n                    ],\n                    \"name\": \"RF Series Reciprocating Air Compressor\",\n                    \"id\": 17412009\n                },\n                {\n                    \"number\": \"RF-8055\",\n                    \"asset_attribute_keys\": [\n                        \"image_3\"\n                    ],\n                    \"name\": \"Reciprocating Compressor 200 PSI-200\",\n                    \"id\": 17412011\n                },\n                {\n                    \"number\": \"RF-8066\",\n                    \"asset_attribute_keys\": [\n                        \"image_3\"\n                    ],\n                    \"name\": \"AirStream Reciprocating Compressor\",\n                    \"id\": 20911397\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863039/Cordless+Power+Drill+Yellow+3.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863039/Cordless+Power+Drill+Yellow+3.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"black\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\",\n                \"level_3\": \"Cordless Drills\"\n            },\n            \"s3_version\": \"Pz3ZiUj2uJMVwRJTEdGU.aUKFCWum2.p\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863044,\n            \"size\": 1555824,\n            \"width\": 5616,\n            \"height\": 3744,\n            \"filename\": \"Cordless Power Drill Yellow 3 iStock-184639599.jpeg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpeg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863044/Cordless Power Drill Yellow 3 iStock-184639599.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863044/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863044/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"CPD1001\",\n                    \"asset_attribute_keys\": [\n                        \"image_2\"\n                    ],\n                    \"name\": \"Rock 20V MAX Cordless Power Drill, Brushless Motor\",\n                    \"id\": 15020524\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpeg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863044/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863044/Cordless+Power+Drill+Yellow+3+iStock-184639599.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\",\n                \"level_3\": \"Cordless Drills\"\n            },\n            \"s3_version\": \"IRhMHU6QOLdqEq.ZgHesPdwJxIi7oP5w\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863047,\n            \"size\": 124221,\n            \"width\": 800,\n            \"height\": 800,\n            \"filename\": \"MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529957599,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863047/MAX-Lithium-Ion-Compact-Drill-Driver-with-2-x-Batteries.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"13 15 17 19\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\",\n                \"level_3\": \"Cordless Drills\"\n            },\n            \"s3_version\": \"juJ3YHXnewxAQlllEak_T_ljORw2KyMo\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863055,\n            \"size\": 124221,\n            \"width\": 800,\n            \"height\": 800,\n            \"filename\": \"MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529957599,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636691022,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863055/MAX-Cordless-Lithium-Ion-Power-Drill.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"13 15 17 19\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Power Drills\",\n                \"level_3\": \"Cordless Drills\"\n            },\n            \"s3_version\": \"oLhlDZ3WGY.ACBZ4OfcIM8fGNuAJI9fY\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070863002,\n            \"size\": 3872528,\n            \"width\": 3000,\n            \"height\": 3000,\n            \"filename\": \"918000_ANGLE1.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918000_ANGLE1.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636608452,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863002/918000_ANGLE1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863002/918000_ANGLE1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863002/918000_ANGLE1.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863002/918000_ANGLE1.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863002/918000_ANGLE1.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"paslode\",\n                \"18 gauge finish nailer\",\n                \"red\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Fastener Tools\"\n            },\n            \"s3_version\": \"uGTXBsjJxnfyDYL3qKkNHcd8XqJ3Yl2Y\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862997,\n            \"size\": 5450343,\n            \"width\": 3000,\n            \"height\": 3000,\n            \"filename\": \"918100_NOSE_SIDE.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_NOSE_SIDE.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529934231,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636598839,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862997/918100_NOSE_SIDE.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862997/918100_NOSE_SIDE.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862997/918100_NOSE_SIDE.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862997/918100_NOSE_SIDE.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862997/918100_NOSE_SIDE.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"weapon\",\n                \"18s\",\n                \"black\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Fastener Tools\"\n            },\n            \"s3_version\": \"BRw7tva_9jQiy_Fnvpa_ajK8Mtbrb09T\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862996,\n            \"size\": 5782619,\n            \"width\": 3000,\n            \"height\": 3000,\n            \"filename\": \"918100_NOSE_ANGLE.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_NOSE_ANGLE.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529934231,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636591787,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862996/918100_NOSE_ANGLE.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862996/918100_NOSE_ANGLE.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862996/918100_NOSE_ANGLE.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862996/918100_NOSE_ANGLE.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862996/918100_NOSE_ANGLE.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"firearm\",\n                \"weapon\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Fastener Tools\"\n            },\n            \"s3_version\": \"uenRUSfzKyQI3KbgLqS71.HvaMrBeny9\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4070862994,\n            \"size\": 8537073,\n            \"width\": 3000,\n            \"height\": 3000,\n            \"filename\": \"918000_SERIAL.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918000_SERIAL.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529930760,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730636580716,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070862994/918000_SERIAL.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862994/918000_SERIAL.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862994/918000_SERIAL.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862994/918000_SERIAL.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862994/918000_SERIAL.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": [\n                \"device\",\n                \"power drill\",\n                \"tool\",\n                \"800-634-7373\",\n                \"paslode.com\",\n                \"year\",\n                \"service\",\n                \"promise\",\n                \"free\",\n                \"red\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Tools\",\n                \"level_2\": \"Fastener Tools\"\n            },\n            \"s3_version\": \"tVPp4AFe6zyq5lFIjncvYlk12ZxIHoCB\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855605,\n            \"size\": 224319,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862092_3.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_3.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730395221763,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855605/2000x2000px-862092_3.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855605/2000x2000px-862092_3.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855605/2000x2000px-862092_3.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855605/2000x2000px-862092_3.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855605/2000x2000px-862092_3.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855605/2000x2000px-862092_3.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855605/2000x2000px-862092_3.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855605/2000x2000px-862092_3.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855605/2000x2000px-862092_3.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855605/2000x2000px-862092_3.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855605/2000x2000px-862092_3.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855605/2000x2000px-862092_3.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": [\n                \"Twitter\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Label\",\n            \"tags\": [\n                \"light\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"M1.pNclbxHzzs4pEsJ4IeNTWgWtAp2Eq\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855608,\n            \"size\": 260369,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862092_6.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_6.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730395221763,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855608/2000x2000px-862092_6.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855608/2000x2000px-862092_6.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855608/2000x2000px-862092_6.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855608/2000x2000px-862092_6.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855608/2000x2000px-862092_6.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855608/2000x2000px-862092_6.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855608/2000x2000px-862092_6.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855608/2000x2000px-862092_6.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855608/2000x2000px-862092_6.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855608/2000x2000px-862092_6.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855608/2000x2000px-862092_6.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855608/2000x2000px-862092_6.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": [\n                \"Twitter\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Label\",\n            \"tags\": [\n                \"light\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"b6Rv9zXdaca1YsLzZDl3z_HcQDcWzOGY\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071859186,\n            \"size\": 493099,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"862037_6.pdf\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/862037_6.pdf\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729768790286,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1730395221763,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071859186/862037_6.jpg\",\n            \"asset_type\": \"PDF\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071859186/862037_6.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071859186/862037_6.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"862039\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"1.8W LED G4 WAFER FROST GLASS 2700K 12V-4PK\",\n                    \"id\": 20615952\n                },\n                {\n                    \"number\": \"862040\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"1.8W LED G4 WAFER FROST GLASS 3000K 12V-4PK\",\n                    \"id\": 20615953\n                },\n                {\n                    \"number\": \"862037\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"1.8W LED G4 WAFER GLASS 2700K 12V-4PK\",\n                    \"id\": 20615954\n                },\n                {\n                    \"number\": \"862038\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"1.8W LED G4 WAFER GLASS 3000K 12V-4PK\",\n                    \"id\": 20615955\n                },\n                {\n                    \"number\": \"862043\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"1.8W LED GY6 WAFER FROST GLASS 2700K 12V-4PK\",\n                    \"id\": 20615956\n                },\n                {\n                    \"number\": \"862084\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4.5W LED CA10 3000K FILAMENT E26 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615957\n                },\n                {\n                    \"number\": \"862045\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4.5W LED G9 WAFER FROST GLASS 2700K 120V-4PK\",\n                    \"id\": 20615958\n                },\n                {\n                    \"number\": \"862046\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4.5W LED G9 WAFER FROST GLASS 3000K 120V-4PK\",\n                    \"id\": 20615959\n                },\n                {\n                    \"number\": \"862106\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4.5W LED T6 4000K FILAMENT E12 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615960\n                },\n                {\n                    \"number\": \"862107\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4.5W LED T6 4000K FILAMENT E12 MILKY FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615961\n                },\n                {\n                    \"number\": \"862053\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4W LED A15 2700K FILAMENT E12 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615962\n                },\n                {\n                    \"number\": \"862049\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4W LED ST15 2700K FILAMENT FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615963\n                },\n                {\n                    \"number\": \"862051\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4W LED ST15 2700K FILAMENT MILKY FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615964\n                },\n                {\n                    \"number\": \"862050\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4W LED ST15 3000K FILAMENT FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615965\n                },\n                {\n                    \"number\": \"862052\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"4W LED ST15 3000K FILAMENT MILKY FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615966\n                },\n                {\n                    \"number\": \"862065\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"5W LED A19 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615967\n                },\n                {\n                    \"number\": \"862070\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"5W LED A19 2700K FILAMENT MILKY FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615968\n                },\n                {\n                    \"number\": \"862077\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"5W LED B11 5000K FILAMENT E12 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615969\n                },\n                {\n                    \"number\": \"862078\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"5W LED B11 5000K FILAMENT MILKY E12 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615970\n                },\n                {\n                    \"number\": \"862082\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"5W LED CA10 2700K FILAMENT E26 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615971\n                },\n                {\n                    \"number\": \"862081\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"6W LED B11 4000K FILAMENT MILKY E12 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615972\n                },\n                {\n                    \"number\": \"862079\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"6W LED B11 5000K FILAMENT E12 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615973\n                },\n                {\n                    \"number\": \"862080\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"6W LED B11 5000K FILAMENT MILKY E12 FULLY COMPATIBLE DIMMING-4PK\",\n                    \"id\": 20615974\n                },\n                {\n                    \"number\": \"862064\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"6W LED G25 2700K FILAMENT HALF BLACK FULLY COMPATIBLE DIMMING-2PK\",\n                    \"id\": 20615975\n                },\n                {\n                    \"number\": \"862068\",\n                    \"asset_attribute_keys\": [\n                        \"lighting_facts_pdf\"\n                    ],\n                    \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                    \"id\": 20615976\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"pdf\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071859186/862037_6.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071859186/862037_6.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071859186/862037_6.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071859186/862037_6.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071859186/862037_6.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071859186/862037_6.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071859186/862037_6.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071859186/862037_6.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071859186/862037_6.png\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": [\n                \"Twitter\"\n            ],\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": \"Label\",\n            \"tags\": [\n                \"light\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"OAUDJqYHBZJlRlb2U6BUw9X00z36emE9\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855604,\n            \"size\": 302396,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862092_2-copy.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_2-copy.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723248788,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855604/2000x2000px-862092_2-copy.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855604/2000x2000px-862092_2-copy.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855604/2000x2000px-862092_2-copy.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855604/2000x2000px-862092_2-copy.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855604/2000x2000px-862092_2-copy.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855604/2000x2000px-862092_2-copy.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855604/2000x2000px-862092_2-copy.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855604/2000x2000px-862092_2-copy.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855604/2000x2000px-862092_2-copy.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855604/2000x2000px-862092_2-copy.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855604/2000x2000px-862092_2-copy.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855604/2000x2000px-862092_2-copy.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"dCunR3Ipiwfl7nMtpPARP6Arq8z98b48\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855603,\n            \"size\": 152277,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862092_1.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_1.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723248593,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855603/2000x2000px-862092_1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855603/2000x2000px-862092_1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855603/2000x2000px-862092_1.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855603/2000x2000px-862092_1.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855603/2000x2000px-862092_1.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855603/2000x2000px-862092_1.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855603/2000x2000px-862092_1.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855603/2000x2000px-862092_1.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855603/2000x2000px-862092_1.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855603/2000x2000px-862092_1.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855603/2000x2000px-862092_1.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855603/2000x2000px-862092_1.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"igwjX2x7VGeSVLJ8Rgs0aO5mw5lg8qzo\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855602,\n            \"size\": 91283,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862091_7.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_7.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723248391,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855602/2000x2000px-862091_7.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855602/2000x2000px-862091_7.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855602/2000x2000px-862091_7.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855602/2000x2000px-862091_7.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855602/2000x2000px-862091_7.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855602/2000x2000px-862091_7.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855602/2000x2000px-862091_7.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855602/2000x2000px-862091_7.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855602/2000x2000px-862091_7.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855602/2000x2000px-862091_7.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855602/2000x2000px-862091_7.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855602/2000x2000px-862091_7.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"DzDnjURoqA4Gmaj1jay8WLlsSZusoJWB\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855607,\n            \"size\": 177689,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862092_5.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_5.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723238138,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855607/2000x2000px-862092_5.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855607/2000x2000px-862092_5.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855607/2000x2000px-862092_5.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855607/2000x2000px-862092_5.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855607/2000x2000px-862092_5.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855607/2000x2000px-862092_5.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855607/2000x2000px-862092_5.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855607/2000x2000px-862092_5.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855607/2000x2000px-862092_5.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855607/2000x2000px-862092_5.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855607/2000x2000px-862092_5.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855607/2000x2000px-862092_5.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"VOlgHizUAOwNe0xTTqHP5N7Bs7Agj8sg\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855606,\n            \"size\": 328658,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862092_4.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862092_4.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723229347,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855606/2000x2000px-862092_4.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855606/2000x2000px-862092_4.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855606/2000x2000px-862092_4.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855606/2000x2000px-862092_4.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855606/2000x2000px-862092_4.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855606/2000x2000px-862092_4.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855606/2000x2000px-862092_4.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855606/2000x2000px-862092_4.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855606/2000x2000px-862092_4.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855606/2000x2000px-862092_4.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855606/2000x2000px-862092_4.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855606/2000x2000px-862092_4.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"csAJh7k28SwYU1.U_cejHSnyfghF2LLM\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855601,\n            \"size\": 260088,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862091_6.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_6.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723197248,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855601/2000x2000px-862091_6.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855601/2000x2000px-862091_6.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855601/2000x2000px-862091_6.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855601/2000x2000px-862091_6.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855601/2000x2000px-862091_6.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855601/2000x2000px-862091_6.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855601/2000x2000px-862091_6.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855601/2000x2000px-862091_6.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855601/2000x2000px-862091_6.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855601/2000x2000px-862091_6.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855601/2000x2000px-862091_6.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855601/2000x2000px-862091_6.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"bm_edpED1JSHJS6b6xJ4xnAik57BOA29\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855600,\n            \"size\": 177689,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862091_5.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_5.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723181313,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855600/2000x2000px-862091_5.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855600/2000x2000px-862091_5.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855600/2000x2000px-862091_5.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855600/2000x2000px-862091_5.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855600/2000x2000px-862091_5.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855600/2000x2000px-862091_5.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855600/2000x2000px-862091_5.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855600/2000x2000px-862091_5.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855600/2000x2000px-862091_5.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855600/2000x2000px-862091_5.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855600/2000x2000px-862091_5.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855600/2000x2000px-862091_5.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"7j5H1SZGo9FMZkvJ2qcMOElaNIhA30kl\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855597,\n            \"size\": 256168,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862091_2-copy.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_2-copy.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723181154,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855597/2000x2000px-862091_2-copy.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855597/2000x2000px-862091_2-copy.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855597/2000x2000px-862091_2-copy.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855597/2000x2000px-862091_2-copy.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855597/2000x2000px-862091_2-copy.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855597/2000x2000px-862091_2-copy.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855597/2000x2000px-862091_2-copy.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855597/2000x2000px-862091_2-copy.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855597/2000x2000px-862091_2-copy.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855597/2000x2000px-862091_2-copy.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855597/2000x2000px-862091_2-copy.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855597/2000x2000px-862091_2-copy.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"bQ7ypLo9drpU7Z3zHN6NJ3EreFuzqWFb\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855596,\n            \"size\": 75133,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862091_1.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_1.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723180946,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855596/2000x2000px-862091_1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855596/2000x2000px-862091_1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855596/2000x2000px-862091_1.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855596/2000x2000px-862091_1.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855596/2000x2000px-862091_1.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855596/2000x2000px-862091_1.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855596/2000x2000px-862091_1.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855596/2000x2000px-862091_1.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855596/2000x2000px-862091_1.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855596/2000x2000px-862091_1.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855596/2000x2000px-862091_1.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855596/2000x2000px-862091_1.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"G3HVLKUkdzRhecalo.nAfqSBeXdQlN0A\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855595,\n            \"size\": 123029,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862090_7.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_7.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723180730,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855595/2000x2000px-862090_7.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855595/2000x2000px-862090_7.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855595/2000x2000px-862090_7.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855595/2000x2000px-862090_7.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855595/2000x2000px-862090_7.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855595/2000x2000px-862090_7.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855595/2000x2000px-862090_7.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855595/2000x2000px-862090_7.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855595/2000x2000px-862090_7.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855595/2000x2000px-862090_7.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855595/2000x2000px-862090_7.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855595/2000x2000px-862090_7.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"f0MaFVicb90rj5uUzP65oeEUYTr6eNyE\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855594,\n            \"size\": 260088,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862090_6.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_6.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723180390,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855594/2000x2000px-862090_6.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855594/2000x2000px-862090_6.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855594/2000x2000px-862090_6.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855594/2000x2000px-862090_6.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855594/2000x2000px-862090_6.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855594/2000x2000px-862090_6.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855594/2000x2000px-862090_6.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855594/2000x2000px-862090_6.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855594/2000x2000px-862090_6.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855594/2000x2000px-862090_6.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855594/2000x2000px-862090_6.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855594/2000x2000px-862090_6.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"8OW7GRg9QLiVcmelxMvGUR14w4IJBM.8\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855599,\n            \"size\": 367174,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862091_4.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_4.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723173553,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855599/2000x2000px-862091_4.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855599/2000x2000px-862091_4.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855599/2000x2000px-862091_4.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855599/2000x2000px-862091_4.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855599/2000x2000px-862091_4.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855599/2000x2000px-862091_4.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855599/2000x2000px-862091_4.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855599/2000x2000px-862091_4.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855599/2000x2000px-862091_4.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855599/2000x2000px-862091_4.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855599/2000x2000px-862091_4.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855599/2000x2000px-862091_4.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"tmaJNgmWIhIxf.EK6_fyrTLXy_4ZJFL6\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855598,\n            \"size\": 191988,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862091_3.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862091_3.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723151754,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855598/2000x2000px-862091_3.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855598/2000x2000px-862091_3.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855598/2000x2000px-862091_3.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855598/2000x2000px-862091_3.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855598/2000x2000px-862091_3.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855598/2000x2000px-862091_3.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855598/2000x2000px-862091_3.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855598/2000x2000px-862091_3.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855598/2000x2000px-862091_3.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855598/2000x2000px-862091_3.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855598/2000x2000px-862091_3.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855598/2000x2000px-862091_3.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"DJZiCZR3A9CPppwGZPBaHRA0AIcpqZfx\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855593,\n            \"size\": 177689,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862090_5.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_5.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723131585,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855593/2000x2000px-862090_5.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855593/2000x2000px-862090_5.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855593/2000x2000px-862090_5.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855593/2000x2000px-862090_5.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855593/2000x2000px-862090_5.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855593/2000x2000px-862090_5.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855593/2000x2000px-862090_5.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855593/2000x2000px-862090_5.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855593/2000x2000px-862090_5.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855593/2000x2000px-862090_5.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855593/2000x2000px-862090_5.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855593/2000x2000px-862090_5.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"gR6D1UdQNyN.h7NERt1wWC3J0Lwxip.4\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855592,\n            \"size\": 367174,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862090_4.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_4.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723110013,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855592/2000x2000px-862090_4.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855592/2000x2000px-862090_4.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855592/2000x2000px-862090_4.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855592/2000x2000px-862090_4.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855592/2000x2000px-862090_4.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855592/2000x2000px-862090_4.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855592/2000x2000px-862090_4.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855592/2000x2000px-862090_4.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855592/2000x2000px-862090_4.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855592/2000x2000px-862090_4.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855592/2000x2000px-862090_4.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855592/2000x2000px-862090_4.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"MdHyhCynZpaUXRfyCfihg2VML.N0SQRM\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855588,\n            \"size\": 99438,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862072.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862072.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723101999,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4070555856,\n                4070822538,\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4071855588/2000x2000px-862072.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855588/2000x2000px-862072.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855588/2000x2000px-862072.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855588/2000x2000px-862072.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855588/2000x2000px-862072.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855588/2000x2000px-862072.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855588/2000x2000px-862072.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855588/2000x2000px-862072.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855588/2000x2000px-862072.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855588/2000x2000px-862072.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855588/2000x2000px-862072.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855588/2000x2000px-862072.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 2,\n            \"title_a\": null,\n            \"tags\": [\n                \"text\",\n                \"13.7 years\",\n                \"warm\",\n                \"life\",\n                \"white\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"q8X.AeLnQFtiEmatZeCN8hKkDp4fcVR6\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855589,\n            \"size\": 152277,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862090_1.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_1.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723090794,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855589/2000x2000px-862090_1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855589/2000x2000px-862090_1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855589/2000x2000px-862090_1.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855589/2000x2000px-862090_1.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855589/2000x2000px-862090_1.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855589/2000x2000px-862090_1.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855589/2000x2000px-862090_1.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855589/2000x2000px-862090_1.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855589/2000x2000px-862090_1.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855589/2000x2000px-862090_1.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855589/2000x2000px-862090_1.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855589/2000x2000px-862090_1.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"storemediaid\": null,\n            \"source\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"expiration_date\": null,\n            \"publish_date\": null,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null\n        },\n        {\n            \"id\": 4071855590,\n            \"size\": 304704,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862090_2-copy.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_2-copy.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723090794,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855590/2000x2000px-862090_2-copy.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855590/2000x2000px-862090_2-copy.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855590/2000x2000px-862090_2-copy.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855590/2000x2000px-862090_2-copy.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855590/2000x2000px-862090_2-copy.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855590/2000x2000px-862090_2-copy.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855590/2000x2000px-862090_2-copy.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855590/2000x2000px-862090_2-copy.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855590/2000x2000px-862090_2-copy.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855590/2000x2000px-862090_2-copy.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855590/2000x2000px-862090_2-copy.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855590/2000x2000px-862090_2-copy.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"storemediaid\": null,\n            \"source\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"expiration_date\": null,\n            \"publish_date\": null,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null\n        },\n        {\n            \"id\": 4071855591,\n            \"size\": 215332,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862090_3.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862090_3.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723090794,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855591/2000x2000px-862090_3.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855591/2000x2000px-862090_3.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855591/2000x2000px-862090_3.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855591/2000x2000px-862090_3.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855591/2000x2000px-862090_3.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855591/2000x2000px-862090_3.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855591/2000x2000px-862090_3.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855591/2000x2000px-862090_3.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855591/2000x2000px-862090_3.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855591/2000x2000px-862090_3.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855591/2000x2000px-862090_3.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855591/2000x2000px-862090_3.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"storemediaid\": null,\n            \"source\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"expiration_date\": null,\n            \"publish_date\": null,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null\n        },\n        {\n            \"id\": 4071855586,\n            \"size\": 260369,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862071_6.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_6.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723069550,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855586/2000x2000px-862071_6.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855586/2000x2000px-862071_6.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855586/2000x2000px-862071_6.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855586/2000x2000px-862071_6.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855586/2000x2000px-862071_6.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855586/2000x2000px-862071_6.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855586/2000x2000px-862071_6.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855586/2000x2000px-862071_6.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855586/2000x2000px-862071_6.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855586/2000x2000px-862071_6.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855586/2000x2000px-862071_6.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855586/2000x2000px-862071_6.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"mTvlbGazXbyj3UqLpoR4V8UDceMUgTAg\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855587,\n            \"size\": 116375,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862071_7.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_7.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723059854,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855587/2000x2000px-862071_7.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855587/2000x2000px-862071_7.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855587/2000x2000px-862071_7.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855587/2000x2000px-862071_7.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855587/2000x2000px-862071_7.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855587/2000x2000px-862071_7.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855587/2000x2000px-862071_7.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855587/2000x2000px-862071_7.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855587/2000x2000px-862071_7.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855587/2000x2000px-862071_7.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855587/2000x2000px-862071_7.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855587/2000x2000px-862071_7.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"storemediaid\": null,\n            \"source\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"expiration_date\": null,\n            \"publish_date\": null,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null\n        },\n        {\n            \"id\": 4071855584,\n            \"size\": 328658,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862071_4.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_4.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723057878,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855584/2000x2000px-862071_4.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855584/2000x2000px-862071_4.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855584/2000x2000px-862071_4.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855584/2000x2000px-862071_4.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855584/2000x2000px-862071_4.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855584/2000x2000px-862071_4.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855584/2000x2000px-862071_4.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855584/2000x2000px-862071_4.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855584/2000x2000px-862071_4.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855584/2000x2000px-862071_4.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855584/2000x2000px-862071_4.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855584/2000x2000px-862071_4.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"6adMv7LbxLgcBaPaNpx1wFIlLr_dHVD0\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855583,\n            \"size\": 221383,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862071_3.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_3.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723057655,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855583/2000x2000px-862071_3.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855583/2000x2000px-862071_3.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855583/2000x2000px-862071_3.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855583/2000x2000px-862071_3.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855583/2000x2000px-862071_3.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855583/2000x2000px-862071_3.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855583/2000x2000px-862071_3.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855583/2000x2000px-862071_3.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855583/2000x2000px-862071_3.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855583/2000x2000px-862071_3.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855583/2000x2000px-862071_3.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855583/2000x2000px-862071_3.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"ntPgcCBaJZbIcWy4Fv8AsfAbyAyOa.Et\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855582,\n            \"size\": 298484,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862071_2-copy.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_2-copy.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723057439,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855582/2000x2000px-862071_2-copy.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855582/2000x2000px-862071_2-copy.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855582/2000x2000px-862071_2-copy.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855582/2000x2000px-862071_2-copy.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855582/2000x2000px-862071_2-copy.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855582/2000x2000px-862071_2-copy.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855582/2000x2000px-862071_2-copy.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855582/2000x2000px-862071_2-copy.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855582/2000x2000px-862071_2-copy.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855582/2000x2000px-862071_2-copy.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855582/2000x2000px-862071_2-copy.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855582/2000x2000px-862071_2-copy.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"hePdthWIkNB.3Qe6InHRfq7rJ_PHbRQT\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855581,\n            \"size\": 140793,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862071_1.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_1.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723057210,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855581/2000x2000px-862071_1.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855581/2000x2000px-862071_1.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855581/2000x2000px-862071_1.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855581/2000x2000px-862071_1.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855581/2000x2000px-862071_1.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855581/2000x2000px-862071_1.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855581/2000x2000px-862071_1.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855581/2000x2000px-862071_1.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855581/2000x2000px-862071_1.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855581/2000x2000px-862071_1.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855581/2000x2000px-862071_1.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855581/2000x2000px-862071_1.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"F2gB7f1BuY1FfLkjPFqf3.U98cnS.rqB\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855585,\n            \"size\": 177689,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862071_5.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862071_5.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723050165,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855585/2000x2000px-862071_5.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855585/2000x2000px-862071_5.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855585/2000x2000px-862071_5.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855585/2000x2000px-862071_5.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855585/2000x2000px-862071_5.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855585/2000x2000px-862071_5.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855585/2000x2000px-862071_5.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855585/2000x2000px-862071_5.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855585/2000x2000px-862071_5.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855585/2000x2000px-862071_5.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855585/2000x2000px-862071_5.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855585/2000x2000px-862071_5.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"xAEh2a5r6NGBMPg8_3rUx9f5p.IZ_L15\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855580,\n            \"size\": 115503,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862068_7.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_7.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729723002209,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855580/2000x2000px-862068_7.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855580/2000x2000px-862068_7.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855580/2000x2000px-862068_7.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"862068\",\n                    \"asset_attribute_keys\": [\n                        \"image_7_will_it_fit\"\n                    ],\n                    \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                    \"id\": 20615976\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855580/2000x2000px-862068_7.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855580/2000x2000px-862068_7.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855580/2000x2000px-862068_7.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855580/2000x2000px-862068_7.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855580/2000x2000px-862068_7.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855580/2000x2000px-862068_7.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855580/2000x2000px-862068_7.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855580/2000x2000px-862068_7.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855580/2000x2000px-862068_7.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"gRhTAf6ys8CNcGuZnqy9toAbR7oCVkym\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855579,\n            \"size\": 258423,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862068_6.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_6.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729722992878,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855579/2000x2000px-862068_6.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855579/2000x2000px-862068_6.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855579/2000x2000px-862068_6.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"862068\",\n                    \"asset_attribute_keys\": [\n                        \"image_6_lighting_facts_jpg\"\n                    ],\n                    \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                    \"id\": 20615976\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855579/2000x2000px-862068_6.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855579/2000x2000px-862068_6.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855579/2000x2000px-862068_6.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855579/2000x2000px-862068_6.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855579/2000x2000px-862068_6.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855579/2000x2000px-862068_6.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855579/2000x2000px-862068_6.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855579/2000x2000px-862068_6.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855579/2000x2000px-862068_6.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"VNt65I5dWMGMhBzLHn9n9MZVsl6.KR.e\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855578,\n            \"size\": 177689,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862068_5.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_5.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729722992648,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855578/2000x2000px-862068_5.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855578/2000x2000px-862068_5.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855578/2000x2000px-862068_5.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"862068\",\n                    \"asset_attribute_keys\": [\n                        \"image_5_ideal_for\"\n                    ],\n                    \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                    \"id\": 20615976\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855578/2000x2000px-862068_5.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855578/2000x2000px-862068_5.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855578/2000x2000px-862068_5.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855578/2000x2000px-862068_5.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855578/2000x2000px-862068_5.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855578/2000x2000px-862068_5.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855578/2000x2000px-862068_5.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855578/2000x2000px-862068_5.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855578/2000x2000px-862068_5.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"EWMGF7ZZ6gRMP8zF3vnrI.Fywzmy36Dq\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855577,\n            \"size\": 231604,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862068_4.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_4.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729722992452,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855577/2000x2000px-862068_4.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855577/2000x2000px-862068_4.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855577/2000x2000px-862068_4.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"862068\",\n                    \"asset_attribute_keys\": [\n                        \"image_4_color_temp\"\n                    ],\n                    \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                    \"id\": 20615976\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855577/2000x2000px-862068_4.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855577/2000x2000px-862068_4.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855577/2000x2000px-862068_4.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855577/2000x2000px-862068_4.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855577/2000x2000px-862068_4.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855577/2000x2000px-862068_4.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855577/2000x2000px-862068_4.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855577/2000x2000px-862068_4.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855577/2000x2000px-862068_4.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"W6gzhCrKR1VGyLxWrwRbrfTbP6YmTOTv\",\n            \"publish_date\": null\n        },\n        {\n            \"id\": 4071855576,\n            \"size\": 218580,\n            \"width\": 2000,\n            \"height\": 2000,\n            \"filename\": \"2000x2000px-862068_3.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/2000x2000px-862068_3.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1729694807207,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1729722992259,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4071855576/2000x2000px-862068_3.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855576/2000x2000px-862068_3.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855576/2000x2000px-862068_3.jpg\",\n            \"linked_products\": [\n                {\n                    \"number\": \"862068\",\n                    \"asset_attribute_keys\": [\n                        \"image_3_get_the_look\"\n                    ],\n                    \"name\": \"6W LED G25 2700K FILAMENT HALF WHITE FULLY COMPATIBLE DIMMING-2PK\",\n                    \"id\": 20615976\n                }\n            ],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4071855576/2000x2000px-862068_3.jpg\",\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071855576/2000x2000px-862068_3.jpg\",\n                \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4071855576/2000x2000px-862068_3.png\",\n                \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4071855576/2000x2000px-862068_3.png\",\n                \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4071855576/2000x2000px-862068_3.png\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071855576/2000x2000px-862068_3.jpg\",\n                \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4071855576/2000x2000px-862068_3.png\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071855576/2000x2000px-862068_3.jpg\",\n                \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4071855576/2000x2000px-862068_3.png\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": 1,\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"category\": {\n                \"level_1\": \"Uncategorized\"\n            },\n            \"s3_version\": \"kRoK04BWLBcOAjF6rWhhzn7dwJLTxgDD\",\n            \"publish_date\": null\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 393,\n        \"results_per_page\": 100,\n        \"total_pages\": 4,\n        \"current_page\": 1\n    }\n}"}],"_postman_id":"5ee2394f-15f5-4375-bea6-88d0e9713f23"},{"name":"Count Assets","id":"fbe75629-a069-4ddb-958c-e1ac90e003a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"attributeKeys\": [\r\n        \"title_a\",\r\n        \"application_notes\"\r\n    ],\r\n    \"filters\": [\r\n        {\r\n            \"attributeKey\": \"title_a\",\r\n            \"operator\": \"contains\",\r\n            \"value\": \"compressor\"\r\n        },\r\n        {\r\n            \"attributeKey\": \"status\",\r\n            \"operator\": \"not\",\r\n            \"value\": \"Inactive\"\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/assets/filter/count?filters=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets","filter","count"],"host":["https://api.catsy.com/v4"],"query":[{"key":"filters","value":""}],"variable":[]}},"response":[],"_postman_id":"fbe75629-a069-4ddb-958c-e1ac90e003a5"},{"name":"Rename Files","id":"aa0907b5-6686-4a2b-8e5e-79328f9ad6bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"GP-71823XL.jpeg\": \"8052-Main.jpeg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/assets/rename","description":"<h3 id=\"rename-asset\">Rename Asset</h3>\n<p>This endpoint is used to rename an asset.</p>\n<h4 id=\"request\">Request</h4>\n<p>The request should include a raw JSON payload in the request body to specify the old and new names of the asset to be renamed.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets","rename"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"8f73cde6-5d0b-4a27-9293-0e565136842d","name":"Rename Files","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"GP-71823XL.jpeg\": \"8052-Main.jpeg\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/assets/rename"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Apr 2025 16:06:13 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=HF71NOGCV78DoAatk9Z2cd6Z3%2BWRpD3kJcdF54xgEa2mzbSMreTPN5cUNb3xI6z%2FX4QlvQt%2F2f1eATuQyXCBAJrQsqf%2BtXhqkGcvaF2DroyTbkaMrf0B6yDLbAmrXoY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"9356d8b61a215872-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2230&min_rtt=2060&rtt_var=894&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2817&recv_bytes=940&delivery_rate=1405825&cwnd=247&unsent_bytes=0&cid=cf6b18486431599c&ts=1294&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"aa0907b5-6686-4a2b-8e5e-79328f9ad6bd"},{"name":"Bulk Upload","id":"223721ff-f06d-4397-808d-54e0aaaf3445","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"imageData","type":"file","uuid":"c4e1e279-09f4-4d00-8bfe-46abfab70d9d","value":null}]},"url":"https://api.catsy.com/v4/assets/upload?category=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["assets","upload"],"host":["https://api.catsy.com/v4"],"query":[{"description":{"content":"<p>Category your asset should be uploaded to</p>\n","type":"text/plain"},"key":"category","value":""}],"variable":[]}},"response":[],"_postman_id":"223721ff-f06d-4397-808d-54e0aaaf3445"}],"id":"6e0ec129-aeea-4978-94f6-f1fa3ba33587","_postman_id":"6e0ec129-aeea-4978-94f6-f1fa3ba33587","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}}},{"name":"Categories","item":[{"name":"Create Root Category","id":"8ac72df7-b464-40a2-99c9-2616d1e4207a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Super Glue\",\r\n  \"attribute_group_ids\": [\r\n    20684357\r\n  ],\r\n  \"buckets\": [\r\n    \"ASSET\",\r\n    \"PRODUCT\"\r\n  ],\r\n  \"private\": false\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/categories","description":"<h3 id=\"add-root-category\">Add Root Category</h3>\n<p>This endpoint allows the user to add a new root category with the specified name, attribute group IDs, buckets, and privacy settings.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>name</code> (string): *Required* The name of the category to be added.</p>\n</li>\n<li><p><code>attribute_group_ids</code> (array of integers): The IDs of the attribute groups associated with the category.</p>\n</li>\n<li><p><code>buckets</code> (array of strings): The buckets associated with the category.</p>\n</li>\n<li><p><code>private</code> (boolean): Indicates whether the category is private or not.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["categories"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"ead6eac5-7842-4695-8c77-77ba72ac5b17","name":"Create Root Category","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Super Glue\",\r\n  \"attribute_group_ids\": [\r\n    20684357\r\n  ],\r\n  \"buckets\": [\r\n    \"ASSET\",\r\n    \"PRODUCT\"\r\n  ],\r\n  \"private\": false\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Apr 2025 19:31:28 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=Sm0DTOAMsAfCl1AxqH17BcYnNVIDhR9PORMjEZTij0c7XUh8DkGKWRh8nGaroBH3eCGUMZPVvWbOV4CsiDy8HRsPZg9XIaJI8WgPUdhRC0ti%2BgRurbfpuUZru4PxaE8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"9358056289678292-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2015&min_rtt=1888&rtt_var=799&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2817&recv_bytes=1044&delivery_rate=1533898&cwnd=250&unsent_bytes=0&cid=aca28ad88369b86b&ts=981&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4000790352,\n    \"level\": 1,\n    \"hierarchy\": \"Super Glue\",\n    \"seq_order\": 11,\n    \"buckets\": [\n        \"ASSET\",\n        \"PRODUCT\"\n    ],\n    \"create_user_id\": 4018007130,\n    \"create_date\": 1745523088049,\n    \"create_user_name\": \"Catsy Administrator\",\n    \"update_user_id\": 4018007130,\n    \"update_date\": 1745523088049,\n    \"update_user_name\": \"Catsy Administrator\",\n    \"name\": \"Super Glue\"\n}"}],"_postman_id":"8ac72df7-b464-40a2-99c9-2616d1e4207a"},{"name":"Delete Category","id":"abbeebf8-de18-4fb1-8281-8729e280644d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.catsy.com/v4/categories/:category_id","description":"<h3 id=\"delete-category\">Delete Category</h3>\n<p>This endpoint is used to delete a specific category by providing the category ID in the URL.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["categories",":category_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Catsy ID</p>\n","type":"text/plain"},"type":"any","value":"{category_id}","key":"category_id"}]}},"response":[{"id":"059cd32d-b897-4b7c-a752-da93e499a2f2","name":"Delete Category","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.catsy.com/v4/categories/:category_id","host":["https://api.catsy.com/v4"],"path":["categories",":category_id"],"variable":[{"key":"category_id","value":"4000790352","description":"Internal Catsy ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 24 Apr 2025 19:37:42 GMT","enabled":true},{"key":"Content-Type","value":"application/json;charset=UTF-8","enabled":true},{"key":"Transfer-Encoding","value":"chunked","enabled":true},{"key":"Connection","value":"keep-alive","enabled":true},{"key":"Vary","value":"Origin","enabled":true},{"key":"Vary","value":"Access-Control-Request-Method","enabled":true},{"key":"Vary","value":"Access-Control-Request-Headers","enabled":true},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1","enabled":true},{"key":"RateLimit","value":"\"standard\";r=10;t=0","enabled":true},{"key":"Cache-Control","value":"no-store","enabled":true},{"key":"cf-cache-status","value":"DYNAMIC","enabled":true},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=dEL3vg7J8I8dsCoGVYiDKRuFoFLx6Qzf5XojJ1D%2Bbs1kWkJMaVl4jHEQYMoNL%2BJ4plLqPT1GiZJ2FMNBFFvNu2cerRdJ29J47v%2BjTzm4ieKO96l5Mm6jO8kyTZK2AH8%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}","enabled":true},{"key":"Server","value":"cloudflare","enabled":true},{"key":"CF-RAY","value":"93580e86f8f2f27c-IAD","enabled":true},{"key":"Content-Encoding","value":"br","enabled":true},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2174&min_rtt=1945&rtt_var=893&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1109&delivery_rate=744473&cwnd=248&unsent_bytes=0&cid=6a8f9792ca5feb77&ts=691&x=0\"","enabled":true}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\"\n}"}],"_postman_id":"abbeebf8-de18-4fb1-8281-8729e280644d"},{"name":"Category Details","id":"2ca9549b-aa8d-4a5c-9754-3f9983f92f54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/categories/:category_id","description":"<h3 id=\"get-category-by-id\">Get Category by ID</h3>\n<p>This endpoint retrieves the details of a specific category based on the provided category ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["categories",":category_id"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>If set to true, only the ID will be returned rather then full child details</p>\n","type":"text/plain"},"key":"child_ids_only","value":""}],"variable":[{"description":{"content":"<p>Internal Category ID</p>\n","type":"text/plain"},"type":"any","value":"{category_id}","key":"category_id"}]}},"response":[{"id":"fde7ca4d-d335-4d42-bb77-384a9e378d2e","name":"Category Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/categories/:category_id","host":["https://api.catsy.com/v4"],"path":["categories",":category_id"],"query":[{"key":"child_ids_only","value":null,"type":"text","disabled":true}],"variable":[{"key":"category_id","value":"4000762914"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 20:42:31 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=8P5dU3jZOIPNKcKkiVQ96bweZA6b%2BYO7QWuPou1hl51BO6pDl0XHYgC7PFT3vu4%2FZZD1IMt8bdlD1HRG3gYIDk%2FxlFli3HxBK%2BSVMpI2VmPZjHoocwzChwNaYMoeh5Y%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360aadb0b592425-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=7493&min_rtt=1964&rtt_var=11183&sent=8&recv=9&lost=0&retrans=0&sent_bytes=4664&recv_bytes=1193&delivery_rate=1434373&cwnd=229&unsent_bytes=0&cid=0150d8679085b1d2&ts=4552&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4000762914,\n    \"level\": 1,\n    \"children\": [\n        {\n            \"id\": 4000762915,\n            \"parent_id\": 4000762914,\n            \"level\": 2,\n            \"hierarchy\": \"Audio Visual > Microphone\",\n            \"seq_order\": 0,\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1742678356021,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1742678394654,\n            \"update_user_name\": \"Super Admin\",\n            \"name\": \"Microphone\"\n        }\n    ],\n    \"hierarchy\": \"Audio Visual\",\n    \"seq_order\": 9,\n    \"buckets\": [\n        \"ASSET\",\n        \"PRODUCT\"\n    ],\n    \"create_user_id\": 4018007131,\n    \"create_date\": 1742678342766,\n    \"create_user_name\": \"Super Admin\",\n    \"update_user_id\": 4018007131,\n    \"update_date\": 1742678342766,\n    \"update_user_name\": \"Super Admin\",\n    \"name\": \"Audio Visual\"\n}"}],"_postman_id":"2ca9549b-aa8d-4a5c-9754-3f9983f92f54"},{"name":"Update Category","id":"a2d96c66-2277-442f-ae4f-060d3243f7a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"feature_1\": \"High Fidelity Audio\",\r\n    \"intro_copy\": \"Experience the loudest sound in our lineup\"\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/categories/:category_id","description":"<h3 id=\"update-category\">Update Category</h3>\n<p>This endpoint is used to update a specific category identified by the category ID.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["categories",":category_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Category ID</p>\n","type":"text/plain"},"type":"any","value":"{category_id}","key":"category_id"}]}},"response":[{"id":"9204f618-8b6a-4f3a-8df2-2ca37f176898","name":"Update Category","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"feature_1\": \"High Fidelity Audio\",\r\n    \"intro_copy\": \"Experience the loudest sound in our lineup\"\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/categories/:category_id","host":["https://api.catsy.com/v4"],"path":["categories",":category_id"],"variable":[{"key":"category_id","value":"4000762914","description":"Internal Category ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 20:54:10 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=zF7SwiV39y6UAvNnNSh%2B4pzSfoYIj3rJqm6eUNmV%2FeakygAEkjzcsW79wwnE0MN7ZxMYqIL8FlqIBjUf1NNPBFdymNvoEc3ZPsNH8ctDTLrNQnFtBs3IHrlWwnnPDRI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360bbe3ad385b3b-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2043&min_rtt=1965&rtt_var=793&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2817&recv_bytes=1013&delivery_rate=1473791&cwnd=234&unsent_bytes=0&cid=977fa17a6dafc0f3&ts=860&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4000762914,\n    \"level\": 1,\n    \"children\": [\n        {\n            \"id\": 4000762915,\n            \"parent_id\": 4000762914,\n            \"level\": 2,\n            \"hierarchy\": \"Audio Visual > Microphone\",\n            \"seq_order\": 1,\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1742678356021,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007130,\n            \"update_date\": 1745614449369,\n            \"update_user_name\": \"Catsy Administrator\",\n            \"name\": \"Microphone\"\n        }\n    ],\n    \"hierarchy\": \"Audio Visual\",\n    \"seq_order\": 9,\n    \"buckets\": [\n        \"ASSET\",\n        \"PRODUCT\"\n    ],\n    \"create_user_id\": 4018007131,\n    \"create_date\": 1742678342766,\n    \"create_user_name\": \"Super Admin\",\n    \"update_user_id\": 4018007130,\n    \"update_date\": 1745614449369,\n    \"update_user_name\": \"Catsy Administrator\",\n    \"name\": \"Audio Visual\",\n    \"intro_copy\": \"Experience the loudest sound in our lineup\",\n    \"feature_1\": \"High Fidelity Audio\"\n}"}],"_postman_id":"a2d96c66-2277-442f-ae4f-060d3243f7a8"},{"name":"List Child IDs","id":"5ee6e542-128a-4f72-8d8e-e48dca4428e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/categories/:category_id/child_ids","description":"<h3 id=\"retrieve-child-category-ids\">Retrieve Child Category IDs</h3>\n<p>This endpoint makes an HTTP GET request to retrieve the child category IDs for a specific category.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["categories",":category_id","child_ids"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Category ID</p>\n","type":"text/plain"},"type":"any","value":"{category_id}","key":"category_id"}]}},"response":[{"id":"58ec1593-a620-4910-bff7-01424aed6246","name":"List Child IDs","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/categories/:category_id/child_ids","host":["https://api.catsy.com/v4"],"path":["categories",":category_id","child_ids"],"variable":[{"key":"category_id","value":"4000670562"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 20:57:06 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=4dznym%2BBCTqeIim7QVaCTPnGXjf5BnXbyDdJRHA%2BdV2ANLRq58fDWqoRgYaRT39ow7zap2jqhIyinyAqRZV6QjH8Mcdk0kEvt%2BwE7xus1m20yFVXmJYapJZIJmHiu80%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360c033daf381e5-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2245&min_rtt=2102&rtt_var=890&sent=4&recv=5&lost=0&retrans=0&sent_bytes=2817&recv_bytes=861&delivery_rate=1377735&cwnd=243&unsent_bytes=0&cid=b366b9021c1b9594&ts=216&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    4000733444,\n    4000709744,\n    4000692307,\n    4000670566,\n    4000709708,\n    4000709743,\n    4000709745,\n    4000710426,\n    4000709746,\n    4000710448,\n    4000710452,\n    4000710595,\n    4000725634,\n    4000726235,\n    4000738103\n]"}],"_postman_id":"5ee6e542-128a-4f72-8d8e-e48dca4428e2"},{"name":"List Child Names","id":"a098d6f4-0904-4656-be2a-ad2bbd8eb2de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/categories/:category_id/children","description":"<h3 id=\"get-category-children\">Get Category Children</h3>\n<p>This endpoint retrieves the children categories of a specific category.</p>\n<p>Upon a successful request, the server will respond with a status code of 200 and a JSON array containing the details of the child categories.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["categories",":category_id","children"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Category ID</p>\n","type":"text/plain"},"type":"any","value":"{category_id}","key":"category_id"}]}},"response":[{"id":"4472c5f9-fa09-4c3d-a511-db1f5d097b3a","name":"List Child Names","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/categories/:category_id/children","host":["https://api.catsy.com/v4"],"path":["categories",":category_id","children"],"variable":[{"key":"category_id","value":"4000670562","description":"Internal Category ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 20:59:21 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=IbuhU116qarb4dtDCpCp%2FvnGhdy435Ybk2B6FwEsw36fYw0hz35eMLXrmN%2FD6%2BEFTTKhiRzoG3N9jewc7cejD9pfSjXdfy8I%2BjNUGGRySdqw3XfJpPIH7uTSjZD%2FKck%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360c3839ada082f-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2525&min_rtt=2331&rtt_var=1013&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1115&delivery_rate=621192&cwnd=249&unsent_bytes=0&cid=2f70eee75e3ae810&ts=346&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 4000733444,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Flooring\",\n        \"seq_order\": 1,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1721911716337,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Flooring\"\n    },\n    {\n        \"id\": 4000709744,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"children\": [\n            {\n                \"id\": 4000715718,\n                \"parent_id\": 4000709744,\n                \"level\": 3,\n                \"hierarchy\": \"Tools > Power Tools > Table Saws\",\n                \"seq_order\": 1,\n                \"create_user_id\": 4018007131,\n                \"create_date\": 1708990281277,\n                \"create_user_name\": \"Super Admin\",\n                \"update_user_id\": 4018007131,\n                \"update_date\": 1730637610456,\n                \"update_user_name\": \"Super Admin\",\n                \"assets\": [\n                    {\n                        \"id\": 4070863007,\n                        \"size\": 4930438,\n                        \"width\": 3000,\n                        \"height\": 3000,\n                        \"filename\": \"918100_HOOK.jpg\",\n                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_HOOK.jpg\",\n                        \"create_user_id\": 4018007131,\n                        \"create_date\": 1705529939078,\n                        \"create_user_name\": \"Super Admin\",\n                        \"update_user_id\": 4018007131,\n                        \"update_date\": 1740418792166,\n                        \"update_user_name\": \"Super Admin\",\n                        \"lightbox_ids\": [\n                            4070822538\n                        ],\n                        \"thumbnail_filename\": \"4070863007/918100_HOOK.jpg\",\n                        \"asset_type\": \"IMAGE\",\n                        \"aspect_ratio\": null,\n                        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863007/918100_HOOK.jpg\",\n                        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863007/918100_HOOK.jpg\",\n                        \"linked_products\": [],\n                        \"private\": false,\n                        \"extension\": \"jpg\",\n                        \"transformations\": {\n                            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863007/918100_HOOK.jpg\",\n                            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863007/918100_HOOK.jpg\",\n                            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863007/918100_HOOK.png\",\n                            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863007/918100_HOOK.png\",\n                            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863007/918100_HOOK.png\",\n                            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863007/918100_HOOK.jpg\",\n                            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863007/918100_HOOK.png\",\n                            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863007/918100_HOOK.jpg\",\n                            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863007/918100_HOOK.png\"\n                        },\n                        \"personna\": null,\n                        \"marketing_campaigns\": [\n                            \"LinkedIn\",\n                            \"YouTube\"\n                        ],\n                        \"source\": null,\n                        \"expiration_date\": \"2025-02-05\",\n                        \"version\": 1,\n                        \"title_a\": \"alt text\",\n                        \"application_notes\": \"DEF\",\n                        \"tags\": [\n                            \"red\",\n                            \"hook\",\n                            \"Tools\",\n                            \"adapter\"\n                        ],\n                        \"storemediaid\": null,\n                        \"b2bindustrialpreliminarydemo804_alt_text\": null,\n                        \"category\": {\n                            \"level_1\": \"Tools\",\n                            \"level_2\": \"Fastener Tools\"\n                        },\n                        \"s3_version\": \"r.eHerB3Lyt86a7.8u79Qh7rhS6F7Vge\",\n                        \"publish_date\": null,\n                        \"b2bindustrialpreliminarydemo804_url\": null\n                    },\n                    {\n                        \"id\": 4070956161,\n                        \"size\": 68571,\n                        \"width\": 1072,\n                        \"height\": 1072,\n                        \"filename\": \"10G688_AS02-2.jpeg\",\n                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/10G688_AS02-2.jpeg\",\n                        \"create_user_id\": 4018007131,\n                        \"create_date\": 1708347289780,\n                        \"create_user_name\": \"Super Admin\",\n                        \"update_user_id\": 4018007131,\n                        \"update_date\": 1740597170820,\n                        \"update_user_name\": \"Super Admin\",\n                        \"lightbox_ids\": [\n                            4070822538\n                        ],\n                        \"thumbnail_filename\": \"4070956161/10G688_AS02-2.jpg\",\n                        \"asset_type\": \"IMAGE\",\n                        \"aspect_ratio\": null,\n                        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070956161/10G688_AS02-2.jpg\",\n                        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070956161/10G688_AS02-2.jpg\",\n                        \"linked_products\": [],\n                        \"private\": false,\n                        \"extension\": \"jpeg\",\n                        \"transformations\": {\n                            \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070956161/10G688_AS02-2.jpg\",\n                            \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070956161/10G688_AS02-2.jpg\",\n                            \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070956161/10G688_AS02-2.png\",\n                            \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070956161/10G688_AS02-2.png\",\n                            \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070956161/10G688_AS02-2.png\",\n                            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070956161/10G688_AS02-2.jpg\",\n                            \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070956161/10G688_AS02-2.png\",\n                            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070956161/10G688_AS02-2.jpg\",\n                            \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070956161/10G688_AS02-2.png\"\n                        },\n                        \"personna\": \"DIY\",\n                        \"marketing_campaigns\": [\n                            \"LinkedIn\",\n                            \"YouTube\",\n                            \"Twitter\"\n                        ],\n                        \"source\": null,\n                        \"expiration_date\": \"2024-05-15\",\n                        \"version\": 1,\n                        \"title_a\": \"red pliers\",\n                        \"tags\": [\n                            \"device\",\n                            \"pliers\",\n                            \"tool\",\n                            \"esd safe\",\n                            \"2838fcmp\",\n                            \"red\",\n                            \"rubber grip\",\n                            \"snips\",\n                            \"sharp\",\n                            \"steel\",\n                            \"carbide\",\n                            \"plastic grip\",\n                            \"Tools\",\n                            \"lyon\",\n                            \"chrome\",\n                            \"grip\"\n                        ],\n                        \"application_notes\": null,\n                        \"storemediaid\": null,\n                        \"description_a\": \"new asset\",\n                        \"b2bindustrialpreliminarydemo804_alt_text\": null,\n                        \"category\": {\n                            \"level_1\": \"Tools\",\n                            \"level_2\": \"Masonary Ladders\"\n                        },\n                        \"s3_version\": \"iARrimFakxCZW.eFOKm5BALKTsgtkadN\",\n                        \"publish_date\": \"2025-03-05\",\n                        \"b2bindustrialpreliminarydemo804_url\": null\n                    }\n                ],\n                \"name\": \"Table Saws\",\n                \"description\": \"For my landing page this my seo descroption\",\n                \"secondary_image\": 4070863007,\n                \"categoty_image\": 4070956161\n            },\n            {\n                \"id\": 4000670565,\n                \"parent_id\": 4000709744,\n                \"level\": 3,\n                \"hierarchy\": \"Tools > Power Tools > Compressors\",\n                \"seq_order\": 2,\n                \"create_user_id\": 4018007130,\n                \"create_date\": 1659453388094,\n                \"create_user_name\": \"Catsy Administrator\",\n                \"update_user_id\": 4018007131,\n                \"update_date\": 1733405814646,\n                \"update_user_name\": \"Super Admin\",\n                \"assets\": [\n                    {\n                        \"id\": 4070862995,\n                        \"size\": 5364276,\n                        \"width\": 3000,\n                        \"height\": 3000,\n                        \"filename\": \"918100_MAGAZINE.jpg\",\n                        \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/918100_MAGAZINE.jpg\",\n                        \"create_user_id\": 4018007131,\n                        \"create_date\": 1705529933116,\n                        \"create_user_name\": \"Super Admin\",\n                        \"update_user_id\": 4018007131,\n                        \"update_date\": 1714060803252,\n                        \"update_user_name\": \"Super Admin\",\n                        \"lightbox_ids\": [],\n                        \"thumbnail_filename\": \"4070862995/918100_MAGAZINE.jpg\",\n                        \"asset_type\": \"IMAGE\",\n                        \"aspect_ratio\": null,\n                        \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862995/918100_MAGAZINE.jpg\",\n                        \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862995/918100_MAGAZINE.jpg\",\n                        \"linked_products\": [],\n                        \"private\": false,\n                        \"extension\": \"jpg\",\n                        \"transformations\": {\n                            \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862995/918100_MAGAZINE.jpg\",\n                            \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862995/918100_MAGAZINE.jpg\"\n                        },\n                        \"personna\": null,\n                        \"marketing_campaigns\": null,\n                        \"source\": null,\n                        \"expiration_date\": null,\n                        \"version\": 1,\n                        \"title_a\": \"18nab\",\n                        \"tags\": [\n                            \"device\",\n                            \"power drill\",\n                            \"tool\",\n                            \"car\",\n                            \"transportation\",\n                            \"vehicle\",\n                            \"18s\",\n                            \"red\",\n                            \"Tools\"\n                        ],\n                        \"application_notes\": null,\n                        \"storemediaid\": null,\n                        \"b2bindustrialpreliminarydemo804_alt_text\": null,\n                        \"category\": {\n                            \"level_1\": \"Tools\",\n                            \"level_2\": \"Fastener Tools\"\n                        },\n                        \"s3_version\": \"NsPSgwshOXNNO6F9TS8H6338u2wDQxVp\",\n                        \"publish_date\": null,\n                        \"b2bindustrialpreliminarydemo804_url\": null\n                    }\n                ],\n                \"name\": \"Compressors\",\n                \"title_c\": \"New Compressors with steel casing\",\n                \"description\": \"Category and lifestyle content\",\n                \"secondary_image\": 4070862995,\n                \"feature_1\": \"abcd\"\n            },\n            {\n                \"id\": 4000725633,\n                \"parent_id\": 4000709744,\n                \"level\": 3,\n                \"children\": [\n                    {\n                        \"id\": 4000736526,\n                        \"parent_id\": 4000725633,\n                        \"level\": 4,\n                        \"hierarchy\": \"Tools > Power Tools > Nail Guns > Pneumatic Nail Guns\",\n                        \"seq_order\": 0,\n                        \"create_user_id\": 4018007131,\n                        \"create_date\": 1723811697924,\n                        \"create_user_name\": \"Super Admin\",\n                        \"update_user_id\": 4018007131,\n                        \"update_date\": 1737468586853,\n                        \"update_user_name\": \"Super Admin\",\n                        \"name\": \"Pneumatic Nail Guns\"\n                    },\n                    {\n                        \"id\": 4000736527,\n                        \"parent_id\": 4000725633,\n                        \"level\": 4,\n                        \"hierarchy\": \"Tools > Power Tools > Nail Guns > Cordless Nail Guns\",\n                        \"seq_order\": 1,\n                        \"create_user_id\": 4018007131,\n                        \"create_date\": 1723811736222,\n                        \"create_user_name\": \"Super Admin\",\n                        \"update_user_id\": 4018007131,\n                        \"update_date\": 1723811736222,\n                        \"update_user_name\": \"Super Admin\",\n                        \"name\": \"Cordless Nail Guns\"\n                    }\n                ],\n                \"hierarchy\": \"Tools > Power Tools > Nail Guns\",\n                \"seq_order\": 3,\n                \"create_user_id\": 4018007131,\n                \"create_date\": 1716210256162,\n                \"create_user_name\": \"Super Admin\",\n                \"update_user_id\": 4018007131,\n                \"update_date\": 1742942138774,\n                \"update_user_name\": \"Super Admin\",\n                \"name\": \"Nail Guns\",\n                \"description\": \"Powerful percise tools designed for fastening materials quickly and efficiently over a wide range of construction projects\"\n            }\n        ],\n        \"hierarchy\": \"Tools > Power Tools\",\n        \"seq_order\": 2,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705093055633,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740242757929,\n        \"update_user_name\": \"Super Admin\",\n        \"assets\": [\n            {\n                \"id\": 4070862974,\n                \"size\": 3016882,\n                \"width\": 3216,\n                \"height\": 3216,\n                \"filename\": \"492P85_AS02.jpeg\",\n                \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/492P85_AS02.jpeg\",\n                \"create_user_id\": 4018007131,\n                \"create_date\": 1705529920350,\n                \"create_user_name\": \"Super Admin\",\n                \"update_user_id\": 4018007131,\n                \"update_date\": 1714060803252,\n                \"update_user_name\": \"Super Admin\",\n                \"lightbox_ids\": [],\n                \"thumbnail_filename\": \"4070862974/492P85_AS02.jpg\",\n                \"asset_type\": \"IMAGE\",\n                \"aspect_ratio\": null,\n                \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862974/492P85_AS02.jpg\",\n                \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862974/492P85_AS02.jpg\",\n                \"linked_products\": [],\n                \"private\": false,\n                \"extension\": \"jpeg\",\n                \"transformations\": {\n                    \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070862974/492P85_AS02.jpg\",\n                    \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070862974/492P85_AS02.jpg\"\n                },\n                \"personna\": null,\n                \"marketing_campaigns\": null,\n                \"source\": null,\n                \"expiration_date\": null,\n                \"version\": 1,\n                \"title_a\": null,\n                \"tags\": [\n                    \"device\",\n                    \"brushless\",\n                    \"grey\",\n                    \"Tools\"\n                ],\n                \"application_notes\": null,\n                \"storemediaid\": null,\n                \"b2bindustrialpreliminarydemo804_alt_text\": null,\n                \"category\": {\n                    \"level_1\": \"Tools\",\n                    \"level_2\": \"Power Tools\"\n                },\n                \"s3_version\": \".23Yvg3SODXk0vnzut3qBT.RuGdyKnXe\",\n                \"publish_date\": null,\n                \"b2bindustrialpreliminarydemo804_url\": null\n            }\n        ],\n        \"name\": \"Power Tools\",\n        \"title_c\": \"sss\",\n        \"secondary_image\": 4070862974\n    },\n    {\n        \"id\": 4000692307,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"children\": [\n            {\n                \"id\": 4000709757,\n                \"parent_id\": 4000692307,\n                \"level\": 3,\n                \"hierarchy\": \"Tools > Power Drills > Cordless Drills\",\n                \"seq_order\": 0,\n                \"create_user_id\": 4018007131,\n                \"create_date\": 1705094298880,\n                \"create_user_name\": \"Super Admin\",\n                \"update_user_id\": 4018007131,\n                \"update_date\": 1705094298880,\n                \"update_user_name\": \"Super Admin\",\n                \"name\": \"Cordless Drills\"\n            },\n            {\n                \"id\": 4000709758,\n                \"parent_id\": 4000692307,\n                \"level\": 3,\n                \"hierarchy\": \"Tools > Power Drills > Corded Drills\",\n                \"seq_order\": 1,\n                \"create_user_id\": 4018007131,\n                \"create_date\": 1705094299018,\n                \"create_user_name\": \"Super Admin\",\n                \"update_user_id\": 4018007131,\n                \"update_date\": 1705094299018,\n                \"update_user_name\": \"Super Admin\",\n                \"name\": \"Corded Drills\"\n            }\n        ],\n        \"hierarchy\": \"Tools > Power Drills\",\n        \"seq_order\": 3,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1684756892687,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Power Drills\"\n    },\n    {\n        \"id\": 4000670566,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"children\": [\n            {\n                \"id\": 4000725877,\n                \"parent_id\": 4000670566,\n                \"level\": 3,\n                \"hierarchy\": \"Tools > Power Saws > Vertical Pane Saw\",\n                \"seq_order\": 0,\n                \"create_user_id\": 4018007131,\n                \"create_date\": 1716471406950,\n                \"create_user_name\": \"Super Admin\",\n                \"update_user_id\": 4018007131,\n                \"update_date\": 1716471406950,\n                \"update_user_name\": \"Super Admin\",\n                \"name\": \"Vertical Pane Saw\"\n            }\n        ],\n        \"hierarchy\": \"Tools > Power Saws\",\n        \"seq_order\": 4,\n        \"create_user_id\": 4018007130,\n        \"create_date\": 1659453388317,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Power Saws\"\n    },\n    {\n        \"id\": 4000709708,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Generators\",\n        \"seq_order\": 5,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1704994561882,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1740230391892,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Generators\",\n        \"feature_3\": \"B\",\n        \"feature_2\": \"A\"\n    },\n    {\n        \"id\": 4000709743,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Fastener Tools\",\n        \"seq_order\": 6,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705092589289,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Fastener Tools\"\n    },\n    {\n        \"id\": 4000709745,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"children\": [\n            {\n                \"id\": 4000762142,\n                \"parent_id\": 4000709745,\n                \"level\": 3,\n                \"hierarchy\": \"Tools > Hand Tools > Pliers\",\n                \"seq_order\": 0,\n                \"create_user_id\": 4018014823,\n                \"create_date\": 1741880880595,\n                \"create_user_name\": \"Jarod Waters\",\n                \"update_user_id\": 4018014823,\n                \"update_date\": 1741880889295,\n                \"update_user_name\": \"Jarod Waters\",\n                \"name\": \"Pliers\"\n            }\n        ],\n        \"hierarchy\": \"Tools > Hand Tools\",\n        \"seq_order\": 7,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705093055778,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Hand Tools\"\n    },\n    {\n        \"id\": 4000710426,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Adhesives & Coatings\",\n        \"seq_order\": 8,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705535501448,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1728076083130,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Adhesives & Coatings\"\n    },\n    {\n        \"id\": 4000709746,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"children\": [\n            {\n                \"id\": 4000709759,\n                \"parent_id\": 4000709746,\n                \"level\": 3,\n                \"hierarchy\": \"Tools > Accessories > Drill Bits\",\n                \"seq_order\": 0,\n                \"create_user_id\": 4018007131,\n                \"create_date\": 1705097096819,\n                \"create_user_name\": \"Super Admin\",\n                \"update_user_id\": 4018007131,\n                \"update_date\": 1705097096819,\n                \"update_user_name\": \"Super Admin\",\n                \"name\": \"Drill Bits\"\n            }\n        ],\n        \"hierarchy\": \"Tools > Accessories\",\n        \"seq_order\": 9,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705093055883,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Accessories\"\n    },\n    {\n        \"id\": 4000710448,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Flooring\",\n        \"seq_order\": 10,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705589526447,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Flooring\"\n    },\n    {\n        \"id\": 4000710452,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Liquid Chromatography Columns\",\n        \"seq_order\": 11,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1705602494430,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Liquid Chromatography Columns\"\n    },\n    {\n        \"id\": 4000710595,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Abrasive Discs\",\n        \"seq_order\": 12,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1706201369104,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Abrasive Discs\"\n    },\n    {\n        \"id\": 4000725634,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Pneumatic Tools\",\n        \"seq_order\": 13,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1716213960273,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Pneumatic Tools\"\n    },\n    {\n        \"id\": 4000726235,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > A B C\",\n        \"seq_order\": 14,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1717602121870,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1721911745812,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"A B C\"\n    },\n    {\n        \"id\": 4000738103,\n        \"parent_id\": 4000670562,\n        \"level\": 2,\n        \"hierarchy\": \"Tools > Masonary Ladders\",\n        \"seq_order\": 14,\n        \"create_user_id\": 4018007131,\n        \"create_date\": 1725886560263,\n        \"create_user_name\": \"Super Admin\",\n        \"update_user_id\": 4018007131,\n        \"update_date\": 1725886560263,\n        \"update_user_name\": \"Super Admin\",\n        \"name\": \"Masonary Ladders\"\n    }\n]"}],"_postman_id":"a098d6f4-0904-4656-be2a-ad2bbd8eb2de"},{"name":"Add Child Category","id":"efcbb674-5e0c-4ebe-9724-93602659673f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Super Glue\",\r\n  \"attribute_group_ids\": [\r\n    20684357\r\n  ],\r\n  \"buckets\": [\r\n    \"ASSET\",\r\n    \"PRODUCT\"\r\n  ],\r\n  \"private\": false\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/categories/:category_id/children","description":"<h3 id=\"add-category-children\">Add Category Children</h3>\n<p>This endpoint allows the addition of child categories under a specific category.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>name</code>: (string) The name of the category to be added (e.g. \"Super Glue\").</p>\n</li>\n<li><p><code>attribute_group_ids</code>: (array) An array of attribute group IDs associated with the category.</p>\n</li>\n<li><p><code>buckets</code>: (array) An array of buckets associated with the category.</p>\n</li>\n<li><p><code>private</code>: (boolean) Indicates whether the category is private or not.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["categories",":category_id","children"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Category ID</p>\n","type":"text/plain"},"type":"any","value":"{category_id}","key":"category_id"}]}},"response":[{"id":"4104ac78-c2fa-470c-afe3-acd45008c2bf","name":"Add Child Category","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Super Glue\",\r\n  \"attribute_group_ids\": [\r\n    20684357\r\n  ],\r\n  \"buckets\": [\r\n    \"ASSET\",\r\n    \"PRODUCT\"\r\n  ],\r\n  \"private\": false\r\n}\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/categories/:category_id/children","host":["https://api.catsy.com/v4"],"path":["categories",":category_id","children"],"variable":[{"key":"category_id","value":"4000670562","description":"Internal Category ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:01:14 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=17MgON5iYw8GBJqSCzZ7evpgX2YNU1EghcqRlxtpQ%2FU4nT1nEZU5cyZ7x%2B6adKQDn7SpzwTxq525UHiRn4oI7xGtfJ1E9fvA%2FIAr%2B41GDBnuZopJz9hu9AweH2boW%2FI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360c63e291f1ffe-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2230&min_rtt=2149&rtt_var=864&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1319&delivery_rate=673801&cwnd=131&unsent_bytes=0&cid=cf3a5c656cd04c12&ts=863&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4000791849,\n    \"parent_id\": 4000670562,\n    \"level\": 2,\n    \"hierarchy\": \"Tools > Super Glue\",\n    \"seq_order\": 15,\n    \"create_user_id\": 4018007130,\n    \"create_date\": 1745614873613,\n    \"create_user_name\": \"Catsy Administrator\",\n    \"update_user_id\": 4018007130,\n    \"update_date\": 1745614873613,\n    \"update_user_name\": \"Catsy Administrator\",\n    \"name\": \"Super Glue\"\n}"}],"_postman_id":"efcbb674-5e0c-4ebe-9724-93602659673f"},{"name":"Category Tree","id":"2e358125-1636-495f-849e-1dad5b9e8a7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/categories/tree","description":"<h3 id=\"return-category-tree\">Return Category Tree</h3>\n<p>This endpoint retrieves the category tree in a JSON format.</p>\n<p>The response contains multiple key-value pairs, where each key is a category ID and the corresponding value is an object containing various properties such as ID, level, hierarchy, sequence order, buckets, create and update details, name, and more.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["categories","tree"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e358125-1636-495f-849e-1dad5b9e8a7c"}],"id":"b33e6160-d4a1-4b0d-8a4d-5c49db0c4012","_postman_id":"b33e6160-d4a1-4b0d-8a4d-5c49db0c4012","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}}},{"name":"Attribute Groups","item":[{"name":"Attribute Groups","id":"85401d59-d2fb-4542-9690-82ff6356db91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attribute_groups","description":"<h3 id=\"return-all-attribute-groups\">Return All Attribute Groups</h3>\n<p>This endpoint retrieves a list of attribute groups.</p>\n<h4 id=\"response\">Response</h4>\n<p>The response will be a JSON array containing objects with the following properties:</p>\n<ul>\n<li><p><code>id</code> (number): The unique identifier for the attribute group.</p>\n</li>\n<li><p><code>name</code> (string): The name of the attribute group.</p>\n</li>\n<li><p><code>key</code> (string): The key of the attribute group.</p>\n</li>\n<li><p><code>create_user_id</code> (number): The user ID of the creator.</p>\n</li>\n<li><p><code>create_user_name</code> (string): The name of the creator.</p>\n</li>\n<li><p><code>create_date</code> (number): The timestamp of the creation date.</p>\n</li>\n<li><p><code>update_user_id</code> (number): The user ID of the last updater.</p>\n</li>\n<li><p><code>update_user_name</code> (string): The name of the last updater.</p>\n</li>\n<li><p><code>update_date</code> (number): The timestamp of the last update date.</p>\n</li>\n<li><p><code>add_to_new_products</code> (boolean): Indicates if the attribute group should be added to new products.</p>\n</li>\n<li><p><code>core</code> (boolean): Indicates if the attribute group is a core attribute group.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attribute_groups"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>Include full attribute definitions in the response.</p>\n","type":"text/plain"},"key":"include_attributes","value":null},{"disabled":true,"description":{"content":"<p>Return only attribute IDs instead of full objects.</p>\n","type":"text/plain"},"key":"attribute_ids_only","value":null},{"disabled":true,"description":{"content":"<p>Include attribute group info specific to channels.</p>\n","type":"text/plain"},"key":"include_channel_attribute_group","value":null},{"disabled":true,"description":{"content":"<p>Filter results by entity type(s), such as ASSET, CATEGORY, etc.</p>\n","type":"text/plain"},"key":"bucket","value":"PRODUCT"}],"variable":[]}},"response":[{"id":"441b43a8-4f14-4f58-b94f-39113a9266eb","name":"Attribute Groups","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/attribute_groups","host":["https://api.catsy.com/v4"],"path":["attribute_groups"],"query":[{"key":"include_attributes","value":null,"description":"Include full attribute definitions in the response.","disabled":true},{"key":"attribute_ids_only","value":null,"description":"Return only attribute IDs instead of full objects.","disabled":true},{"key":"include_channel_attribute_group","value":null,"description":"Include attribute group info specific to channels.","disabled":true},{"key":"bucket","value":"PRODUCT","description":"Filter results by entity type(s), such as ASSET, CATEGORY, etc.","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:11:07 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=BMitOsf%2B6%2F3ZWYVms4SOISTTBxKg%2BKgMk0rZ4A0XAsJ42DaXXBXulb4CPGyDliJ1efzTw2f%2BuTXDZ%2Bft92o%2B9rvkD2rlnWUnSxn9VrcrzmVxFD6XOIIZFfQY4acEDGI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360d4bc7c0dc957-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1945&min_rtt=1894&rtt_var=747&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1101&delivery_rate=764519&cwnd=250&unsent_bytes=0&cid=1571b7296ac62c5b&ts=177&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 20586220,\n        \"name\": \"Core Attributes\",\n        \"key\": \"core\",\n        \"create_user_id\": 4018007130,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"create_date\": 1611153367919,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1740495979141,\n        \"add_to_new_products\": true,\n        \"core\": true\n    },\n    {\n        \"id\": 20586221,\n        \"name\": \"Digital Assets\",\n        \"key\": \"digital_assets\",\n        \"create_user_id\": 4018007130,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"create_date\": 1611153367919,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1732576463231,\n        \"add_to_new_products\": true\n    },\n    {\n        \"id\": 20586222,\n        \"name\": \"Marketing\",\n        \"key\": \"marketing\",\n        \"create_user_id\": 4018007130,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"create_date\": 1611153367919,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1744399784653,\n        \"add_to_new_products\": true\n    },\n    {\n        \"id\": 21211559,\n        \"name\": \"Pricing\",\n        \"key\": \"pricing\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1704977148453,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1717079295277,\n        \"add_to_new_products\": true\n    },\n    {\n        \"id\": 20586223,\n        \"name\": \"Logistics\",\n        \"key\": \"logistics\",\n        \"create_user_id\": 4018007130,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"create_date\": 1611153367919,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1712961006014,\n        \"add_to_new_products\": true\n    },\n    {\n        \"id\": 20586224,\n        \"name\": \"Compliance\",\n        \"key\": \"specifications\",\n        \"create_user_id\": 4018007130,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"create_date\": 1611153367919,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1741624577727\n    },\n    {\n        \"id\": 20613739,\n        \"name\": \"Power Tools\",\n        \"key\": \"power_tools\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1614004022510,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1726238384113,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20626041,\n        \"name\": \"Commercial LED\",\n        \"key\": \"led_lights\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1617148268051,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20626040,\n        \"name\": \"Tools\",\n        \"key\": \"tools\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1617147726187,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20684357,\n        \"name\": \"Multipin\",\n        \"key\": \"multipin\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1626881245317,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172\n    },\n    {\n        \"id\": 20694484,\n        \"name\": \"Compressors\",\n        \"key\": \"recicompressors\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1627927995371,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1740422448772,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20676503,\n        \"name\": \"Combustion Air Systems\",\n        \"key\": \"combustion_air_systems\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1626273638268,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1715710440744\n    },\n    {\n        \"id\": 20690336,\n        \"name\": \"Side Tables\",\n        \"key\": \"side_tables\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1627401984679,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172\n    },\n    {\n        \"id\": 20698081,\n        \"name\": \"Enhanced Brand Content - A\",\n        \"key\": \"enhanced_brand_content_amazon\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1628593113196,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172\n    },\n    {\n        \"id\": 20735799,\n        \"name\": \"Pliers\",\n        \"key\": \"pliers\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1633440817162,\n        \"update_user_id\": 4018014823,\n        \"update_user_name\": \"Jarod Waters\",\n        \"update_date\": 1741880935822,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20735800,\n        \"name\": \"Metal Snips\",\n        \"key\": \"metal_snips\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1633440840118,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20734461,\n        \"name\": \"Trowels\",\n        \"key\": \"trowel\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1632947103530,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20743096,\n        \"name\": \"Water Lines\",\n        \"key\": \"water_lines\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1635334941411,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20743099,\n        \"name\": \"Grills  Registers\",\n        \"key\": \"grills_registers\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1635336139544,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20816227,\n        \"name\": \"Sprinklers\",\n        \"key\": \"sprinklers\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1644333444789,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20822163,\n        \"name\": \"Pull Down Faucets\",\n        \"key\": \"pull_down_faucets\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1645652887289,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20864518,\n        \"name\": \"Valances\",\n        \"key\": \"valances\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1649849548657,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20882678,\n        \"name\": \"Switches\",\n        \"key\": \"switches\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1651781311672,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20925309,\n        \"name\": \"Lookup Entities\",\n        \"key\": \"lookup_entities\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1658931274492,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172\n    },\n    {\n        \"id\": 20926101,\n        \"name\": \"Angles\",\n        \"key\": \"angles\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1659527696959,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20934502,\n        \"name\": \"Safety Vests\",\n        \"key\": \"safety_vests\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1660482044451,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1736795757805,\n        \"product_type\": true\n    },\n    {\n        \"id\": 20957478,\n        \"name\": \"Encrypted Drives\",\n        \"key\": \"encrypted_drives\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1665586123333,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21076511,\n        \"name\": \"Printer Filament\",\n        \"key\": \"printer_filament\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1683747997835,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21086965,\n        \"name\": \"Step Drill Bits\",\n        \"key\": \"step_drill_bits\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1684758126574,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21086962,\n        \"name\": \"Drill Reamers\",\n        \"key\": \"drill_reamers\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1684757733271,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1738004584043,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21086955,\n        \"name\": \"High-Speed Drill Bits\",\n        \"key\": \"highspeed_drill_bits\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1684756453676,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1704977177172,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21238792,\n        \"name\": \"Table Saws\",\n        \"key\": \"table_saws\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1708990301470,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1723739129812,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21285946,\n        \"name\": \"Nail Guns\",\n        \"key\": \"nail_guns\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1716209891110,\n        \"update_user_id\": 4018014823,\n        \"update_user_name\": \"Jarod Waters\",\n        \"update_date\": 1741879853376,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21285953,\n        \"name\": \"Fasteners\",\n        \"key\": \"fasteners\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1716212617296,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1716212868288,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21222374,\n        \"name\": \"Asset Gallery\",\n        \"key\": \"asset_gallery\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1707752072522,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1707752172065,\n        \"add_to_new_products\": true\n    },\n    {\n        \"id\": 21268739,\n        \"name\": \"Safety Vests\",\n        \"key\": \"fa0_safety_vests\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1711485199265,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1711485202106,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21322258,\n        \"name\": \"Table Saws\",\n        \"key\": \"wkx_table_saws\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1723738959979,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1723738961956,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21342426,\n        \"name\": \"Adhesives & Coatings\",\n        \"key\": \"eff_adhesives_coatings\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1728076082546,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1728076082546,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21348697,\n        \"name\": \"LED Bullbs\",\n        \"key\": \"led_bullbs\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1729691804079,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1736792751249,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21378335,\n        \"name\": \"Pneumatic Nail Guns\",\n        \"key\": \"ixs_pneumatic_nail_guns\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1737468586331,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1737468586331,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21390639,\n        \"name\": \"Chemicals\",\n        \"key\": \"chemicals\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1739279730528,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1739302776005,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21504420,\n        \"name\": \"Shipping\",\n        \"key\": \"shipping\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1742411721775,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1742414493087\n    },\n    {\n        \"id\": 21504421,\n        \"name\": \"Speakers\",\n        \"key\": \"speakers\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1742411869690,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1742415640452,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21504422,\n        \"name\": \"Radios\",\n        \"key\": \"radios\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1742411869690,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1742411869690\n    },\n    {\n        \"id\": 21508310,\n        \"name\": \"Microphone\",\n        \"key\": \"s0e_microphone\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1742678394017,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1742678751333,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21508436,\n        \"name\": \"Wall Caps\",\n        \"key\": \"wall_caps\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1742828062683,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1742828185207,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21511558,\n        \"name\": \"Deep Research\",\n        \"key\": \"deep_research\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1743254099882,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1743263883219,\n        \"add_to_new_products\": true\n    },\n    {\n        \"id\": 21536874,\n        \"name\": \"b2bindustrialpreliminarydemo804 Shopify Attributes\",\n        \"key\": \"b2bindustrialpreliminarydemo804_shopify\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528632,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528632\n    },\n    {\n        \"id\": 21536895,\n        \"name\": \"b2bindustrialpreliminarydemo804 Shopify Inbound Metafields\",\n        \"key\": \"b2bindustrialpreliminarydemo804_shopify_inbound_metafields\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1745430542182,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1745430542182\n    },\n    {\n        \"id\": 21536896,\n        \"name\": \"Shopify Option Attributes\",\n        \"key\": \"shopify_options\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1745430548524,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1745430548524\n    }\n]"}],"_postman_id":"85401d59-d2fb-4542-9690-82ff6356db91"},{"name":"All Channels","id":"3bb2ea37-d328-40ba-bc94-458c22ca9f80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/channels","description":"<h3 id=\"get-channel-details\">Get Channel Details</h3>\n<p>This endpoint retrieves channel details based on the provided parameters.</p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<ul>\n<li><p><code>id</code> (optional): The ID of the channel.</p>\n</li>\n<li><p><code>channel_key</code> (optional): The key of the channel.</p>\n</li>\n<li><p><code>collection_id</code> (optional): The ID of the collection associated with the channel.</p>\n</li>\n<li><p><code>attribute_group_id</code> (optional): The ID of the attribute group.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["channels"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>Internal Channel ID</p>\n","type":"text/plain"},"key":"id","value":null},{"disabled":true,"description":{"content":"<p>Channel Key</p>\n","type":"text/plain"},"key":"channel_key","value":null},{"disabled":true,"description":{"content":"<p>Internal Collection ID to return</p>\n","type":"text/plain"},"key":"collection_id","value":null},{"disabled":true,"description":{"content":"<p>Internal Attibute Group ID to return</p>\n","type":"text/plain"},"key":"attribute_group_id","value":null}],"variable":[]}},"response":[{"id":"e0138128-5555-43ba-b721-a73275defbe2","name":"All Channels","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/channels","host":["https://api.catsy.com/v4"],"path":["channels"],"query":[{"key":"id","value":null,"description":"Internal Channel ID","disabled":true},{"key":"channel_key","value":null,"description":"Channel Key","disabled":true},{"key":"collection_id","value":null,"description":"Internal Collection ID to return","disabled":true},{"key":"attribute_group_id","value":null,"description":"Internal Attibute Group ID to return","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:55:38 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=Tf0UHDty27rnKRvBU3GKPGr28MGe5VMy0CCvBkjIAqnAd5A3MhnpTVzGKAq8vQPzSlNSATJmUkuFB37Xf0fuGHPKLFUhzKjRVeOP4fZBWNjAj0Iqj4Z9xReq9cZo6iE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936115f22a92e5c3-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2674&min_rtt=1995&rtt_var=1233&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1093&delivery_rate=725814&cwnd=250&unsent_bytes=0&cid=70230e3eb2d331e3&ts=179&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 14736118,\n        \"name\": \"Small Distributor Export\",\n        \"filename\": null,\n        \"prefix\": \"twql\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004680743,\n            \"number\": \"4004680743\",\n            \"name\": \"Small Distributor Export\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1741288210519,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1741288210519,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1741288211975\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1741288181398/Small-Distributor-Template.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1741288181398/_final_template/Small-Distributor-Template_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1741288181398/_final_template/Small-Distributor-Template_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Details\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Hero Image\",\n                    \"Name\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Qty\",\n                    \"Master Pack Desc\",\n                    \"Material\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Width\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Hero Image\",\n                    \"Name\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Qty\",\n                    \"Master Pack Desc\",\n                    \"Material\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Width\"\n                ],\n                \"picklist_attributes_count\": 1,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 26,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 26\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21402921,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1741288211643,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1745587330238,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735890,\n        \"name\": \"CSV EAV\",\n        \"filename\": null,\n        \"prefix\": \"sabv\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004679801,\n            \"number\": \"4004679801\",\n            \"name\": \"CSV EAV\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1732135646562,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1732135646562,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1732135647689\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": [],\n            \"template_report\": {\n                \"attribute_list\": [],\n                \"missing_dictionary_attributes\": [],\n                \"picklist_attributes_count\": null,\n                \"conditionally_required_attributes_count\": null,\n                \"recommended_attributes_count\": null,\n                \"scanned_column_count\": null,\n                \"measurement_attributes_count\": null,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 0\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620267,\n            \"name\": \"CSV EAV\",\n            \"url\": \"https://s3.us-west-2.amazonaws.com/catsy.101/_channels/_logos/csv-eav.png\",\n            \"icon\": null,\n            \"key\": \"CSV_EAV\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"csv\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": 2513123,\n        \"asset_transfer_integration_id\": 2513123,\n        \"attribute_group_id\": 21361698,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1732135647068,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1745535645860,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14736387,\n        \"name\": \"Export 1\",\n        \"filename\": null,\n        \"prefix\": \"zlgi\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004681279,\n            \"number\": \"4004681279\",\n            \"name\": \"Export 1\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1744203215431,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1744203215431,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": 3,\n            \"required_attributes_missing_source\": 59,\n            \"optional_attributes_missing_data\": 0,\n            \"optional_attributes_missing_source\": 0,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": 0,\n            \"total_attributes\": 62,\n            \"completeness\": 2.58,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1744205157181\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1744203155079/MSC-Acme-Empty.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1744203155079/_final_template/MSC-Acme-Empty_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1744203155079/_final_template/MSC-Acme-Empty_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Supplier Information\",\n                    \"attribute_name_row\": 3,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 4,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"VENDOR NAME\",\n                    \"VENDOR NUMBER\",\n                    \"VENDOR ITEM NUMBER\",\n                    \"MANUFACTURER ADDITIONAL PART NUMBER TYPE\",\n                    \"MANUFACTURER ADDITIONAL PART NUMBER\",\n                    \"BRAND  NAME\",\n                    \"TRADE NAME\",\n                    \"LONG DESCRIPTION OF THE ITEM\",\n                    \"CATEGORY THE ITEM FITS INTO\",\n                    \"Performance Classification\",\n                    \"Replacing MSC Item #\",\n                    \"Replacing Vendor Item #\",\n                    \"Buy Minimum Quantity\",\n                    \"Buy UOM\",\n                    \"Buy Standard Pack\",\n                    \"Buy Standard Pack Quantity\",\n                    \"Buy Break Pack Not Allowed\",\n                    \"Base Cost\",\n                    \"Discount 1\",\n                    \"Discount 2\",\n                    \"Net Cost\",\n                    \"Mfg. List Price\",\n                    \"Sell Minimum Quantity\",\n                    \"MSC Sell UOM\",\n                    \"Each Quantity\",\n                    \"Order Quantity Modifier\",\n                    \"Barcode Type\",\n                    \"Barcode Value\",\n                    \"Country 1\",\n                    \"Country 2\",\n                    \"Country 3\",\n                    \"Stocking Category\",\n                    \"Direct-ship lead-time\",\n                    \"Is there a direct-ship minimum?\",\n                    \"LTL Only\",\n                    \"LTL Free Freight\",\n                    \"LTL Quantity\",\n                    \"Shipping Methods\",\n                    \"MSDS Required\",\n                    \"Depth (Inches)\",\n                    \"Width (Inches)\",\n                    \"Height (Inches)\",\n                    \"Weight Per Unit (lb)\",\n                    \"Weight Per Buy Pack (lb)\",\n                    \"Item Message Warning\",\n                    \"Item Message Warning Title\",\n                    \"Approval Description\",\n                    \"Hexavalent Chromium Free\",\n                    \"MSC Sell Price\",\n                    \"MSC Item # QIA to be graduated\",\n                    \"NII Planned Visibility\",\n                    \"NII Classification\",\n                    \"Major/Minor Code\",\n                    \"SF Plan #\",\n                    \"Order Container Volume\",\n                    \"Order Container Volume Unit\",\n                    \"Transactional UOM\",\n                    \"Sub Trans Quantity\",\n                    \"Sub Trans UOM\",\n                    \"Alternate Quantity\",\n                    \"Len\",\n                    \"Taxonomy Name/End Node\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"VENDOR NAME\",\n                    \"VENDOR NUMBER\",\n                    \"VENDOR ITEM NUMBER\",\n                    \"MANUFACTURER ADDITIONAL PART NUMBER TYPE\",\n                    \"MANUFACTURER ADDITIONAL PART NUMBER\",\n                    \"BRAND  NAME\",\n                    \"TRADE NAME\",\n                    \"LONG DESCRIPTION OF THE ITEM\",\n                    \"CATEGORY THE ITEM FITS INTO\",\n                    \"Performance Classification\",\n                    \"Replacing MSC Item #\",\n                    \"Replacing Vendor Item #\",\n                    \"Buy Minimum Quantity\",\n                    \"Buy UOM\",\n                    \"Buy Standard Pack\",\n                    \"Buy Standard Pack Quantity\",\n                    \"Buy Break Pack Not Allowed\",\n                    \"Base Cost\",\n                    \"Discount 1\",\n                    \"Discount 2\",\n                    \"Net Cost\",\n                    \"Mfg. List Price\",\n                    \"Sell Minimum Quantity\",\n                    \"MSC Sell UOM\",\n                    \"Each Quantity\",\n                    \"Order Quantity Modifier\",\n                    \"Barcode Type\",\n                    \"Barcode Value\",\n                    \"Country 1\",\n                    \"Country 2\",\n                    \"Country 3\",\n                    \"Stocking Category\",\n                    \"Direct-ship lead-time\",\n                    \"Is there a direct-ship minimum?\",\n                    \"LTL Only\",\n                    \"LTL Free Freight\",\n                    \"LTL Quantity\",\n                    \"Shipping Methods\",\n                    \"MSDS Required\",\n                    \"Depth (Inches)\",\n                    \"Width (Inches)\",\n                    \"Height (Inches)\",\n                    \"Weight Per Unit (lb)\",\n                    \"Weight Per Buy Pack (lb)\",\n                    \"Item Message Warning\",\n                    \"Item Message Warning Title\",\n                    \"Approval Description\",\n                    \"Hexavalent Chromium Free\",\n                    \"MSC Sell Price\",\n                    \"MSC Item # QIA to be graduated\",\n                    \"NII Planned Visibility\",\n                    \"NII Classification\",\n                    \"Major/Minor Code\",\n                    \"SF Plan #\",\n                    \"Order Container Volume\",\n                    \"Order Container Volume Unit\",\n                    \"Transactional UOM\",\n                    \"Sub Trans Quantity\",\n                    \"Sub Trans UOM\",\n                    \"Alternate Quantity\",\n                    \"Len\",\n                    \"Taxonomy Name/End Node\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 62,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 62\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21524472,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1744203217337,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1744205157182,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14733604,\n        \"name\": \"B2B Industrial Preliminary Demo\",\n        \"filename\": null,\n        \"prefix\": \"rgzv\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004674198,\n            \"number\": \"4004674198\",\n            \"name\": \"B2B Industrial Preliminary Demo\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1684751798142,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1686090017815,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": 3,\n            \"required_attributes_missing_source\": 0,\n            \"optional_attributes_missing_data\": 18,\n            \"optional_attributes_missing_source\": 45,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": 0,\n            \"total_attributes\": 66,\n            \"completeness\": 22.67,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1739294789724\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620165,\n            \"name\": \"Shopify\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/shopify.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/shopify.png\",\n            \"key\": \"SHOPIFY\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": true\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 129,\n                \"name\": \"shopify\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/shopify_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": 2512281,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21086649,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": true,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": \"https://b2b-industrial-preliminary-demo-804.myshopify.com/admin/products?order=updated_at desc\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1684751798516,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1744147851075,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14736274,\n        \"name\": \"Export for Distributor\",\n        \"filename\": null,\n        \"prefix\": \"ekmh\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004681078,\n            \"number\": \"4004681078\",\n            \"name\": \"Export for Distributor\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1741967282504,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1742044313408,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1741967284085\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1741967237892/Small-Distributor-Template.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1741967237892/_final_template/Small-Distributor-Template_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1741967237892/_final_template/Small-Distributor-Template_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Info\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Hero Image\",\n                    \"Name\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Qty\",\n                    \"Master Pack Desc\",\n                    \"Material\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Width\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Hero Image\",\n                    \"Name\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Qty\",\n                    \"Master Pack Desc\",\n                    \"Material\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Width\"\n                ],\n                \"picklist_attributes_count\": 1,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 26,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 26\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21503012,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1741967283699,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1742044312537,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14736268,\n        \"name\": \"Distributor Export File\",\n        \"filename\": null,\n        \"prefix\": \"jfby\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004681072,\n            \"number\": \"4004681072\",\n            \"name\": \"Distributor Export File\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1741956358106,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1741956358106,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1741956359634\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1741956280180/Small-Distributor-Template.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1741956280180/_final_template/Small-Distributor-Template_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1741956280180/_final_template/Small-Distributor-Template_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Info\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Hero Image\",\n                    \"Name\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Qty\",\n                    \"Master Pack Desc\",\n                    \"Material\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Width\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Hero Image\",\n                    \"Name\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Qty\",\n                    \"Master Pack Desc\",\n                    \"Material\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Width\"\n                ],\n                \"picklist_attributes_count\": 1,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 26,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 26\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21502667,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1741956359388,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1741956359388,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14736265,\n        \"name\": \"BigCommerce 804 3-15-25\",\n        \"filename\": null,\n        \"prefix\": \"dozl\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004681032,\n            \"number\": \"4004681032\",\n            \"name\": \"BigCommerce 804 3-15-25\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1741887340619,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1741887340619,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1741887341229\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": [],\n            \"template_report\": {\n                \"attribute_list\": [],\n                \"missing_dictionary_attributes\": [],\n                \"picklist_attributes_count\": null,\n                \"conditionally_required_attributes_count\": null,\n                \"recommended_attributes_count\": null,\n                \"scanned_column_count\": null,\n                \"measurement_attributes_count\": null,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 0\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620185,\n            \"name\": \"BigCommerce\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/bigcommerce.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/bigcommerce.png\",\n            \"key\": \"BIGCOMMERCE\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": true\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 24,\n                \"name\": \"bigcommerce\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/bigcommerce_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": 2513079,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21502306,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 24,\n            \"name\": \"bigcommerce\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/bigcommerce_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": \"https://store-58mrogzxzp.mybigcommerce.com/manage/dashboard\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1741887340979,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1741887340979,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14736257,\n        \"name\": \"BigCommerce\",\n        \"filename\": null,\n        \"prefix\": \"gthu\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004681020,\n            \"number\": \"4004681020\",\n            \"name\": \"BigCommerce\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1741865005550,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1741865005550,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1741865006409\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": [],\n            \"template_report\": {\n                \"attribute_list\": [],\n                \"missing_dictionary_attributes\": [],\n                \"picklist_attributes_count\": null,\n                \"conditionally_required_attributes_count\": null,\n                \"recommended_attributes_count\": null,\n                \"scanned_column_count\": null,\n                \"measurement_attributes_count\": null,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 0\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620185,\n            \"name\": \"BigCommerce\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/bigcommerce.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/bigcommerce.png\",\n            \"key\": \"BIGCOMMERCE\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": true\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 24,\n                \"name\": \"bigcommerce\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/bigcommerce_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": 2513075,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21501713,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 24,\n            \"name\": \"bigcommerce\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/bigcommerce_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": \"https://store-58mrogzxzp.mybigcommerce.com/manage/dashboard\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1741865006133,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1741865006133,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14736119,\n        \"name\": \"Export for Customer\",\n        \"filename\": null,\n        \"prefix\": \"hcdd\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004680746,\n            \"number\": \"4004680746\",\n            \"name\": \"Export for Customer\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1741292274369,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1741292274369,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1741292275617\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1741292231426/Small-Distributor-Template.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1741292231426/_final_template/Small-Distributor-Template_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1741292231426/_final_template/Small-Distributor-Template_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Info\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Hero Image\",\n                    \"Name\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Qty\",\n                    \"Master Pack Desc\",\n                    \"Material\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Width\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Hero Image\",\n                    \"Name\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Qty\",\n                    \"Master Pack Desc\",\n                    \"Material\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Width\"\n                ],\n                \"picklist_attributes_count\": 1,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 26,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 26\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21402948,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1741292275371,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1741292275371,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14736036,\n        \"name\": \"Macola Export\",\n        \"filename\": null,\n        \"prefix\": \"sohd\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004680318,\n            \"number\": \"4004680318\",\n            \"name\": \"Macola Export\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1738084698225,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1740768001635,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1738084699779\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1738084644934/ClassB Demo.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1738084644934/_final_template/ClassB Demo_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1738084644934/_final_template/ClassB Demo_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Products\",\n                    \"attribute_name_row\": 3,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 4,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Mfg Product Number\",\n                    \"UPC\",\n                    \"Step ID\",\n                    \"Alt Product Number\",\n                    \"Brand Type\",\n                    \"LINEBUY_ID\",\n                    \"Oracle_Item_Class_Ref Classification Reference\",\n                    \"Product Number / SKU\",\n                    \"Mfg/Supplier Name & ID\",\n                    \"Product Short Description\",\n                    \"Item Class\",\n                    \"x\",\n                    \"Sku Image File Name\",\n                    \"Sku Image Notes\",\n                    \"Vendor Logo\",\n                    \"Vendor Brand Logo\",\n                    \"Brand Names\",\n                    \"Specification File\",\n                    \"Installation Instructions File\",\n                    \"Use and Care File\",\n                    \"Parts Breakdown File\",\n                    \"x\",\n                    \"Lifestyle Image File Name\",\n                    \"Back View Image File Name\",\n                    \"Bottom View  Image File Name\",\n                    \"Left View Image File Name\",\n                    \"Right View Image File Name\",\n                    \"Top View  Image File Name\",\n                    \"Warranty File Name\",\n                    \"Energy Guide File Name\",\n                    \"Lighting Facts Asset File Name\",\n                    \"Submittals Asset File Name\",\n                    \"CAD Drawings File Name\",\n                    \"Video Asset Reference ID\",\n                    \"x\",\n                    \"Required Accessory\",\n                    \"Optional Accessory\",\n                    \"Includes\",\n                    \"Spare Part Product Reference\",\n                    \"x\",\n                    \"ADA Compliant\",\n                    \"AMP\",\n                    \"Application\",\n                    \"Automatic Shut-Off\",\n                    \"Battery Type\",\n                    \"Brand / Model Compatibility\",\n                    \"Cable or Wire Type\",\n                    \"Clothing Size\",\n                    \"Coating\",\n                    \"Color/Finish\",\n                    \"Cord Length\",\n                    \"Depth\",\n                    \"Diameter\",\n                    \"Disposable\",\n                    \"End Connection 1\",\n                    \"End Connection 2\",\n                    \"Energy Star Compliant\",\n                    \"Fitting Size 1\",\n                    \"Gauge\",\n                    \"Gender\",\n                    \"Glove Size\",\n                    \"Glove Type\",\n                    \"Height\",\n                    \"Indoor / Outdoor\",\n                    \"Installation Type\",\n                    \"Length\",\n                    \"Light Bulb Shape Code\",\n                    \"Bulb Type\",\n                    \"Material\",\n                    \"Material Type\",\n                    \"Maximum Temperature\",\n                    \"Number of Pieces\",\n                    \"Origin\",\n                    \"Package Quantity\",\n                    \"Phase\",\n                    \"Power Source\",\n                    \"Maximum Pressure\",\n                    \"Product Type\",\n                    \"Reusable\",\n                    \"Schedule/Class\",\n                    \"Size\",\n                    \"Smart Home Enabled\",\n                    \"ANSI Specifications\",\n                    \"ASME Specifications\",\n                    \"ASSE Standards\",\n                    \"ASTM Specifications\",\n                    \"AWWA Specifications\",\n                    \"BAA Compliant\",\n                    \"CARB/OTC/LEED Compliant\",\n                    \"CE Approved\",\n                    \"CSA Certified\",\n                    \"EPA Compliant\",\n                    \"ETL Listed\",\n                    \"FM Approved\",\n                    \"GSA Approved\",\n                    \"IAPMO Listed\",\n                    \"ISO Specifications\",\n                    \"MA Approved\",\n                    \"MSS Specifications\",\n                    \"NEMA Specifications\",\n                    \"NIOSH Specifications\",\n                    \"NSF Specifications\",\n                    \"NSF Certified\",\n                    \"OSHA Specifications\",\n                    \"SCAQMD Compliant\",\n                    \"UL Listed\",\n                    \"Collection\",\n                    \"Temperature Range\",\n                    \"Temperature Rating\",\n                    \"Thickness\",\n                    \"Tool Type\",\n                    \"Volts\",\n                    \"Watts\",\n                    \"Weight\",\n                    \"Width\",\n                    \"Wire Gauge\",\n                    \"x\",\n                    \"Features & Benefits 01\",\n                    \"Features & Benefits 02\",\n                    \"Features & Benefits 03\",\n                    \"Features & Benefits 04\",\n                    \"Features & Benefits 05\",\n                    \"Features & Benefits 06\",\n                    \"Features & Benefits 07\",\n                    \"Features & Benefits 08\",\n                    \"Features & Benefits 09\",\n                    \"Features & Benefits 10\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Mfg Product Number\",\n                    \"UPC\",\n                    \"Step ID\",\n                    \"Alt Product Number\",\n                    \"Brand Type\",\n                    \"LINEBUY_ID\",\n                    \"Oracle_Item_Class_Ref Classification Reference\",\n                    \"Product Number / SKU\",\n                    \"Mfg/Supplier Name & ID\",\n                    \"Product Short Description\",\n                    \"Item Class\",\n                    \"x\",\n                    \"Sku Image File Name\",\n                    \"Sku Image Notes\",\n                    \"Vendor Logo\",\n                    \"Vendor Brand Logo\",\n                    \"Brand Names\",\n                    \"Specification File\",\n                    \"Installation Instructions File\",\n                    \"Use and Care File\",\n                    \"Parts Breakdown File\",\n                    \"x\",\n                    \"Lifestyle Image File Name\",\n                    \"Back View Image File Name\",\n                    \"Bottom View  Image File Name\",\n                    \"Left View Image File Name\",\n                    \"Right View Image File Name\",\n                    \"Top View  Image File Name\",\n                    \"Warranty File Name\",\n                    \"Energy Guide File Name\",\n                    \"Lighting Facts Asset File Name\",\n                    \"Submittals Asset File Name\",\n                    \"CAD Drawings File Name\",\n                    \"Video Asset Reference ID\",\n                    \"x\",\n                    \"Required Accessory\",\n                    \"Optional Accessory\",\n                    \"Includes\",\n                    \"Spare Part Product Reference\",\n                    \"x\",\n                    \"ADA Compliant\",\n                    \"AMP\",\n                    \"Application\",\n                    \"Automatic Shut-Off\",\n                    \"Battery Type\",\n                    \"Brand / Model Compatibility\",\n                    \"Cable or Wire Type\",\n                    \"Clothing Size\",\n                    \"Coating\",\n                    \"Color/Finish\",\n                    \"Cord Length\",\n                    \"Depth\",\n                    \"Diameter\",\n                    \"Disposable\",\n                    \"End Connection 1\",\n                    \"End Connection 2\",\n                    \"Energy Star Compliant\",\n                    \"Fitting Size 1\",\n                    \"Gauge\",\n                    \"Gender\",\n                    \"Glove Size\",\n                    \"Glove Type\",\n                    \"Height\",\n                    \"Indoor / Outdoor\",\n                    \"Installation Type\",\n                    \"Length\",\n                    \"Light Bulb Shape Code\",\n                    \"Bulb Type\",\n                    \"Material\",\n                    \"Material Type\",\n                    \"Maximum Temperature\",\n                    \"Number of Pieces\",\n                    \"Origin\",\n                    \"Package Quantity\",\n                    \"Phase\",\n                    \"Power Source\",\n                    \"Maximum Pressure\",\n                    \"Product Type\",\n                    \"Reusable\",\n                    \"Schedule/Class\",\n                    \"Size\",\n                    \"Smart Home Enabled\",\n                    \"ANSI Specifications\",\n                    \"ASME Specifications\",\n                    \"ASSE Standards\",\n                    \"ASTM Specifications\",\n                    \"AWWA Specifications\",\n                    \"BAA Compliant\",\n                    \"CARB/OTC/LEED Compliant\",\n                    \"CE Approved\",\n                    \"CSA Certified\",\n                    \"EPA Compliant\",\n                    \"ETL Listed\",\n                    \"FM Approved\",\n                    \"GSA Approved\",\n                    \"IAPMO Listed\",\n                    \"ISO Specifications\",\n                    \"MA Approved\",\n                    \"MSS Specifications\",\n                    \"NEMA Specifications\",\n                    \"NIOSH Specifications\",\n                    \"NSF Specifications\",\n                    \"NSF Certified\",\n                    \"OSHA Specifications\",\n                    \"SCAQMD Compliant\",\n                    \"UL Listed\",\n                    \"Collection\",\n                    \"Temperature Range\",\n                    \"Temperature Rating\",\n                    \"Thickness\",\n                    \"Tool Type\",\n                    \"Volts\",\n                    \"Watts\",\n                    \"Weight\",\n                    \"Width\",\n                    \"Wire Gauge\",\n                    \"x\",\n                    \"Features & Benefits 01\",\n                    \"Features & Benefits 02\",\n                    \"Features & Benefits 03\",\n                    \"Features & Benefits 04\",\n                    \"Features & Benefits 05\",\n                    \"Features & Benefits 06\",\n                    \"Features & Benefits 07\",\n                    \"Features & Benefits 08\",\n                    \"Features & Benefits 09\",\n                    \"Features & Benefits 10\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 127,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 127\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21386698,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1738084699470,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1740768001062,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14736035,\n        \"name\": \"AB\",\n        \"filename\": null,\n        \"prefix\": \"hdox\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004680317,\n            \"number\": \"4004680317\",\n            \"name\": \"AB\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1738083598991,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1738083598991,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1738083601303\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1738083546982/ClassB Demo.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1738083546982/_final_template/ClassB Demo_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1738083546982/_final_template/ClassB Demo_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Products\",\n                    \"attribute_name_row\": 3,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 4,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Mfg Product Number\",\n                    \"UPC\",\n                    \"Step ID\",\n                    \"Alt Product Number\",\n                    \"Brand Type\",\n                    \"LINEBUY_ID\",\n                    \"Oracle_Item_Class_Ref Classification Reference\",\n                    \"Product Number / SKU\",\n                    \"Mfg/Supplier Name & ID\",\n                    \"Product Short Description\",\n                    \"Item Class\",\n                    \"x\",\n                    \"Sku Image File Name\",\n                    \"Sku Image Notes\",\n                    \"Vendor Logo\",\n                    \"Vendor Brand Logo\",\n                    \"Brand Names\",\n                    \"Specification File\",\n                    \"Installation Instructions File\",\n                    \"Use and Care File\",\n                    \"Parts Breakdown File\",\n                    \"x\",\n                    \"Lifestyle Image File Name\",\n                    \"Back View Image File Name\",\n                    \"Bottom View  Image File Name\",\n                    \"Left View Image File Name\",\n                    \"Right View Image File Name\",\n                    \"Top View  Image File Name\",\n                    \"Warranty File Name\",\n                    \"Energy Guide File Name\",\n                    \"Lighting Facts Asset File Name\",\n                    \"Submittals Asset File Name\",\n                    \"CAD Drawings File Name\",\n                    \"Video Asset Reference ID\",\n                    \"x\",\n                    \"Required Accessory\",\n                    \"Optional Accessory\",\n                    \"Includes\",\n                    \"Spare Part Product Reference\",\n                    \"x\",\n                    \"ADA Compliant\",\n                    \"AMP\",\n                    \"Application\",\n                    \"Automatic Shut-Off\",\n                    \"Battery Type\",\n                    \"Brand / Model Compatibility\",\n                    \"Cable or Wire Type\",\n                    \"Clothing Size\",\n                    \"Coating\",\n                    \"Color/Finish\",\n                    \"Cord Length\",\n                    \"Depth\",\n                    \"Diameter\",\n                    \"Disposable\",\n                    \"End Connection 1\",\n                    \"End Connection 2\",\n                    \"Energy Star Compliant\",\n                    \"Fitting Size 1\",\n                    \"Gauge\",\n                    \"Gender\",\n                    \"Glove Size\",\n                    \"Glove Type\",\n                    \"Height\",\n                    \"Indoor / Outdoor\",\n                    \"Installation Type\",\n                    \"Length\",\n                    \"Light Bulb Shape Code\",\n                    \"Bulb Type\",\n                    \"Material\",\n                    \"Material Type\",\n                    \"Maximum Temperature\",\n                    \"Number of Pieces\",\n                    \"Origin\",\n                    \"Package Quantity\",\n                    \"Phase\",\n                    \"Power Source\",\n                    \"Maximum Pressure\",\n                    \"Product Type\",\n                    \"Reusable\",\n                    \"Schedule/Class\",\n                    \"Size\",\n                    \"Smart Home Enabled\",\n                    \"ANSI Specifications\",\n                    \"ASME Specifications\",\n                    \"ASSE Standards\",\n                    \"ASTM Specifications\",\n                    \"AWWA Specifications\",\n                    \"BAA Compliant\",\n                    \"CARB/OTC/LEED Compliant\",\n                    \"CE Approved\",\n                    \"CSA Certified\",\n                    \"EPA Compliant\",\n                    \"ETL Listed\",\n                    \"FM Approved\",\n                    \"GSA Approved\",\n                    \"IAPMO Listed\",\n                    \"ISO Specifications\",\n                    \"MA Approved\",\n                    \"MSS Specifications\",\n                    \"NEMA Specifications\",\n                    \"NIOSH Specifications\",\n                    \"NSF Specifications\",\n                    \"NSF Certified\",\n                    \"OSHA Specifications\",\n                    \"SCAQMD Compliant\",\n                    \"UL Listed\",\n                    \"Collection\",\n                    \"Temperature Range\",\n                    \"Temperature Rating\",\n                    \"Thickness\",\n                    \"Tool Type\",\n                    \"Volts\",\n                    \"Watts\",\n                    \"Weight\",\n                    \"Width\",\n                    \"Wire Gauge\",\n                    \"x\",\n                    \"Features & Benefits 01\",\n                    \"Features & Benefits 02\",\n                    \"Features & Benefits 03\",\n                    \"Features & Benefits 04\",\n                    \"Features & Benefits 05\",\n                    \"Features & Benefits 06\",\n                    \"Features & Benefits 07\",\n                    \"Features & Benefits 08\",\n                    \"Features & Benefits 09\",\n                    \"Features & Benefits 10\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Mfg Product Number\",\n                    \"UPC\",\n                    \"Step ID\",\n                    \"Alt Product Number\",\n                    \"Brand Type\",\n                    \"LINEBUY_ID\",\n                    \"Oracle_Item_Class_Ref Classification Reference\",\n                    \"Product Number / SKU\",\n                    \"Mfg/Supplier Name & ID\",\n                    \"Product Short Description\",\n                    \"Item Class\",\n                    \"x\",\n                    \"Sku Image File Name\",\n                    \"Sku Image Notes\",\n                    \"Vendor Logo\",\n                    \"Vendor Brand Logo\",\n                    \"Brand Names\",\n                    \"Specification File\",\n                    \"Installation Instructions File\",\n                    \"Use and Care File\",\n                    \"Parts Breakdown File\",\n                    \"x\",\n                    \"Lifestyle Image File Name\",\n                    \"Back View Image File Name\",\n                    \"Bottom View  Image File Name\",\n                    \"Left View Image File Name\",\n                    \"Right View Image File Name\",\n                    \"Top View  Image File Name\",\n                    \"Warranty File Name\",\n                    \"Energy Guide File Name\",\n                    \"Lighting Facts Asset File Name\",\n                    \"Submittals Asset File Name\",\n                    \"CAD Drawings File Name\",\n                    \"Video Asset Reference ID\",\n                    \"x\",\n                    \"Required Accessory\",\n                    \"Optional Accessory\",\n                    \"Includes\",\n                    \"Spare Part Product Reference\",\n                    \"x\",\n                    \"ADA Compliant\",\n                    \"AMP\",\n                    \"Application\",\n                    \"Automatic Shut-Off\",\n                    \"Battery Type\",\n                    \"Brand / Model Compatibility\",\n                    \"Cable or Wire Type\",\n                    \"Clothing Size\",\n                    \"Coating\",\n                    \"Color/Finish\",\n                    \"Cord Length\",\n                    \"Depth\",\n                    \"Diameter\",\n                    \"Disposable\",\n                    \"End Connection 1\",\n                    \"End Connection 2\",\n                    \"Energy Star Compliant\",\n                    \"Fitting Size 1\",\n                    \"Gauge\",\n                    \"Gender\",\n                    \"Glove Size\",\n                    \"Glove Type\",\n                    \"Height\",\n                    \"Indoor / Outdoor\",\n                    \"Installation Type\",\n                    \"Length\",\n                    \"Light Bulb Shape Code\",\n                    \"Bulb Type\",\n                    \"Material\",\n                    \"Material Type\",\n                    \"Maximum Temperature\",\n                    \"Number of Pieces\",\n                    \"Origin\",\n                    \"Package Quantity\",\n                    \"Phase\",\n                    \"Power Source\",\n                    \"Maximum Pressure\",\n                    \"Product Type\",\n                    \"Reusable\",\n                    \"Schedule/Class\",\n                    \"Size\",\n                    \"Smart Home Enabled\",\n                    \"ANSI Specifications\",\n                    \"ASME Specifications\",\n                    \"ASSE Standards\",\n                    \"ASTM Specifications\",\n                    \"AWWA Specifications\",\n                    \"BAA Compliant\",\n                    \"CARB/OTC/LEED Compliant\",\n                    \"CE Approved\",\n                    \"CSA Certified\",\n                    \"EPA Compliant\",\n                    \"ETL Listed\",\n                    \"FM Approved\",\n                    \"GSA Approved\",\n                    \"IAPMO Listed\",\n                    \"ISO Specifications\",\n                    \"MA Approved\",\n                    \"MSS Specifications\",\n                    \"NEMA Specifications\",\n                    \"NIOSH Specifications\",\n                    \"NSF Specifications\",\n                    \"NSF Certified\",\n                    \"OSHA Specifications\",\n                    \"SCAQMD Compliant\",\n                    \"UL Listed\",\n                    \"Collection\",\n                    \"Temperature Range\",\n                    \"Temperature Rating\",\n                    \"Thickness\",\n                    \"Tool Type\",\n                    \"Volts\",\n                    \"Watts\",\n                    \"Weight\",\n                    \"Width\",\n                    \"Wire Gauge\",\n                    \"x\",\n                    \"Features & Benefits 01\",\n                    \"Features & Benefits 02\",\n                    \"Features & Benefits 03\",\n                    \"Features & Benefits 04\",\n                    \"Features & Benefits 05\",\n                    \"Features & Benefits 06\",\n                    \"Features & Benefits 07\",\n                    \"Features & Benefits 08\",\n                    \"Features & Benefits 09\",\n                    \"Features & Benefits 10\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 127,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 127\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21386570,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1738083600987,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1738083600987,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735984,\n        \"name\": \"New Dis Export\",\n        \"filename\": null,\n        \"prefix\": \"slud\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004680221,\n            \"number\": \"4004680221\",\n            \"name\": \"New Dis Export\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1736783691560,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1736783691560,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1736783693042\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1736783627172/New-Distrobutors.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1736783627172/_final_template/New-Distrobutors_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1736783627172/_final_template/New-Distrobutors_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Sheet1\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Item ID\",\n                    \"Title\",\n                    \"Long Title\",\n                    \"Weight\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Item ID\",\n                    \"Title\",\n                    \"Long Title\",\n                    \"Weight\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 4,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 4\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21375824,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1736783692800,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1738006331630,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735987,\n        \"name\": \"New Dealer 2025 Items\",\n        \"filename\": null,\n        \"prefix\": \"muko\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004680228,\n            \"number\": \"4004680228\",\n            \"name\": \"New Dealer 2025 Items\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1736969198955,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1736969198955,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1736969200536\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1736969143441/New Dis Export.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1736969143441/_final_template/New Dis Export_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1736969143441/_final_template/New Dis Export_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Item Info\",\n                    \"attribute_name_row\": 4,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": 3,\n                    \"body_row\": 5,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Item ID\",\n                    \"Title\",\n                    \"Long Title\",\n                    \"Weight\",\n                    \"Length\",\n                    \"Height\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Item ID\",\n                    \"Title\",\n                    \"Long Title\",\n                    \"Weight\",\n                    \"Length\",\n                    \"Height\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 6,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 6\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21375949,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1736969200277,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1736969200277,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735966,\n        \"name\": \"CSV EAV 3\",\n        \"filename\": null,\n        \"prefix\": \"erhw\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004680188,\n            \"number\": \"4004680188\",\n            \"name\": \"CSV EAV 3\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1735653128154,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1736339240230,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1735653129505\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": [],\n            \"template_report\": {\n                \"attribute_list\": [],\n                \"missing_dictionary_attributes\": [],\n                \"picklist_attributes_count\": null,\n                \"conditionally_required_attributes_count\": null,\n                \"recommended_attributes_count\": null,\n                \"scanned_column_count\": null,\n                \"measurement_attributes_count\": null,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 0\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620267,\n            \"name\": \"CSV EAV\",\n            \"url\": \"https://s3.us-west-2.amazonaws.com/catsy.101/_channels/_logos/csv-eav.png\",\n            \"icon\": null,\n            \"key\": \"CSV_EAV\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"csv\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21374192,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1735653129047,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1736339238279,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735923,\n        \"name\": \"B2B\",\n        \"filename\": null,\n        \"prefix\": \"trwr\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004679922,\n            \"number\": \"4004679922\",\n            \"name\": \"B2B\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1733414844580,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1733414844580,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1733414845501\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": [],\n            \"template_report\": {\n                \"attribute_list\": [],\n                \"missing_dictionary_attributes\": [],\n                \"picklist_attributes_count\": null,\n                \"conditionally_required_attributes_count\": null,\n                \"recommended_attributes_count\": null,\n                \"scanned_column_count\": null,\n                \"measurement_attributes_count\": null,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 0\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620185,\n            \"name\": \"BigCommerce\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/bigcommerce.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/bigcommerce.png\",\n            \"key\": \"BIGCOMMERCE\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": true\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 24,\n                \"name\": \"bigcommerce\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/bigcommerce_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": 2513015,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21368408,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 24,\n            \"name\": \"bigcommerce\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/bigcommerce_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": \"https://store-58mrogzxzp.mybigcommerce.com/manage/dashboard\",\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1733414845013,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1733414845013,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735588,\n        \"name\": \"Export 3\",\n        \"filename\": null,\n        \"prefix\": \"vtcy\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004679224,\n            \"number\": \"4004679224\",\n            \"name\": \"Export 3\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1725457477082,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1725457477082,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1725457478096\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1725457438949/Channel-Template-Variation-1.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1725457438949/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1725457438949/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Data\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 2,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Category\",\n                    \"Brand\",\n                    \"Barcode\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"UOM\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Category\",\n                    \"Brand\",\n                    \"Barcode\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"UOM\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 15,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 15\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21327259,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": {\n            \"id\": 48,\n            \"name\": \"excel\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1725457478063,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1725457478063,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735148,\n        \"name\": \"NPI - April 2024\",\n        \"filename\": null,\n        \"prefix\": \"vcxj\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004677747,\n            \"number\": \"4004677747\",\n            \"name\": \"NPI - April 2024\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1712353868885,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1713815730267,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": 50,\n            \"required_attributes_missing_source\": 55,\n            \"optional_attributes_missing_data\": 0,\n            \"optional_attributes_missing_source\": 3,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": 0,\n            \"total_attributes\": 108,\n            \"completeness\": 0.48,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1725387385564\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/grainger_npi/NPI_Template_Examples_3-05-2020.xlsm\",\n            \"draft_template_object_key\": \"_templates/grainger_npi/_final_template/NPI_Template_Examples_3-05-2020_draft_template.xlsm\",\n            \"final_template_object_key\": \"_templates/grainger_npi/_final_template/NPI_Template_Examples_3-05-2020_draft_template.xlsm\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Transactional Node for Standar\",\n                    \"attribute_name_row\": 10,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 11,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Product ID\",\n                    \"* <ID>\",\n                    \"Product ID\",\n                    \"<Name>\",\n                    \"GUS Sr. CPS\",\n                    \"NPI Batch Number\",\n                    \"Manufacturer Name\",\n                    \"Mfr Model No\",\n                    \"Supplier Stock No\",\n                    \"Initial Supplier Description (500 characters max)\",\n                    \"Do you have a UPC?\",\n                    \"UPC\",\n                    \"Brand Name\",\n                    \"Invoice Cost\",\n                    \"Grainger Cost Effective Date\",\n                    \"Parts Available\",\n                    \"National Motor Freight Code\",\n                    \"Order Lead Time (Bus Days)\",\n                    \"UOM Name\",\n                    \"UOM Qty\",\n                    \"Sell Pack Packaging Description\",\n                    \"Sell Pack Length, In Inches\",\n                    \"Sell Pack Width, In Inches\",\n                    \"Sell Pack Height, In Inches\",\n                    \"Sell Pack Weight (Lbs)\",\n                    \"Sell Pack UPC/EAN\",\n                    \"Sell Pack Qty\",\n                    \"Inner Pack Quantity\",\n                    \"Inner Pack Packaging Description\",\n                    \"Inner Pack Length, In Inches\",\n                    \"Inner Pack Width, In Inches\",\n                    \"Inner Pack Height, In Inches\",\n                    \"Inner Pack Weight (Lbs)\",\n                    \"Inner Pack UPC/EAN\",\n                    \"Case Pack Quantity\",\n                    \"Case Pack Packaging Description\",\n                    \"Case Pack Length, In Inches\",\n                    \"Case Pack Width, In Inches\",\n                    \"Case Pack Height, In Inches\",\n                    \"Case Pack Weight (Lbs)\",\n                    \"Case Pack UPC/EAN\",\n                    \"Additional UPC/EANs\",\n                    \"Minimum Order Multiple Quantity\",\n                    \"Country Of Origin\",\n                    \"For Export\",\n                    \"Schedule B or Harmonization Code\",\n                    \"ECCN (Export Commodity Control Number)\",\n                    \"NPI Restricted Countries\",\n                    \"NPI Restricted Country Reason\",\n                    \"Not For Export Reason Code\",\n                    \"NAFTA Country of Origin\",\n                    \"NAFTA Preference Criteria\",\n                    \"NAFTA Producer\",\n                    \"NAFTA Certification Start Date\",\n                    \"NAFTA Certification End Date\",\n                    \"Net Cost Method for NAFTA\",\n                    \"Net Cost Start Date\",\n                    \"Net Cost End Date\",\n                    \"Any Reason Not to Sell\",\n                    \"Product Restrictions - State\",\n                    \"Product Restrictions - County\",\n                    \"Product Restrictions - City\",\n                    \"Certificate of Conformity\",\n                    \"CPSC Certificate of Conformity -Date Coded Product\",\n                    \"Heavy Metal Content Indicator\",\n                    \"Mercury Content Indicator\",\n                    \"Chromium Content Indicator\",\n                    \"Cadmium Content Indicator\",\n                    \"Lead Content Indicator\",\n                    \"Other Heavy Metal Content Indicator\",\n                    \"SDS Indicator\",\n                    \"SDS Document Name\",\n                    \"FIFRA Indicator\",\n                    \"EPA Federal Registration Number\",\n                    \"HMIS Rating\",\n                    \"HMIS Rating for Health\",\n                    \"HMIS Rating for Flammability\",\n                    \"HMIS Rating for Physical Hazard\",\n                    \"HMIS Rating for Personal Protection\",\n                    \"VOC Information\",\n                    \"VOC Level\",\n                    \"VOC Test Method\",\n                    \"VOC Unit of Measure\",\n                    \"Ozone Depleting Compounds\",\n                    \"Restricted Use of Hazardous Substances Directive (RoHS)\",\n                    \"California Prop 65 Cancer\",\n                    \"California Prop 65 Reproductive Harm\",\n                    \"California Prop 65 Warning Short Message Compliancy\",\n                    \"California Prop 65 Cancer Causing Chemical\",\n                    \"California Prop 65 Reproductive Harm Causing Chemical\",\n                    \"California Biodegradable Labeling Compliance\",\n                    \"Hazardous Material Flag\",\n                    \"Special Permits for any mode of Transportation\",\n                    \"Inner Pack Marked and Labeled Correctly\",\n                    \"Inner Pack Shippable\",\n                    \"Outer Pack Marked and Labeled Correctly\",\n                    \"Outer Pack Shippable\",\n                    \"Product A Marine Pollutant\",\n                    \"Domestic DOT Hazardous Class Number 1\",\n                    \"Domestic DOT Hazardous Class Number 2\",\n                    \"Domestic DOT Proper Shipping Name\",\n                    \"Domestic Ground Packing Group\",\n                    \"Domestic Product Limited Quantity for Transportation\",\n                    \"Domestic Shipping Label Required\",\n                    \"Domestic UN (United Nations) or NA (North American) Number 1\",\n                    \"Domestic UN (United Nations) or NA (North American) Number 2\",\n                    \"Product Powered by Fossil Fuel\",\n                    \"Item\"\n                ],\n                \"missing_dictionary_attributes\": [],\n                \"picklist_attributes_count\": 49,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 111,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 108\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620268,\n            \"name\": \"GRAINGER NPI\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/grainger.png\",\n            \"icon\": null,\n            \"key\": \"GRAINGER_NPI\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 10,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 11,\n                \"xlsx_tab_name\": \"Transactional Node for Standar\"\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 73,\n                \"name\": \"grainger\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/grainger_round.svg\"\n            },\n            \"distributor_client_id\": 303\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21272478,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": true\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1712353872807,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1725387385574,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14731636,\n        \"name\": \"Walmart\",\n        \"filename\": null,\n        \"prefix\": \"qktx\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004669015,\n            \"number\": \"4004669015\",\n            \"name\": \"Walmart\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1637586468521,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1637586468521,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": 3,\n            \"required_attributes_missing_source\": 0,\n            \"optional_attributes_missing_data\": 44,\n            \"optional_attributes_missing_source\": 48,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": 0,\n            \"total_attributes\": 95,\n            \"completeness\": 87,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1652900185279\n        },\n        \"default_asset_transformation\": {\n            \"format\": \"jpg\",\n            \"width\": 1500,\n            \"height\": 2000,\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/walmart/1637586387127/Walmart - Roaring Spring item-4.0-marketplace-office-1.0-en-external 2.xlsx\",\n            \"draft_template_object_key\": \"_templates/walmart/1637586387127/_final_template/Walmart - Roaring Spring item-4.0-marketplace-office-1.0-en-external 2_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/walmart/1637586387127/_final_template/Walmart - Roaring Spring item-4.0-marketplace-office-1.0-en-external 2_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Office\",\n                    \"attribute_name_row\": 4,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": 7,\n                    \"body_row\": 6,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Product ID Type\",\n                    \"Product ID\",\n                    \"Product Name\",\n                    \"Brand\",\n                    \"Selling Price\",\n                    \"Shipping Weight (lbs)\",\n                    \"Site Description\",\n                    \"Main Image URL\",\n                    \"Additional Image URL (+)\",\n                    \"Additional Image URL 1 (+)\",\n                    \"California Prop 65 Warning Text\",\n                    \"Small Parts Warning Code (+)\",\n                    \"Composite Wood Certification Code\",\n                    \"Key Features (+)\",\n                    \"Key Features 1 (+)\",\n                    \"Key Features 2 (+)\",\n                    \"Manufacturer\",\n                    \"Manufacturer Part Number\",\n                    \"Model Number\",\n                    \"MSRP\",\n                    \"Count Per Pack\",\n                    \"Total Count\",\n                    \"Number of Pieces\",\n                    \"Color (+)\",\n                    \"Color Category (+)\",\n                    \"Size\",\n                    \"Age Group (+)\",\n                    \"Material (+)\",\n                    \"Paper Size (+)\",\n                    \"Capacity\",\n                    \"Occasion (+)\",\n                    \"Assembled Product Length\",\n                    \"Assembled Product Width\",\n                    \"Assembled Product Height\",\n                    \"Assembled Product Weight\",\n                    \"Lighting Facts Label Image\",\n                    \"Pattern (+)\",\n                    \"Shape\",\n                    \"Finish\",\n                    \"Compatible Devices (+)\",\n                    \"Brightness\",\n                    \"Dexterity\",\n                    \"System of Measurement\",\n                    \"Hole Size\",\n                    \"Year\",\n                    \"Calendar Format\",\n                    \"Calendar Term\",\n                    \"Number of Sheets\",\n                    \"Is Lined\",\n                    \"Envelope Size\",\n                    \"Pen Point Size\",\n                    \"Ink Color (+)\",\n                    \"Pencil Lead Diameter\",\n                    \"Is Refillable\",\n                    \"Is Retractable\",\n                    \"Is Industrial\",\n                    \"Is Antiglare\",\n                    \"Is Magnetic\",\n                    \"Is Tear-Resistant\",\n                    \"Is Powered\",\n                    \"Power Type\",\n                    \"HP Printer Cartridge Number (+)\",\n                    \"Tab Cut\",\n                    \"Tab Color\",\n                    \"Shredder Cut Styles\",\n                    \"Overall Expansion\",\n                    \"Paper Clip Size\",\n                    \"Theme (+)\",\n                    \"Recommended Use (+)\",\n                    \"Brand License (+)\",\n                    \"Warranty Text\",\n                    \"Warranty URL\",\n                    \"Additional Product Attribute Name\",\n                    \"Additional Product Attribute Value\",\n                    \"Variant Group ID\",\n                    \"Variant Attribute Names (+)\",\n                    \"Is Primary Variant\",\n                    \"Swatch Variant Attribute\",\n                    \"Swatch Image URL\",\n                    \"Fulfillment Lag Time\",\n                    \"Floor Price\",\n                    \"PPU Quantity of Units\",\n                    \"PPU Unit of Measure\",\n                    \"Product Tax Code\",\n                    \"Contains Electronic Component?\",\n                    \"Contained Battery Type\",\n                    \"Contains Chemical, Aerosol or Pesticide?\",\n                    \"Multipack Quantity\",\n                    \"Ships in Original Packaging\",\n                    \"Site Start Date\",\n                    \"Site End Date\",\n                    \"Must ship alone?\",\n                    \"Product Id Update\",\n                    \"SKU Update\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Product ID Type\",\n                    \"Product ID\",\n                    \"Product Name\",\n                    \"Selling Price\",\n                    \"Shipping Weight (lbs)\",\n                    \"Site Description\",\n                    \"Main Image URL\",\n                    \"Additional Image URL (+)\",\n                    \"Additional Image URL 1 (+)\",\n                    \"California Prop 65 Warning Text\",\n                    \"Small Parts Warning Code (+)\",\n                    \"Composite Wood Certification Code\",\n                    \"Key Features (+)\",\n                    \"Key Features 1 (+)\",\n                    \"Key Features 2 (+)\",\n                    \"Manufacturer Part Number\",\n                    \"Model Number\",\n                    \"Count Per Pack\",\n                    \"Total Count\",\n                    \"Number of Pieces\",\n                    \"Color (+)\",\n                    \"Color Category (+)\",\n                    \"Age Group (+)\",\n                    \"Material (+)\",\n                    \"Paper Size (+)\",\n                    \"Occasion (+)\",\n                    \"Lighting Facts Label Image\",\n                    \"Pattern (+)\",\n                    \"Compatible Devices (+)\",\n                    \"System of Measurement\",\n                    \"Calendar Format\",\n                    \"Number of Sheets\",\n                    \"Is Lined\",\n                    \"Envelope Size\",\n                    \"Ink Color (+)\",\n                    \"Pencil Lead Diameter\",\n                    \"Is Refillable\",\n                    \"Is Retractable\",\n                    \"Is Industrial\",\n                    \"Is Antiglare\",\n                    \"Is Magnetic\",\n                    \"Is Tear-Resistant\",\n                    \"Is Powered\",\n                    \"Power Type\",\n                    \"HP Printer Cartridge Number (+)\",\n                    \"Tab Cut\",\n                    \"Tab Color\",\n                    \"Shredder Cut Styles\",\n                    \"Paper Clip Size\",\n                    \"Theme (+)\",\n                    \"Recommended Use (+)\",\n                    \"Brand License (+)\",\n                    \"Warranty Text\",\n                    \"Warranty URL\",\n                    \"Additional Product Attribute Name\",\n                    \"Additional Product Attribute Value\",\n                    \"Variant Group ID\",\n                    \"Variant Attribute Names (+)\",\n                    \"Is Primary Variant\",\n                    \"Swatch Variant Attribute\",\n                    \"Swatch Image URL\",\n                    \"Fulfillment Lag Time\",\n                    \"Floor Price\",\n                    \"PPU Quantity of Units\",\n                    \"PPU Unit of Measure\",\n                    \"Product Tax Code\",\n                    \"Contains Electronic Component?\",\n                    \"Contained Battery Type\",\n                    \"Contains Chemical, Aerosol or Pesticide?\",\n                    \"Multipack Quantity\",\n                    \"Ships in Original Packaging\",\n                    \"Site Start Date\",\n                    \"Site End Date\",\n                    \"Must ship alone?\",\n                    \"Product Id Update\",\n                    \"SKU Update\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 95,\n                \"scanned_column_count\": 86,\n                \"measurement_attributes_count\": 9,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 95\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620181,\n            \"name\": \"WALMART\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/walmart.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/walmart.png\",\n            \"key\": \"WALMART\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"format\": \"jpg\",\n                \"width\": 1500,\n                \"height\": 2000,\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 5,\n                \"attribute_key_row\": 6,\n                \"validation_level_row\": 7,\n                \"body_row\": 8,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 151,\n                \"name\": \"walmart\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/walmart_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20760652,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1637586470536,\n        \"update_user_id\": 4018007130,\n        \"update_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1725359472602,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735561,\n        \"name\": \"Export Aug 20\",\n        \"filename\": null,\n        \"prefix\": \"odlq\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004679135,\n            \"number\": \"4004679135\",\n            \"name\": \"Export Aug 20\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1724181492807,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1724181492807,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1724181498129\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1724181455113/Channel-Template-Variation-1.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1724181455113/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1724181455113/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Data\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 2,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Category\",\n                    \"Brand\",\n                    \"Barcode\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"UOM\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Category\",\n                    \"Brand\",\n                    \"Barcode\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"UOM\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 15,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 15\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21324392,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1724181494416,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1724181494416,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735560,\n        \"name\": \"Variation 1\",\n        \"filename\": null,\n        \"prefix\": \"koez\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004679134,\n            \"number\": \"4004679134\",\n            \"name\": \"Variation 1\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1724179740865,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1724179936032,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1724179741518\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1724179652595/Channel-Template-Variation-1.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1724179652595/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1724179652595/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Data\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 2,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Category\",\n                    \"Brand\",\n                    \"Barcode\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"UOM\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Category\",\n                    \"Brand\",\n                    \"Barcode\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"UOM\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 15,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 15\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21324373,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1724179741488,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1724179741488,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735364,\n        \"name\": \"June 25 Export  DIST ABC\",\n        \"filename\": null,\n        \"prefix\": \"xhfs\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004678492,\n            \"number\": \"4004678492\",\n            \"name\": \"June 25 Export  DIST ABC\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1719326124258,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1719326124258,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1719326125516\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1719326043812/Channel-Template-Variation-1.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1719326043812/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1719326043812/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Data\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 2,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Category\",\n                    \"Brand\",\n                    \"Barcode\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"UOM\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Category\",\n                    \"Brand\",\n                    \"Barcode\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"UOM\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 15,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 15\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21299350,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1719326125384,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1719326125384,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735195,\n        \"name\": \"CSV Nightly Export.\",\n        \"filename\": null,\n        \"prefix\": \"ugwt\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004677904,\n            \"number\": \"4004677904\",\n            \"name\": \"CSV Nightly Export.\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1713816478507,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1718319581334,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1713816478616\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620203,\n            \"name\": \"CSV\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/csv.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/csv.png\",\n            \"key\": \"CSV\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"csv\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 40,\n                \"name\": \"csv\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/csv_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21276890,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1713816478595,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1718716472565,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735262,\n        \"name\": \"Nail Guns\",\n        \"filename\": null,\n        \"prefix\": \"eens\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004678160,\n            \"number\": \"4004678160\",\n            \"name\": \"Nail Guns\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1716212951414,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1716212951414,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1716212951552\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": [],\n            \"template_report\": {\n                \"attribute_list\": [],\n                \"missing_dictionary_attributes\": [],\n                \"picklist_attributes_count\": null,\n                \"conditionally_required_attributes_count\": null,\n                \"recommended_attributes_count\": null,\n                \"scanned_column_count\": null,\n                \"measurement_attributes_count\": null,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 0\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620199,\n            \"name\": \"EASYCATALOG\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/easy-catalog.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/easy-catalog.png\",\n            \"key\": \"EASY_CATALOG\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"xml\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": true,\n                \"skip_content_grader\": true,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": null,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1716212951554,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1716212951554,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735223,\n        \"name\": \"Test from CJ\",\n        \"filename\": null,\n        \"prefix\": \"kqys\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004678085,\n            \"number\": \"4004678085\",\n            \"name\": \"Test from CJ\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1715103259991,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1715103259991,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1715103260288\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620264,\n            \"name\": \"ADHQ\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/ad.jpeg\",\n            \"icon\": null,\n            \"key\": \"ADHQ\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"jsonl\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": true,\n                \"skip_content_grader\": true,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": 302\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21280465,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1715103260242,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1715103260242,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735218,\n        \"name\": \"Sample export 1\",\n        \"filename\": null,\n        \"prefix\": \"vonw\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004678074,\n            \"number\": \"4004678074\",\n            \"name\": \"Sample export 1\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1714671049963,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1714671049963,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1714671051356\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1714671003068/Channel-Template-Variation-1.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1714671003068/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1714671003068/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Data\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 2,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"UOM\",\n                    \"Sell Pack Length\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"UOM\",\n                    \"Sell Pack Length\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 8,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 8\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21279578,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1714671051320,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1714671051320,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735194,\n        \"name\": \"Template 1 Example\",\n        \"filename\": null,\n        \"prefix\": \"ueri\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004677903,\n            \"number\": \"4004677903\",\n            \"name\": \"Template 1 Example\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1713816285326,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1713816285326,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1713816286090\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1713816227502/Channel-Template-Variation-1.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1713816227502/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1713816227502/_final_template/Channel-Template-Variation-1_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Product Data\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 2,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"UOM\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"Name\",\n                    \"Long Description\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"UOM\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 7,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 7\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21276880,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1713816286066,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1713816286066,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14735115,\n        \"name\": \"Ad export annual\",\n        \"filename\": null,\n        \"prefix\": \"yboe\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004677654,\n            \"number\": \"4004677654\",\n            \"name\": \"Ad export annual\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1711557944437,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1711557944437,\n            \"update_user_name\": \"Super Admin\",\n            \"query_id\": \"a0b3f54b-60d0-41fc-81ae-447cffb6766a\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1711557944906\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620264,\n            \"name\": \"ADHQ\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/ad.jpeg\",\n            \"icon\": null,\n            \"key\": \"ADHQ\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"jsonl\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": true,\n                \"skip_content_grader\": true,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": 302\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21268943,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1711557944882,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1711557944882,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14734965,\n        \"name\": \"WooCommerce Export\",\n        \"filename\": null,\n        \"prefix\": \"zdsx\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004677342,\n            \"number\": \"4004677342\",\n            \"name\": \"WooCommerce Export\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1709930315140,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1709930315140,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1709930315429\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620180,\n            \"name\": \"WooCommerce\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/woocommerce.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/woocommerce.png\",\n            \"key\": \"WOOCOMMERCE\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"csv\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 159,\n                \"name\": \"woocomerce\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/woocomerce_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21251900,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1709930315335,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1709930315335,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14734938,\n        \"name\": \"dfdfd\",\n        \"filename\": null,\n        \"prefix\": \"krer\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004677269,\n            \"number\": \"4004677269\",\n            \"name\": \"dfdfd\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1709640385371,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1709640385371,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1709640390824\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/grainger_npi/NPI_Template_Examples_3-05-2020.xlsm\",\n            \"draft_template_object_key\": \"_templates/grainger_npi/_final_template/NPI_Template_Examples_3-05-2020_draft_template.xlsm\",\n            \"final_template_object_key\": \"_templates/grainger_npi/_final_template/NPI_Template_Examples_3-05-2020_draft_template.xlsm\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Transactional Node for Standar\",\n                    \"attribute_name_row\": 10,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 11,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Product ID\",\n                    \"* <ID>\",\n                    \"Product ID\",\n                    \"<Name>\",\n                    \"GUS Sr. CPS\",\n                    \"NPI Batch Number\",\n                    \"Manufacturer Name\",\n                    \"Mfr Model No\",\n                    \"Supplier Stock No\",\n                    \"Initial Supplier Description (500 characters max)\",\n                    \"Do you have a UPC?\",\n                    \"UPC\",\n                    \"Brand Name\",\n                    \"Invoice Cost\",\n                    \"Grainger Cost Effective Date\",\n                    \"Parts Available\",\n                    \"National Motor Freight Code\",\n                    \"Order Lead Time (Bus Days)\",\n                    \"UOM Name\",\n                    \"UOM Qty\",\n                    \"Sell Pack Packaging Description\",\n                    \"Sell Pack Length, In Inches\",\n                    \"Sell Pack Width, In Inches\",\n                    \"Sell Pack Height, In Inches\",\n                    \"Sell Pack Weight (Lbs)\",\n                    \"Sell Pack UPC/EAN\",\n                    \"Sell Pack Qty\",\n                    \"Inner Pack Quantity\",\n                    \"Inner Pack Packaging Description\",\n                    \"Inner Pack Length, In Inches\",\n                    \"Inner Pack Width, In Inches\",\n                    \"Inner Pack Height, In Inches\",\n                    \"Inner Pack Weight (Lbs)\",\n                    \"Inner Pack UPC/EAN\",\n                    \"Case Pack Quantity\",\n                    \"Case Pack Packaging Description\",\n                    \"Case Pack Length, In Inches\",\n                    \"Case Pack Width, In Inches\",\n                    \"Case Pack Height, In Inches\",\n                    \"Case Pack Weight (Lbs)\",\n                    \"Case Pack UPC/EAN\",\n                    \"Additional UPC/EANs\",\n                    \"Minimum Order Multiple Quantity\",\n                    \"Country Of Origin\",\n                    \"For Export\",\n                    \"Schedule B or Harmonization Code\",\n                    \"ECCN (Export Commodity Control Number)\",\n                    \"NPI Restricted Countries\",\n                    \"NPI Restricted Country Reason\",\n                    \"Not For Export Reason Code\",\n                    \"NAFTA Country of Origin\",\n                    \"NAFTA Preference Criteria\",\n                    \"NAFTA Producer\",\n                    \"NAFTA Certification Start Date\",\n                    \"NAFTA Certification End Date\",\n                    \"Net Cost Method for NAFTA\",\n                    \"Net Cost Start Date\",\n                    \"Net Cost End Date\",\n                    \"Any Reason Not to Sell\",\n                    \"Product Restrictions - State\",\n                    \"Product Restrictions - County\",\n                    \"Product Restrictions - City\",\n                    \"Certificate of Conformity\",\n                    \"CPSC Certificate of Conformity -Date Coded Product\",\n                    \"Heavy Metal Content Indicator\",\n                    \"Mercury Content Indicator\",\n                    \"Chromium Content Indicator\",\n                    \"Cadmium Content Indicator\",\n                    \"Lead Content Indicator\",\n                    \"Other Heavy Metal Content Indicator\",\n                    \"SDS Indicator\",\n                    \"SDS Document Name\",\n                    \"FIFRA Indicator\",\n                    \"EPA Federal Registration Number\",\n                    \"HMIS Rating\",\n                    \"HMIS Rating for Health\",\n                    \"HMIS Rating for Flammability\",\n                    \"HMIS Rating for Physical Hazard\",\n                    \"HMIS Rating for Personal Protection\",\n                    \"VOC Information\",\n                    \"VOC Level\",\n                    \"VOC Test Method\",\n                    \"VOC Unit of Measure\",\n                    \"Ozone Depleting Compounds\",\n                    \"Restricted Use of Hazardous Substances Directive (RoHS)\",\n                    \"California Prop 65 Cancer\",\n                    \"California Prop 65 Reproductive Harm\",\n                    \"California Prop 65 Warning Short Message Compliancy\",\n                    \"California Prop 65 Cancer Causing Chemical\",\n                    \"California Prop 65 Reproductive Harm Causing Chemical\",\n                    \"California Biodegradable Labeling Compliance\",\n                    \"Hazardous Material Flag\",\n                    \"Special Permits for any mode of Transportation\",\n                    \"Inner Pack Marked and Labeled Correctly\",\n                    \"Inner Pack Shippable\",\n                    \"Outer Pack Marked and Labeled Correctly\",\n                    \"Outer Pack Shippable\",\n                    \"Product A Marine Pollutant\",\n                    \"Domestic DOT Hazardous Class Number 1\",\n                    \"Domestic DOT Hazardous Class Number 2\",\n                    \"Domestic DOT Proper Shipping Name\",\n                    \"Domestic Ground Packing Group\",\n                    \"Domestic Product Limited Quantity for Transportation\",\n                    \"Domestic Shipping Label Required\",\n                    \"Domestic UN (United Nations) or NA (North American) Number 1\",\n                    \"Domestic UN (United Nations) or NA (North American) Number 2\",\n                    \"Product Powered by Fossil Fuel\",\n                    \"Item\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Product ID\",\n                    \"* <ID>\",\n                    \"Product ID\",\n                    \"<Name>\",\n                    \"GUS Sr. CPS\",\n                    \"NPI Batch Number\",\n                    \"Manufacturer Name\",\n                    \"Mfr Model No\",\n                    \"Supplier Stock No\",\n                    \"Initial Supplier Description (500 characters max)\",\n                    \"Do you have a UPC?\",\n                    \"UPC\",\n                    \"Brand Name\",\n                    \"Invoice Cost\",\n                    \"Grainger Cost Effective Date\",\n                    \"Parts Available\",\n                    \"National Motor Freight Code\",\n                    \"Order Lead Time (Bus Days)\",\n                    \"UOM Name\",\n                    \"UOM Qty\",\n                    \"Sell Pack Packaging Description\",\n                    \"Sell Pack Length, In Inches\",\n                    \"Sell Pack Width, In Inches\",\n                    \"Sell Pack Height, In Inches\",\n                    \"Sell Pack Weight (Lbs)\",\n                    \"Sell Pack UPC/EAN\",\n                    \"Sell Pack Qty\",\n                    \"Inner Pack Quantity\",\n                    \"Inner Pack Packaging Description\",\n                    \"Inner Pack Length, In Inches\",\n                    \"Inner Pack Width, In Inches\",\n                    \"Inner Pack Height, In Inches\",\n                    \"Inner Pack Weight (Lbs)\",\n                    \"Inner Pack UPC/EAN\",\n                    \"Case Pack Quantity\",\n                    \"Case Pack Packaging Description\",\n                    \"Case Pack Length, In Inches\",\n                    \"Case Pack Width, In Inches\",\n                    \"Case Pack Height, In Inches\",\n                    \"Case Pack Weight (Lbs)\",\n                    \"Case Pack UPC/EAN\",\n                    \"Additional UPC/EANs\",\n                    \"Minimum Order Multiple Quantity\",\n                    \"Country Of Origin\",\n                    \"For Export\",\n                    \"Schedule B or Harmonization Code\",\n                    \"ECCN (Export Commodity Control Number)\",\n                    \"NPI Restricted Countries\",\n                    \"NPI Restricted Country Reason\",\n                    \"Not For Export Reason Code\",\n                    \"NAFTA Country of Origin\",\n                    \"NAFTA Preference Criteria\",\n                    \"NAFTA Producer\",\n                    \"NAFTA Certification Start Date\",\n                    \"NAFTA Certification End Date\",\n                    \"Net Cost Method for NAFTA\",\n                    \"Net Cost Start Date\",\n                    \"Net Cost End Date\",\n                    \"Any Reason Not to Sell\",\n                    \"Product Restrictions - State\",\n                    \"Product Restrictions - County\",\n                    \"Product Restrictions - City\",\n                    \"Certificate of Conformity\",\n                    \"CPSC Certificate of Conformity -Date Coded Product\",\n                    \"Heavy Metal Content Indicator\",\n                    \"Mercury Content Indicator\",\n                    \"Chromium Content Indicator\",\n                    \"Cadmium Content Indicator\",\n                    \"Lead Content Indicator\",\n                    \"Other Heavy Metal Content Indicator\",\n                    \"SDS Indicator\",\n                    \"SDS Document Name\",\n                    \"FIFRA Indicator\",\n                    \"EPA Federal Registration Number\",\n                    \"HMIS Rating\",\n                    \"HMIS Rating for Health\",\n                    \"HMIS Rating for Flammability\",\n                    \"HMIS Rating for Physical Hazard\",\n                    \"HMIS Rating for Personal Protection\",\n                    \"VOC Information\",\n                    \"VOC Level\",\n                    \"VOC Test Method\",\n                    \"VOC Unit of Measure\",\n                    \"Ozone Depleting Compounds\",\n                    \"Restricted Use of Hazardous Substances Directive (RoHS)\",\n                    \"California Prop 65 Cancer\",\n                    \"California Prop 65 Reproductive Harm\",\n                    \"California Prop 65 Warning Short Message Compliancy\",\n                    \"California Prop 65 Cancer Causing Chemical\",\n                    \"California Prop 65 Reproductive Harm Causing Chemical\",\n                    \"California Biodegradable Labeling Compliance\",\n                    \"Hazardous Material Flag\",\n                    \"Special Permits for any mode of Transportation\",\n                    \"Inner Pack Marked and Labeled Correctly\",\n                    \"Inner Pack Shippable\",\n                    \"Outer Pack Marked and Labeled Correctly\",\n                    \"Outer Pack Shippable\",\n                    \"Product A Marine Pollutant\",\n                    \"Domestic DOT Hazardous Class Number 1\",\n                    \"Domestic DOT Hazardous Class Number 2\",\n                    \"Domestic DOT Proper Shipping Name\",\n                    \"Domestic Ground Packing Group\",\n                    \"Domestic Product Limited Quantity for Transportation\",\n                    \"Domestic Shipping Label Required\",\n                    \"Domestic UN (United Nations) or NA (North American) Number 1\",\n                    \"Domestic UN (United Nations) or NA (North American) Number 2\",\n                    \"Product Powered by Fossil Fuel\",\n                    \"Item\"\n                ],\n                \"picklist_attributes_count\": 49,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 111,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 108\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620268,\n            \"name\": \"GRAINGER NPI\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/grainger.png\",\n            \"icon\": null,\n            \"key\": \"GRAINGER_NPI\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 10,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 11,\n                \"xlsx_tab_name\": \"Transactional Node for Standar\"\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 73,\n                \"name\": \"grainger\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/grainger_round.svg\"\n            },\n            \"distributor_client_id\": 303\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21248254,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1709640390793,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1709640390793,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14734653,\n        \"name\": \"New Products for 2024\",\n        \"filename\": null,\n        \"prefix\": \"dajw\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004676855,\n            \"number\": \"4004676855\",\n            \"name\": \"New Products for 2024\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1706710573449,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1706710573449,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1706710573657\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620264,\n            \"name\": \"ADHQ\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/ad.jpeg\",\n            \"icon\": null,\n            \"key\": \"ADHQ\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"jsonl\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": true,\n                \"skip_content_grader\": true,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": 302\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": null,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1706710573654,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1706710573654,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14734651,\n        \"name\": \"New AD Export\",\n        \"filename\": null,\n        \"prefix\": \"vyvy\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004676853,\n            \"number\": \"4004676853\",\n            \"name\": \"New AD Export\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1706706543690,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1706706543690,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1706706543829\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620264,\n            \"name\": \"ADHQ\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/ad.jpeg\",\n            \"icon\": null,\n            \"key\": \"ADHQ\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"jsonl\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": true,\n                \"skip_content_grader\": true,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": 302\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": null,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1706706543828,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1706706543828,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14734642,\n        \"name\": \"ToolDen Export\",\n        \"filename\": null,\n        \"prefix\": \"yrfa\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004676842,\n            \"number\": \"4004676842\",\n            \"name\": \"ToolDen Export\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1706625136440,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1707466248619,\n            \"update_user_name\": \"Super Admin\",\n            \"query_id\": \"8ba99a70-6f4a-42da-acba-f503641f9c40\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1706625137595\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1706625101089/toolden.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1706625101089/_final_template/toolden_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1706625101089/_final_template/toolden_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Sheet1\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 2,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"short_name\",\n                    \"dealer_item_code\",\n                    \"super extral long desc\",\n                    \"UOM\",\n                    \"Price\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"short_name\",\n                    \"dealer_item_code\",\n                    \"super extral long desc\",\n                    \"UOM\",\n                    \"Price\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 8,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 5\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21215564,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1706625137567,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1706625137567,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730872,\n        \"name\": \"Menards\",\n        \"filename\": null,\n        \"prefix\": \"md15\",\n        \"notification\": {\n            \"email\": \"\",\n            \"webhook\": null\n        },\n        \"collection\": {\n            \"id\": 4004663466,\n            \"number\": \"4004663466\",\n            \"name\": \"Menards\",\n            \"allowed_roles\": [\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1614091974238,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1635333201552,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": 35,\n            \"required_attributes_missing_source\": 0,\n            \"optional_attributes_missing_data\": 60,\n            \"optional_attributes_missing_source\": 2,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": 0,\n            \"total_attributes\": 97,\n            \"completeness\": 52.69,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1701371226274\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/menards/1614091919874/Menards-Use.xlsx\",\n            \"draft_template_object_key\": \"_templates/menards/1614091919874/_final_template/Menards-Use_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/menards/1614091919874/_final_template/Menards-Use_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Sheet1\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 4,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Menard Buyer\",\n                    \"Model #\",\n                    \"Description 1\",\n                    \"Description 2\",\n                    \"Sales Unit Cost\",\n                    \"Manufacturer's Suggested Retail Price\",\n                    \"Minimum Advertised Price\",\n                    \"Sales Unit\",\n                    \"Payment Terms\",\n                    \"Lead Time\",\n                    \"F. O. B\",\n                    \"D. D. P\",\n                    \"Freight Type\",\n                    \"Freight Minimum\",\n                    \"Vendor Ships Via\",\n                    \"Shipping Method\",\n                    \"Import\",\n                    \"Duty Rate\",\n                    \"HTSUS Number\",\n                    \"HTSUS # Description\",\n                    \"Container Quantity\",\n                    \"Container Size\",\n                    \"Truckload Quantity\",\n                    \"Ships in Combination with Other Products\",\n                    \"Product Country of Origin\",\n                    \"MFG. Location\",\n                    \"Product City of Manufacture\",\n                    \"Product State of Manufacture\",\n                    \"Brand Name\",\n                    \"Product Series\",\n                    \"Master Pack UPC\",\n                    \"Retail Pack UPC\",\n                    \"Minimum Shippable Qty of this Product\",\n                    \"Retail Pack Height\",\n                    \"Retail Pack Width\",\n                    \"Retail Pack Depth\",\n                    \"Retail Pack Weight\",\n                    \"Retail Pack Quantity\",\n                    \"Retail Packaging Type\",\n                    \"Inner Pack Height\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Depth\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Quantity\",\n                    \"Inner Packaging Type\",\n                    \"Inner Pack SSCC-14\",\n                    \"Master Pack Height\",\n                    \"Master Pack Width\",\n                    \"Master Pack Depth\",\n                    \"Master Pack Weight\",\n                    \"Master Pack Quantity\",\n                    \"Master Packaging Type\",\n                    \"Master Pack Cubes\",\n                    \"Master Pack SSCC-14\",\n                    \"Slip-Sheet Pack Height\",\n                    \"Slip-Sheet Pack Width\",\n                    \"Slip-Sheet Pack Depth\",\n                    \"Slip-Sheet Pack Weight\",\n                    \"Slip-Sheet Pack Quantity\",\n                    \"Pallet Pack Height\",\n                    \"Pallet Pack Width\",\n                    \"Pallet Pack Depth\",\n                    \"Pallet Pack Weight\",\n                    \"Pallet Layer Quantity\",\n                    \"Pallet Quantity\",\n                    \"Assembled Product Height\",\n                    \"Assembled Product Width\",\n                    \"Assembled Product Depth\",\n                    \"Assembled Product Weight\",\n                    \"Americans with Disabilities Act (ADA) Compliant\",\n                    \"Energy Star Rated\",\n                    \"Heated Van Needed\",\n                    \"Min Temp\",\n                    \"Refrigerated Van Needed\",\n                    \"Max Temp\",\n                    \"Perishable\",\n                    \"Meets ANSI Standards\",\n                    \"American Gas Association (AGA) Compliant\",\n                    \"OSHA Approved\",\n                    \"Prop 65 Item\",\n                    \"Certified Mark Name\",\n                    \"Certified File #\",\n                    \"Product Requires Expiration Date\",\n                    \"Hazard Code Required\",\n                    \"Manufacturer's Warranty\",\n                    \"Product Image\",\n                    \"Packaging Image\",\n                    \"Safety Data Sheet\",\n                    \"Additional Spec. 1\",\n                    \"Additional Spec. 2\",\n                    \"Additional Spec. 3\",\n                    \"Additional Spec. 4\",\n                    \"Additional Spec. 5\",\n                    \"Additional Spec. 6\",\n                    \"Additional Spec. 7\",\n                    \"Additional Spec. 8\",\n                    \"Additional Spec. 9\"\n                ],\n                \"missing_dictionary_attributes\": [],\n                \"picklist_attributes_count\": 26,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 97,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 97\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620176,\n            \"name\": \"Menards\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/menards.png\",\n            \"icon\": null,\n            \"key\": \"MENARDS\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 109,\n                \"name\": \"menards\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/menards_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20613879,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1614091984451,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1706456384837,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14734613,\n        \"name\": \"new print\",\n        \"filename\": null,\n        \"prefix\": \"acft\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004676720,\n            \"number\": \"4004676720\",\n            \"name\": \"new print\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1705067929490,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1705067929490,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1705067929586\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620199,\n            \"name\": \"EASYCATALOG\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/easy-catalog.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/easy-catalog.png\",\n            \"key\": \"EASY_CATALOG\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"xml\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": true,\n                \"skip_content_grader\": true,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": null,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1705067929584,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1705067929584,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14734612,\n        \"name\": \"Fastenal Logistics\",\n        \"filename\": null,\n        \"prefix\": \"ibcf\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004676719,\n            \"number\": \"4004676719\",\n            \"name\": \"Fastenal Logistics\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1705067866872,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1705067866872,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1705067867025\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620159,\n            \"name\": \"ACE\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/ace.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/ace-hardware.png\",\n            \"key\": \"ACE\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21211617,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1705067866994,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1705067866994,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14731637,\n        \"name\": \"Amazon\",\n        \"filename\": null,\n        \"prefix\": \"onan\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004669016,\n            \"number\": \"4004669016\",\n            \"name\": \"Amazon\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1637587477408,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1637587477408,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": 82,\n            \"required_attributes_missing_source\": 43,\n            \"optional_attributes_missing_data\": 0,\n            \"optional_attributes_missing_source\": 0,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": 0,\n            \"total_attributes\": 125,\n            \"completeness\": 37.8,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1701443498154\n        },\n        \"default_asset_transformation\": {\n            \"format\": \"jpg\",\n            \"width\": 1000,\n            \"height\": 1000,\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/amazon/1637587438143/Linea Italia - Amazon Desks_2021-04-27T08-28.xlsm\",\n            \"draft_template_object_key\": \"_templates/amazon/1637587438143/_final_template/Linea Italia - Amazon Desks_2021-04-27T08-28_draft_template.xlsm\",\n            \"final_template_object_key\": \"_templates/amazon/1637587438143/_final_template/Linea Italia - Amazon Desks_2021-04-27T08-28_draft_template.xlsm\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Template-DESK\",\n                    \"attribute_name_row\": 3,\n                    \"attribute_key_row\": 4,\n                    \"validation_level_row\": 5,\n                    \"body_row\": 7,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Vendor Code\",\n                    \"Vendor SKU\",\n                    \"Product Type\",\n                    \"Item Name\",\n                    \"Brand Name\",\n                    \"External Product ID\",\n                    \"External Product ID Type\",\n                    \"Merchant Suggested Asin\",\n                    \"External ID Exemption Reason\",\n                    \"Product Category\",\n                    \"Product Subcategory\",\n                    \"Item Type Keyword\",\n                    \"Item Type Name\",\n                    \"Model Number\",\n                    \"Manufacturer\",\n                    \"Offering Condition Subtype\",\n                    \"List Price\",\n                    \"Cost Price\",\n                    \"Variation Theme Name\",\n                    \"Bullet Point\",\n                    \"Bullet Point\",\n                    \"Bullet Point\",\n                    \"Bullet Point\",\n                    \"Bullet Point\",\n                    \"Generic Keyword\",\n                    \"Special Features\",\n                    \"Special Features\",\n                    \"Special Features\",\n                    \"Special Features\",\n                    \"Special Features\",\n                    \"Style\",\n                    \"Target Gender\",\n                    \"Age Range Description\",\n                    \"Material\",\n                    \"Material\",\n                    \"Material\",\n                    \"Material\",\n                    \"Material\",\n                    \"Outer Material\",\n                    \"Number of Items\",\n                    \"Product Description\",\n                    \"Model Name\",\n                    \"Color\",\n                    \"Size\",\n                    \"Construction Type\",\n                    \"Number of Pieces\",\n                    \"Part Number\",\n                    \"Item Shape\",\n                    \"Theme\",\n                    \"Theme\",\n                    \"Theme\",\n                    \"Theme\",\n                    \"Theme\",\n                    \"Care Instructions\",\n                    \"Care Instructions\",\n                    \"Care Instructions\",\n                    \"Care Instructions\",\n                    \"Care Instructions\",\n                    \"Arm Style\",\n                    \"Frame Material\",\n                    \"Frame Type\",\n                    \"Item Depth\",\n                    \"Is Assembly Required?\",\n                    \"Item Firmness Description\",\n                    \"Door Style\",\n                    \"Number of Doors\",\n                    \"Number of Shelves\",\n                    \"Fill Material\",\n                    \"Fill Material\",\n                    \"Fill Material\",\n                    \"Fill Material\",\n                    \"Fill Material\",\n                    \"Drawer Type\",\n                    \"Number of Drawers\",\n                    \"Assembly Instructions\",\n                    \"Form Factor\",\n                    \"Furniture Finish\",\n                    \"Installation Type\",\n                    \"Mounting Type\",\n                    \"Finish Type\",\n                    \"Base Type\",\n                    \"Release Date\",\n                    \"Product Site Launch Date\",\n                    \"Included Components\",\n                    \"Included Components\",\n                    \"Included Components\",\n                    \"Included Components\",\n                    \"Included Components\",\n                    \"Unit Count\",\n                    \"Unit Count Type\",\n                    \"Recommended Uses For Product\",\n                    \"Recommended Uses For Product\",\n                    \"Recommended Uses For Product\",\n                    \"Recommended Uses For Product\",\n                    \"Recommended Uses For Product\",\n                    \"Is Fragile?\",\n                    \"Back Style\",\n                    \"Base Material\",\n                    \"Seat Height\",\n                    \"Seat Height Unit\",\n                    \"Seat Material\",\n                    \"Seat Width\",\n                    \"Seat Width Unit\",\n                    \"Top Material\",\n                    \"Maximum Weight Recommendation\",\n                    \"Maximum Weight Recommendation Unit\",\n                    \"Country of Origin\",\n                    \"Warranty Description\",\n                    \"Warranty Description\",\n                    \"Warranty Description\",\n                    \"Warranty Description\",\n                    \"Warranty Description\",\n                    \"Safety Warning\",\n                    \"Are batteries required?\",\n                    \"Are batteries included?\",\n                    \"Battery Cell Composition\",\n                    \"Battery Weight\",\n                    \"Battery Weight Unit\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Number of Lithium Metal Cells\",\n                    \"Number of Lithium-ion Cells\",\n                    \"Lithium Battery Energy Content\",\n                    \"Lithium Battery Energy Content Unit\",\n                    \"Lithium Battery Packaging\",\n                    \"Lithium Content\",\n                    \"Lithium Content Unit\",\n                    \"Dangerous Goods Regulations\",\n                    \"Dangerous Goods Regulations\",\n                    \"Dangerous Goods Regulations\",\n                    \"Dangerous Goods Regulations\",\n                    \"Dangerous Goods Regulations\",\n                    \"Hazmat Aspect\",\n                    \"Hazmat\",\n                    \"Safety Data Sheet (SDS or MSDS) URL\",\n                    \"Item Weight\",\n                    \"Item Weight Unit\",\n                    \"GHS Class\",\n                    \"California Proposition 65 Warning Type\",\n                    \"California Proposition 65 Chemical Name(s)\",\n                    \"California Proposition 65 Chemical Name(s)\",\n                    \"California Proposition 65 Chemical Name(s)\",\n                    \"California Proposition 65 Chemical Name(s)\",\n                    \"California Proposition 65 Chemical Name(s)\",\n                    \"Mandatory Cautionary Statement\",\n                    \"Mandatory Cautionary Statement\",\n                    \"Mandatory Cautionary Statement\",\n                    \"Mandatory Cautionary Statement\",\n                    \"Mandatory Cautionary Statement\",\n                    \"Pesticide Marking\",\n                    \"Pesticide Registration Status\",\n                    \"Pesticide Certification Number\",\n                    \"Pesticide Marking\",\n                    \"Pesticide Registration Status\",\n                    \"Pesticide Certification Number\",\n                    \"Pesticide Marking\",\n                    \"Pesticide Registration Status\",\n                    \"Pesticide Certification Number\",\n                    \"Item Length\",\n                    \"Item Length Unit\",\n                    \"Item Width\",\n                    \"Item Width Unit\",\n                    \"Item Height\",\n                    \"Item Height Unit\",\n                    \"Item Package Length\",\n                    \"Package Length Unit\",\n                    \"Item Package Width\",\n                    \"Package Width Unit\",\n                    \"Item Package Height\",\n                    \"Package Height Unit\",\n                    \"Package Weight\",\n                    \"Package Weight Unit\",\n                    \"Items per Inner Pack\",\n                    \"Number of Boxes\",\n                    \"Multiple Box Component ID\",\n                    \"Multiple Box Component Description\",\n                    \"Multiple Box Component ID\",\n                    \"Multiple Box Component Description\",\n                    \"Multiple Box Component ID\",\n                    \"Multiple Box Component Description\",\n                    \"Multiple Box Component ID\",\n                    \"Multiple Box Component Description\",\n                    \"Multiple Box Component ID\",\n                    \"Multiple Box Component Description\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Offering Condition Subtype\",\n                    \"Target Gender\",\n                    \"Age Range Description\",\n                    \"Theme\",\n                    \"Theme\",\n                    \"Theme\",\n                    \"Theme\",\n                    \"Theme\",\n                    \"Care Instructions\",\n                    \"Arm Style\",\n                    \"Frame Type\",\n                    \"Door Style\",\n                    \"Number of Doors\",\n                    \"Assembly Instructions\",\n                    \"Recommended Uses For Product\",\n                    \"Recommended Uses For Product\",\n                    \"Recommended Uses For Product\",\n                    \"Recommended Uses For Product\",\n                    \"Recommended Uses For Product\",\n                    \"Back Style\",\n                    \"Base Material\",\n                    \"Seat Material\",\n                    \"Seat Width\",\n                    \"Seat Width Unit\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Number of Batteries\",\n                    \"Battery Type\",\n                    \"Dangerous Goods Regulations\",\n                    \"Pesticide Marking\",\n                    \"Pesticide Registration Status\",\n                    \"Pesticide Certification Number\",\n                    \"Pesticide Marking\",\n                    \"Pesticide Registration Status\",\n                    \"Pesticide Certification Number\",\n                    \"Pesticide Marking\",\n                    \"Pesticide Registration Status\",\n                    \"Pesticide Certification Number\"\n                ],\n                \"picklist_attributes_count\": 83,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 192,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 192\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620139,\n            \"name\": \"AMAZON\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/amazon.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/amazon.png\",\n            \"key\": \"AMAZON\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"format\": \"jpg\",\n                \"width\": 1000,\n                \"height\": 1000,\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 3,\n                \"attribute_key_row\": 4,\n                \"validation_level_row\": null,\n                \"body_row\": 6,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": \"MARKETPLACES\",\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 6,\n                \"name\": \"amazon\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/amazon_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20760843,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": {\n            \"id\": 5,\n            \"name\": \"amazon\",\n            \"keywords\": null,\n            \"type\": \"RECTANGLE\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/amazon_rectangle.svg\"\n        },\n        \"visual_element_for_icon\": {\n            \"id\": 6,\n            \"name\": \"amazon\",\n            \"keywords\": null,\n            \"type\": \"ROUND\",\n            \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/amazon_round.svg\"\n        },\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1637587479391,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1701443498154,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14734115,\n        \"name\": \"Zoro Tools\",\n        \"filename\": null,\n        \"prefix\": \"andv\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004675363,\n            \"number\": \"4004675363\",\n            \"name\": \"Zoro Tools\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1695843209506,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1695843209506,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1695843211292\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/zoro/1695843161797/Zoro2.xlsx\",\n            \"draft_template_object_key\": \"_templates/zoro/1695843161797/_final_template/Zoro2_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/zoro/1695843161797/_final_template/Zoro2_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Short Form Supplier View\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": 1,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Supplier ID\",\n                    \"Manufacturer Name\",\n                    \"Brand Name\",\n                    \"Sub-brand\",\n                    \"Series Name\",\n                    \"MFR Model No\",\n                    \"Supplier Stock No\",\n                    \"External ID Type?\",\n                    \"External ID #\",\n                    \"Product Type\",\n                    \"Product Title(100 characters max)\",\n                    \"Product Description (2500 Character Max)\",\n                    \"Product Category L1\",\n                    \"Product Category L2\",\n                    \"Product Category L3\",\n                    \"Product Cost\",\n                    \"MSRP\",\n                    \"Manufacturer Warranty\",\n                    \"Country of Origin\",\n                    \"Order Lead Time (Bus Days)\",\n                    \"UOM\",\n                    \"UOM Qty\",\n                    \"Minimum Order Quantity\",\n                    \"Multiple Order Quantity\",\n                    \"Ship Pack Length, In Inches\",\n                    \"Ship Pack Width, In Inches\",\n                    \"Ship Pack Height, In Inches\",\n                    \"Ship Pack Weight (Lbs)\",\n                    \"Any State Restrictions apply?\",\n                    \"Is this item hazardous to ship?\",\n                    \"Does this product have a Safety Data Sheet (SDS)?\",\n                    \"SDS PDF File Name\",\n                    \"FIFRA Indicator\",\n                    \"EPA Federal Registration Number\",\n                    \"Ozone Depleting Compounds\",\n                    \"California Prop 65 Cancer\",\n                    \"California Prop 65 Reproductive Harm\",\n                    \"Are you using the California Prop 65 Warning Short Message?\",\n                    \"California Prop 65 Cancer Causing Chemical\",\n                    \"California Prop 65 Reproductive Harm Causing Chemical\",\n                    \"If you have compostable or biodegradable claims on your product does it meet the requirements for The California Biodegradable Labeling Compliance?\",\n                    \"Does this product contain refrigerant, in a way that requires a refrigerant certificate? \",\n                    \"Does this Product require an Energy Guide Indicator Label?\",\n                    \"Energy Guide Label PDF File Name\",\n                    \"Does this product require a Lighting Facts Indicator Label?\",\n                    \"Lighting Fact Label PDF File Name\",\n                    \"Circle E Indicator\",\n                    \"Does your product require a choking hazard warning?\",\n                    \"Low Lead Compliance Level\",\n                    \"Requires Legislative Efficiency\",\n                    \"Motor Efficiency Group\",\n                    \"Nominal Efficiency Rating\",\n                    \"Primary Image Name\",\n                    \"High Priority New Sku\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Supplier ID\",\n                    \"Manufacturer Name\",\n                    \"Brand Name\",\n                    \"Sub-brand\",\n                    \"Series Name\",\n                    \"MFR Model No\",\n                    \"Supplier Stock No\",\n                    \"External ID Type?\",\n                    \"External ID #\",\n                    \"Product Type\",\n                    \"Product Title(100 characters max)\",\n                    \"Product Description (2500 Character Max)\",\n                    \"Product Category L1\",\n                    \"Product Category L2\",\n                    \"Product Category L3\",\n                    \"Product Cost\",\n                    \"MSRP\",\n                    \"Manufacturer Warranty\",\n                    \"Country of Origin\",\n                    \"Order Lead Time (Bus Days)\",\n                    \"UOM\",\n                    \"UOM Qty\",\n                    \"Minimum Order Quantity\",\n                    \"Multiple Order Quantity\",\n                    \"Ship Pack Length, In Inches\",\n                    \"Ship Pack Width, In Inches\",\n                    \"Ship Pack Height, In Inches\",\n                    \"Ship Pack Weight (Lbs)\",\n                    \"Any State Restrictions apply?\",\n                    \"Is this item hazardous to ship?\",\n                    \"Does this product have a Safety Data Sheet (SDS)?\",\n                    \"SDS PDF File Name\",\n                    \"FIFRA Indicator\",\n                    \"EPA Federal Registration Number\",\n                    \"Ozone Depleting Compounds\",\n                    \"California Prop 65 Cancer\",\n                    \"California Prop 65 Reproductive Harm\",\n                    \"Are you using the California Prop 65 Warning Short Message?\",\n                    \"California Prop 65 Cancer Causing Chemical\",\n                    \"California Prop 65 Reproductive Harm Causing Chemical\",\n                    \"If you have compostable or biodegradable claims on your product does it meet the requirements for The California Biodegradable Labeling Compliance?\",\n                    \"Does this product contain refrigerant, in a way that requires a refrigerant certificate? \",\n                    \"Does this Product require an Energy Guide Indicator Label?\",\n                    \"Energy Guide Label PDF File Name\",\n                    \"Does this product require a Lighting Facts Indicator Label?\",\n                    \"Lighting Fact Label PDF File Name\",\n                    \"Circle E Indicator\",\n                    \"Does your product require a choking hazard warning?\",\n                    \"Low Lead Compliance Level\",\n                    \"Requires Legislative Efficiency\",\n                    \"Motor Efficiency Group\",\n                    \"Nominal Efficiency Rating\",\n                    \"Primary Image Name\",\n                    \"High Priority New Sku\"\n                ],\n                \"picklist_attributes_count\": 27,\n                \"conditionally_required_attributes_count\": 13,\n                \"recommended_attributes_count\": 9,\n                \"scanned_column_count\": 54,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 54\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620205,\n            \"name\": \"ZORO\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/zoro.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/zoro.png\",\n            \"key\": \"ZORO\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 165,\n                \"name\": \"zoro\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/zoro_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21154448,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1695843211266,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1695843211266,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14733761,\n        \"name\": \"Acme Export\",\n        \"filename\": null,\n        \"prefix\": \"hrya\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004674614,\n            \"number\": \"4004674614\",\n            \"name\": \"Acme Export\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1687302772923,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1688764188076,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1687302774172\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/excel/1687302730641/Acme-distrib.xlsx\",\n            \"draft_template_object_key\": \"_templates/excel/1687302730641/_final_template/Acme-distrib_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/excel/1687302730641/_final_template/Acme-distrib_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Sheet1\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 2,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU #\",\n                    \"Name\",\n                    \"Description\",\n                    \"Price\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU #\",\n                    \"Name\",\n                    \"Description\",\n                    \"Price\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 4,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 4\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620164,\n            \"name\": \"EXCEL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/excel.png\",\n            \"key\": \"EXCEL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 48,\n                \"name\": \"excel\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/excel_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21112863,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1687302774130,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1687302774130,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14731501,\n        \"name\": \"Malco Zoro\",\n        \"filename\": null,\n        \"prefix\": \"xhzi\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004668246,\n            \"number\": \"4004668246\",\n            \"name\": \"Malco Zoro\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1633443352691,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1633443352691,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1633443352872\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/zoro/1633443321168/Zoro-Ultratech.xlsx\",\n            \"draft_template_object_key\": \"_templates/zoro/1633443321168/_final_template/Zoro-Ultratech_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/zoro/1633443321168/_final_template/Zoro-Ultratech_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Short Form Supplier View\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Supplier ID\",\n                    \"Manufacturer Name\",\n                    \"Brand Name\",\n                    \"Sub-brand\",\n                    \"Series Name\",\n                    \"MFR Model No\",\n                    \"Supplier Stock No\",\n                    \"External ID Type?\",\n                    \"External ID #\",\n                    \"Product Type\",\n                    \"Product Title(100 characters max)\",\n                    \"Product Description (2500 Character Max)\",\n                    \"Product Category L1\",\n                    \"Product Category L2\",\n                    \"Product Category L3\",\n                    \"Product Cost\",\n                    \"MSRP\",\n                    \"Manufacturer Warranty\",\n                    \"Country of Origin\",\n                    \"Order Lead Time (Bus Days)\",\n                    \"UOM\",\n                    \"UOM Qty\",\n                    \"Minimum Order Quantity\",\n                    \"Multiple Order Quantity\",\n                    \"Ship Pack Length, In Inches\",\n                    \"Ship Pack Width, In Inches\",\n                    \"Ship Pack Height, In Inches\",\n                    \"Ship Pack Weight (Lbs)\",\n                    \"Any State Restrictions apply?\",\n                    \"Is this item hazardous to ship?\",\n                    \"Does this product have a Safety Data Sheet (SDS)?\",\n                    \"SDS PDF File Name\",\n                    \"FIFRA Indicator\",\n                    \"EPA Federal Registration Number\",\n                    \"Ozone Depleting Compounds\",\n                    \"California Prop 65 Cancer\",\n                    \"California Prop 65 Reproductive Harm\",\n                    \"Are you using the California Prop 65 Warning Short Message?\",\n                    \"California Prop 65 Cancer Causing Chemical\",\n                    \"California Prop 65 Reproductive Harm Causing Chemical\",\n                    \"If you have compostable or biodegradable claims on your product does it meet the requirements for The California Biodegradable Labeling Compliance?\",\n                    \"Does this product contain refrigerant, in a way that requires a refrigerant certificate? \",\n                    \"Does this Product require an Energy Guide Indicator Label?\",\n                    \"Energy Guide Label PDF File Name\",\n                    \"Does this product require a Lighting Facts Indicator Label?\",\n                    \"Lighting Fact Label PDF File Name\",\n                    \"Circle E Indicator\",\n                    \"Does your product require a choking hazard warning?\",\n                    \"Low Lead Compliance Level\",\n                    \"Requires Legislative Efficiency\",\n                    \"Motor Efficiency Group\",\n                    \"Nominal Efficiency Rating\",\n                    \"Primary Image Name\",\n                    \"High Priority New Sku\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Supplier ID\",\n                    \"Manufacturer Name\",\n                    \"Brand Name\",\n                    \"Sub-brand\",\n                    \"Series Name\",\n                    \"MFR Model No\",\n                    \"Supplier Stock No\",\n                    \"External ID Type?\",\n                    \"External ID #\",\n                    \"Product Type\",\n                    \"Product Title(100 characters max)\",\n                    \"Product Description (2500 Character Max)\",\n                    \"Product Category L1\",\n                    \"Product Category L2\",\n                    \"Product Category L3\",\n                    \"Product Cost\",\n                    \"MSRP\",\n                    \"Manufacturer Warranty\",\n                    \"Country of Origin\",\n                    \"Order Lead Time (Bus Days)\",\n                    \"UOM\",\n                    \"UOM Qty\",\n                    \"Minimum Order Quantity\",\n                    \"Multiple Order Quantity\",\n                    \"Ship Pack Length, In Inches\",\n                    \"Ship Pack Width, In Inches\",\n                    \"Ship Pack Height, In Inches\",\n                    \"Ship Pack Weight (Lbs)\",\n                    \"Any State Restrictions apply?\",\n                    \"Is this item hazardous to ship?\",\n                    \"Does this product have a Safety Data Sheet (SDS)?\",\n                    \"SDS PDF File Name\",\n                    \"FIFRA Indicator\",\n                    \"EPA Federal Registration Number\",\n                    \"Ozone Depleting Compounds\",\n                    \"California Prop 65 Cancer\",\n                    \"California Prop 65 Reproductive Harm\",\n                    \"Are you using the California Prop 65 Warning Short Message?\",\n                    \"California Prop 65 Cancer Causing Chemical\",\n                    \"California Prop 65 Reproductive Harm Causing Chemical\",\n                    \"If you have compostable or biodegradable claims on your product does it meet the requirements for The California Biodegradable Labeling Compliance?\",\n                    \"Does this product contain refrigerant, in a way that requires a refrigerant certificate? \",\n                    \"Does this Product require an Energy Guide Indicator Label?\",\n                    \"Energy Guide Label PDF File Name\",\n                    \"Does this product require a Lighting Facts Indicator Label?\",\n                    \"Lighting Fact Label PDF File Name\",\n                    \"Circle E Indicator\",\n                    \"Does your product require a choking hazard warning?\",\n                    \"Low Lead Compliance Level\",\n                    \"Requires Legislative Efficiency\",\n                    \"Motor Efficiency Group\",\n                    \"Nominal Efficiency Rating\",\n                    \"Primary Image Name\",\n                    \"High Priority New Sku\"\n                ],\n                \"picklist_attributes_count\": 27,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 54,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 54\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620205,\n            \"name\": \"ZORO\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/zoro.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/zoro.png\",\n            \"key\": \"ZORO\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 165,\n                \"name\": \"zoro\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/zoro_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20735841,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1633443354681,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1685625260002,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14733401,\n        \"name\": \"Power Bi\",\n        \"filename\": null,\n        \"prefix\": \"eoxh\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004673901,\n            \"number\": \"4004673901\",\n            \"name\": \"Power Bi\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1682291948176,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1683291285407,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1682291948509\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620203,\n            \"name\": \"CSV\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/csv.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/csv.png\",\n            \"key\": \"CSV\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"csv\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 40,\n                \"name\": \"csv\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/csv_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 21055537,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1682291948454,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1683238297136,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14732791,\n        \"name\": \"Print Catalog\",\n        \"filename\": null,\n        \"prefix\": \"safj\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004672153,\n            \"number\": \"4004672153\",\n            \"name\": \"Print Catalog\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1667480332674,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1673530081868,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1667480332925\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620257,\n            \"name\": \"InDesign\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/indesign.png\",\n            \"icon\": null,\n            \"key\": \"INDESIGN\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 86,\n                \"name\": \"indesign\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/indesign_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20973109,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1667480332883,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1673530081524,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14732927,\n        \"name\": \"Website\",\n        \"filename\": null,\n        \"prefix\": \"xhuf\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004672791,\n            \"number\": \"4004672791\",\n            \"name\": \"Website\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1671134064141,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1671134064141,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1671134064415\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620260,\n            \"name\": \"JSON 2022\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/json_v2.png\",\n            \"icon\": null,\n            \"key\": \"JSON_V2\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"json\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 97,\n                \"name\": \"json\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/json_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20992575,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1671134064385,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1671134064385,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730945,\n        \"name\": \"Summer 2021 Products\",\n        \"filename\": null,\n        \"prefix\": \"s220\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004663692,\n            \"number\": \"4004663692\",\n            \"name\": \"Summer 2021 Products\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1617189263527,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1617189263527,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": 1,\n            \"required_attributes_missing_source\": 4,\n            \"optional_attributes_missing_data\": 0,\n            \"optional_attributes_missing_source\": 0,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": 33,\n            \"total_attributes\": 38,\n            \"completeness\": 87.5,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1632871573255\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/grainger_er/1617189198675/Grainger.xls\",\n            \"draft_template_object_key\": \"_templates/grainger_er/1617189198675/_final_template/Grainger_draft_template.xls\",\n            \"final_template_object_key\": \"_templates/grainger_er/1617189198675/_final_template/Grainger_draft_template.xls\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Suppliers_ItemDetail\",\n                    \"attribute_name_row\": 3,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 4,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"MaterialNo\",\n                    \"Division?\",\n                    \"MfrModel No\",\n                    \"SupplierStock No\",\n                    \"Short Description\",\n                    \"SeasonalCode\",\n                    \"MaterialGroup\",\n                    \"LeadTime\",\n                    \"UOM\",\n                    \"Inbound Pack Qty\",\n                    \"Master Pack Qty\",\n                    \"Ship Pack Qty\",\n                    \"Sell Pack Qty\",\n                    \"Country of Origin\",\n                    \"Cat410Page\",\n                    \"LaunchDate\",\n                    \"Segment Name\",\n                    \"Category Name\",\n                    \"Certification Date\",\n                    \"Master Pack Desc\",\n                    \"Master Pack Qty-\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master pack weight\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Width\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty2\",\n                    \"Sell Pack Lngth\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Hght\",\n                    \"Sell Pack Wght\",\n                    \"Marking Code\",\n                    \"Column1\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"MaterialNo\",\n                    \"Division?\",\n                    \"MfrModel No\",\n                    \"SupplierStock No\",\n                    \"Short Description\",\n                    \"SeasonalCode\",\n                    \"MaterialGroup\",\n                    \"LeadTime\",\n                    \"UOM\",\n                    \"Inbound Pack Qty\",\n                    \"Master Pack Qty\",\n                    \"Ship Pack Qty\",\n                    \"Sell Pack Qty\",\n                    \"Country of Origin\",\n                    \"Cat410Page\",\n                    \"LaunchDate\",\n                    \"Segment Name\",\n                    \"Category Name\",\n                    \"Certification Date\",\n                    \"Master Pack Desc\",\n                    \"Master Pack Qty-\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master pack weight\",\n                    \"Ship Pack Desc\",\n                    \"Ship Pack Qty\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Width\",\n                    \"Ship Pack Height\",\n                    \"Ship Pack Weight\",\n                    \"Sell Pack Desc\",\n                    \"Sell Pack Qty2\",\n                    \"Sell Pack Lngth\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Hght\",\n                    \"Sell Pack Wght\",\n                    \"Marking Code\",\n                    \"Column1\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 39,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 39\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620221,\n            \"name\": \"GRAINGER-ER\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/grainger.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/grainger.png\",\n            \"key\": \"GRAINGER_ER\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 1,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": 2,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": true,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 73,\n                \"name\": \"grainger\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/grainger_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20626060,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1617189265352,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1667316089801,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14732560,\n        \"name\": \"Salesforce\",\n        \"filename\": null,\n        \"prefix\": \"cqdm\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004671465,\n            \"number\": \"4004671465\",\n            \"name\": \"Salesforce\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1660055657948,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1660055657948,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1660055664146\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620149,\n            \"name\": \"SALESFORCE\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/salesforce.png\",\n            \"icon\": null,\n            \"key\": \"SALESFORCE\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": \"ERP\",\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": true\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 125,\n                \"name\": \"salesforce_commercecloud\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/salesforce_commercecloud_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": 2512104,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20927618,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1660055663263,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1660055663263,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730948,\n        \"name\": \"MSC Safety Category\",\n        \"filename\": null,\n        \"prefix\": \"f8\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004663695,\n            \"number\": \"4004663695\",\n            \"name\": \"MSC Safety Category\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1617195913014,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1620232920509,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1617195913132\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/msc/1617195758722/msc.xlsm\",\n            \"draft_template_object_key\": \"_templates/msc/1617195758722/_final_template/msc_draft_template.xlsm\",\n            \"final_template_object_key\": \"_templates/msc/1617195758722/_final_template/msc_draft_template.xlsm\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Indexable Counterbores\",\n                    \"attribute_name_row\": 10,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 11,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Product ID\",\n                    \"* <Name>\",\n                    \"Working Column\",\n                    \"Supplier Part Number\",\n                    \"Batch ID\",\n                    \"Proposed MSC Item Number\",\n                    \"Supplier Long Description\",\n                    \"Optimized Web Description\",\n                    \"Web Description Sub Header\",\n                    \"Header Description\",\n                    \"Detail Description\",\n                    \"Coating Classification ≡      \",\n                    \"Counterbore Diameter (Inch - 0 Decimals) ≡      \",\n                    \"Counterbore Diameter (Decimal Inch - 4 Decimals)\",\n                    \"Counterbore Diameter (mm - 2 Decimals)\",\n                    \"Cutting Edge Length (Decimal Inch - 4 Decimals)\",\n                    \"Head Length (Inch)\",\n                    \"Head Length (Decimal Inch - 4 Decimals)\",\n                    \"Head Length (mm - 2 Decimals)\",\n                    \"Insert Holding Method ≡      \",\n                    \"Insert Style\",\n                    \"Maximum Counterbore Depth (Decimal Inch - 4 Decimals)\",\n                    \"Maximum Counterbore Depth (mm - 2 Decimals)\",\n                    \"Minimum Cutting Diameter (Inch - 0 Decimals)\",\n                    \"Minimum Cutting Diameter (mm - 2 Decimals)\",\n                    \"Number of Counterbore Inserts\",\n                    \"Number of Flutes\",\n                    \"Overall Length (Inch)\",\n                    \"Overall Length (Decimal Inch - 5 Decimals)\",\n                    \"Overall Length (mm) ( - 0 Decimals)\",\n                    \"Product Service Code ≡      \",\n                    \"Pilot Diameter (Inch - 0 Decimals) ≡      \",\n                    \"Pilot Hole Diameter Compatibility (Inch)\",\n                    \"Pilot Type ≡      \",\n                    \"Screw Diameter Compatibility (Inch - 0 Decimals) ≡      \",\n                    \"Screw Diameter Compatibility (mm)\",\n                    \"Screw Type Compatibility ≡      \",\n                    \"Series\",\n                    \"Set Screw Key ≡      \",\n                    \"Set Screw ≡      \",\n                    \"Shank Diameter (Inch - 0 Decimals)\",\n                    \"Shank Diameter (mm) ( - 0 Decimals)\",\n                    \"Shank Length (Decimal Inch - 4 Decimals)\",\n                    \"Shank Length (mm) ( - 3 Decimals)\",\n                    \"Shank Type\",\n                    \"Through Coolant ≡      \",\n                    \"Tool Holder Material ≡      \",\n                    \"Primary Product Image Reference Asset Reference ID ≡      \",\n                    \"Supplier Id\",\n                    \"Supplier Image File Name\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Product ID\",\n                    \"* <Name>\",\n                    \"Working Column\",\n                    \"Supplier Part Number\",\n                    \"Batch ID\",\n                    \"Proposed MSC Item Number\",\n                    \"Supplier Long Description\",\n                    \"Optimized Web Description\",\n                    \"Web Description Sub Header\",\n                    \"Header Description\",\n                    \"Detail Description\",\n                    \"Coating Classification ≡      \",\n                    \"Counterbore Diameter (Inch - 0 Decimals) ≡      \",\n                    \"Counterbore Diameter (Decimal Inch - 4 Decimals)\",\n                    \"Counterbore Diameter (mm - 2 Decimals)\",\n                    \"Cutting Edge Length (Decimal Inch - 4 Decimals)\",\n                    \"Head Length (Inch)\",\n                    \"Head Length (Decimal Inch - 4 Decimals)\",\n                    \"Head Length (mm - 2 Decimals)\",\n                    \"Insert Holding Method ≡      \",\n                    \"Insert Style\",\n                    \"Maximum Counterbore Depth (Decimal Inch - 4 Decimals)\",\n                    \"Maximum Counterbore Depth (mm - 2 Decimals)\",\n                    \"Minimum Cutting Diameter (Inch - 0 Decimals)\",\n                    \"Minimum Cutting Diameter (mm - 2 Decimals)\",\n                    \"Number of Counterbore Inserts\",\n                    \"Number of Flutes\",\n                    \"Overall Length (Inch)\",\n                    \"Overall Length (Decimal Inch - 5 Decimals)\",\n                    \"Overall Length (mm) ( - 0 Decimals)\",\n                    \"Product Service Code ≡      \",\n                    \"Pilot Diameter (Inch - 0 Decimals) ≡      \",\n                    \"Pilot Hole Diameter Compatibility (Inch)\",\n                    \"Pilot Type ≡      \",\n                    \"Screw Diameter Compatibility (Inch - 0 Decimals) ≡      \",\n                    \"Screw Diameter Compatibility (mm)\",\n                    \"Screw Type Compatibility ≡      \",\n                    \"Series\",\n                    \"Set Screw Key ≡      \",\n                    \"Set Screw ≡      \",\n                    \"Shank Diameter (Inch - 0 Decimals)\",\n                    \"Shank Diameter (mm) ( - 0 Decimals)\",\n                    \"Shank Length (Decimal Inch - 4 Decimals)\",\n                    \"Shank Length (mm) ( - 3 Decimals)\",\n                    \"Shank Type\",\n                    \"Through Coolant ≡      \",\n                    \"Tool Holder Material ≡      \",\n                    \"Primary Product Image Reference Asset Reference ID ≡      \",\n                    \"Supplier Id\",\n                    \"Supplier Image File Name\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 50,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 50\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620182,\n            \"name\": \"MSC\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/msc.png\",\n            \"icon\": null,\n            \"key\": \"MSC\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 111,\n                \"name\": \"msc\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/msc_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20626573,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1617195923231,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1652290715395,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14731746,\n        \"name\": \"Winter 2022\",\n        \"filename\": null,\n        \"prefix\": \"jcfu\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004669203,\n            \"number\": \"4004669203\",\n            \"name\": \"Winter 2022\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1639512256500,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1639512256500,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1639512257645\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/hajoca/1639512214985/Watsco-AllTemp.xlsm\",\n            \"draft_template_object_key\": \"_templates/hajoca/1639512214985/_final_template/Watsco-AllTemp_draft_template.xlsm\",\n            \"final_template_object_key\": \"_templates/hajoca/1639512214985/_final_template/Watsco-AllTemp_draft_template.xlsm\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"NxTrend Item Set Up Format\",\n                    \"attribute_name_row\": 6,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 7,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Line #\",\n                    \"Co#:\",\n                    \"Whse:\",\n                    \"Trend P/N\",\n                    \"True Manufacturer's Item Number\",\n                    \"Trend Description (48 Characters on 2 Lines)\",\n                    \"Desc Line Length\",\n                    \"Supplier's Long Description (No Character Limit)  Supplier Should Provide. Will display Online\",\n                    \"Vendor/Supplier Name\",\n                    \"Vendor Number from Trend (APIV)\",\n                    \"Brand\",\n                    \"UPC Code\",\n                    \"Item Shipping Length (Inches)\",\n                    \"Item Shipping Width (Inches)\",\n                    \"Item Shipping Height (Inches)\",\n                    \"Item Shipping Weight (Lbs)\",\n                    \"Cube\",\n                    \"Country of Origin\",\n                    \"Is Hazmat (Y/N)\",\n                    \"Hazmat #\",\n                    \"Requires Serial No. Y/N\",\n                    \"Price Type - CE Price Code\",\n                    \"P-Line CE Product Line\",\n                    \"P-Cat (CE Category)\",\n                    \"Will This Item Be Set to Stock? (Y/N)  If Yes Then Item Will Be Activated Online\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Line #\",\n                    \"Co#:\",\n                    \"Whse:\",\n                    \"Trend P/N\",\n                    \"True Manufacturer's Item Number\",\n                    \"Trend Description (48 Characters on 2 Lines)\",\n                    \"Desc Line Length\",\n                    \"Supplier's Long Description (No Character Limit)  Supplier Should Provide. Will display Online\",\n                    \"Vendor/Supplier Name\",\n                    \"Vendor Number from Trend (APIV)\",\n                    \"Brand\",\n                    \"UPC Code\",\n                    \"Item Shipping Length (Inches)\",\n                    \"Item Shipping Width (Inches)\",\n                    \"Item Shipping Height (Inches)\",\n                    \"Item Shipping Weight (Lbs)\",\n                    \"Cube\",\n                    \"Country of Origin\",\n                    \"Is Hazmat (Y/N)\",\n                    \"Hazmat #\",\n                    \"Requires Serial No. Y/N\",\n                    \"Price Type - CE Price Code\",\n                    \"P-Line CE Product Line\",\n                    \"P-Cat (CE Category)\",\n                    \"Will This Item Be Set to Stock? (Y/N)  If Yes Then Item Will Be Activated Online\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 25,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 25\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620245,\n            \"name\": \"Hajoca\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/hajoca.png\",\n            \"icon\": null,\n            \"key\": \"HAJOCA\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 76,\n                \"name\": \"hajoca\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/hajoca_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20780521,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1639512257608,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1639512257608,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14731657,\n        \"name\": \"Build Ferguson\",\n        \"filename\": null,\n        \"prefix\": \"xhuq\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004669054,\n            \"number\": \"4004669054\",\n            \"name\": \"Build Ferguson\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1638212283038,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1638212283038,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1638212286403\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/build/1638212215044/Build.xlsx\",\n            \"draft_template_object_key\": \"_templates/build/1638212215044/_final_template/Build_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/build/1638212215044/_final_template/Build_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Main Product Information\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"SKU\",\n                    \"UPC\",\n                    \"FinishName\",\n                    \"TypeofProduct\",\n                    \"MatchingColumn\",\n                    \"Collection\",\n                    \"MainImage\",\n                    \"UPCChecker\",\n                    \"DuplicateChecker\",\n                    \"SpaceChecker\",\n                    \"Owners Manual\",\n                    \"Spec Sheet\",\n                    \"Installation Guide\",\n                    \"Parts List\",\n                    \"Warranty Information\",\n                    \"MSRP/List Price\",\n                    \"MAP (If Applicable)\",\n                    \"Dealer Net (Cost)\",\n                    \"MPN\",\n                    \"LTL\",\n                    \"Shipping Weight\",\n                    \"Prop 65\",\n                    \"CAS Number\",\n                    \"Chemicals Contained\",\n                    \"Title\",\n                    \"Long Description\",\n                    \"Feature 1\",\n                    \"Feature 2\",\n                    \"Feature 3\",\n                    \"Feature 4\",\n                    \"Feature 5\",\n                    \"Feature 6\",\n                    \"Image 1 File Name\",\n                    \"Image 1 Link\",\n                    \"Image 2 File Name\",\n                    \"Image 2 Link\",\n                    \"Image 3 File Name\",\n                    \"Image 3 Link\",\n                    \"Image 4 File Name\",\n                    \"Image 4 Link\",\n                    \"Image 5 File Name\",\n                    \"Image 5 Link\",\n                    \"Accessory 1\",\n                    \"Accessory 2\",\n                    \"Accessory 3\",\n                    \"Accessory 4\",\n                    \"Accessory 5\",\n                    \"Part 1\",\n                    \"Part 2\",\n                    \"Part 3\",\n                    \"Part 4\",\n                    \"Part 5\",\n                    \"Variation 1\",\n                    \"Variation 2\",\n                    \"Variation 3\",\n                    \"Variation 4\",\n                    \"Variation 5\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"SKU\",\n                    \"UPC\",\n                    \"FinishName\",\n                    \"TypeofProduct\",\n                    \"MatchingColumn\",\n                    \"Collection\",\n                    \"MainImage\",\n                    \"UPCChecker\",\n                    \"DuplicateChecker\",\n                    \"SpaceChecker\",\n                    \"Owners Manual\",\n                    \"Spec Sheet\",\n                    \"Installation Guide\",\n                    \"Parts List\",\n                    \"Warranty Information\",\n                    \"MSRP/List Price\",\n                    \"MAP (If Applicable)\",\n                    \"Dealer Net (Cost)\",\n                    \"MPN\",\n                    \"LTL\",\n                    \"Shipping Weight\",\n                    \"Prop 65\",\n                    \"CAS Number\",\n                    \"Chemicals Contained\",\n                    \"Title\",\n                    \"Long Description\",\n                    \"Feature 1\",\n                    \"Feature 2\",\n                    \"Feature 3\",\n                    \"Feature 4\",\n                    \"Feature 5\",\n                    \"Feature 6\",\n                    \"Image 1 File Name\",\n                    \"Image 1 Link\",\n                    \"Image 2 File Name\",\n                    \"Image 2 Link\",\n                    \"Image 3 File Name\",\n                    \"Image 3 Link\",\n                    \"Image 4 File Name\",\n                    \"Image 4 Link\",\n                    \"Image 5 File Name\",\n                    \"Image 5 Link\",\n                    \"Accessory 1\",\n                    \"Accessory 2\",\n                    \"Accessory 3\",\n                    \"Accessory 4\",\n                    \"Accessory 5\",\n                    \"Part 1\",\n                    \"Part 2\",\n                    \"Part 3\",\n                    \"Part 4\",\n                    \"Part 5\",\n                    \"Variation 1\",\n                    \"Variation 2\",\n                    \"Variation 3\",\n                    \"Variation 4\",\n                    \"Variation 5\"\n                ],\n                \"picklist_attributes_count\": 1,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 63,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 57\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620244,\n            \"name\": \"BUILD\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/build.png\",\n            \"icon\": null,\n            \"key\": \"BUILD\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 30,\n                \"name\": \"build_ferguson\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/build_ferguson_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20764992,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1638212286224,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1638212286224,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14731656,\n        \"name\": \"Ferguson Products\",\n        \"filename\": null,\n        \"prefix\": \"rltt\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004669053,\n            \"number\": \"4004669053\",\n            \"name\": \"Ferguson Products\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1638211587339,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1638211587339,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1638211589036\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/ferguson/1638211490933/Ferguson.xlsx\",\n            \"draft_template_object_key\": \"_templates/ferguson/1638211490933/_final_template/Ferguson_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/ferguson/1638211490933/_final_template/Ferguson_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Products\",\n                    \"attribute_name_row\": 3,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 4,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Mfg Product Number\",\n                    \"UPC\",\n                    \"Step ID\",\n                    \"Alt Product Number\",\n                    \"Brand Type\",\n                    \"LINEBUY_ID\",\n                    \"Oracle_Item_Class_Ref Classification Reference\",\n                    \"Product Number / SKU\",\n                    \"Mfg/Supplier Name & ID\",\n                    \"Product Short Description\",\n                    \"Item Class\",\n                    \"Sku Image File Name\",\n                    \"Sku Image Notes\",\n                    \"Vendor Logo\",\n                    \"Vendor Brand Logo\",\n                    \"Brand Names\",\n                    \"Specification File\",\n                    \"Installation Instructions File\",\n                    \"Use and Care File\",\n                    \"Parts Breakdown File\",\n                    \"Lifestyle Image File Name\",\n                    \"Back View Image File Name\",\n                    \"Bottom View  Image File Name\",\n                    \"Left View Image File Name\",\n                    \"Right View Image File Name\",\n                    \"Top View  Image File Name\",\n                    \"Warranty File Name\",\n                    \"Energy Guide File Name\",\n                    \"Lighting Facts Asset File Name\",\n                    \"Submittals Asset File Name\",\n                    \"CAD Drawings File Name\",\n                    \"Video Asset Reference ID\",\n                    \"Required Accessory\",\n                    \"Optional Accessory\",\n                    \"Includes\",\n                    \"Spare Part Product Reference\",\n                    \"ADA Compliant\",\n                    \"AMP\",\n                    \"Application\",\n                    \"Automatic Shut-Off\",\n                    \"Battery Type\",\n                    \"Brand / Model Compatibility\",\n                    \"Cable or Wire Type\",\n                    \"Clothing Size\",\n                    \"Coating\",\n                    \"Color/Finish\",\n                    \"Cord Length\",\n                    \"Depth\",\n                    \"Diameter\",\n                    \"Disposable\",\n                    \"End Connection 1\",\n                    \"End Connection 2\",\n                    \"Energy Star Compliant\",\n                    \"Fitting Size 1\",\n                    \"Gauge\",\n                    \"Gender\",\n                    \"Glove Size\",\n                    \"Glove Type\",\n                    \"Height\",\n                    \"Indoor / Outdoor\",\n                    \"Installation Type\",\n                    \"Length\",\n                    \"Light Bulb Shape Code\",\n                    \"Bulb Type\",\n                    \"Material\",\n                    \"Material Type\",\n                    \"Maximum Temperature\",\n                    \"Number of Pieces\",\n                    \"Origin\",\n                    \"Package Quantity\",\n                    \"Phase\",\n                    \"Power Source\",\n                    \"Maximum Pressure\",\n                    \"Product Type\",\n                    \"Reusable\",\n                    \"Schedule/Class\",\n                    \"Size\",\n                    \"Smart Home Enabled\",\n                    \"ANSI Specifications\",\n                    \"ASME Specifications\",\n                    \"ASSE Standards\",\n                    \"ASTM Specifications\",\n                    \"AWWA Specifications\",\n                    \"BAA Compliant\",\n                    \"CARB/OTC/LEED Compliant\",\n                    \"CE Approved\",\n                    \"CSA Certified\",\n                    \"EPA Compliant\",\n                    \"ETL Listed\",\n                    \"FM Approved\",\n                    \"GSA Approved\",\n                    \"IAPMO Listed\",\n                    \"ISO Specifications\",\n                    \"MA Approved\",\n                    \"MSS Specifications\",\n                    \"NEMA Specifications\",\n                    \"NIOSH Specifications\",\n                    \"NSF Specifications\",\n                    \"NSF Certified\",\n                    \"OSHA Specifications\",\n                    \"SCAQMD Compliant\",\n                    \"UL Listed\",\n                    \"Collection\",\n                    \"Temperature Range\",\n                    \"Temperature Rating\",\n                    \"Thickness\",\n                    \"Tool Type\",\n                    \"Volts\",\n                    \"Watts\",\n                    \"Weight\",\n                    \"Width\",\n                    \"Wire Gauge\",\n                    \"Features & Benefits 01\",\n                    \"Features & Benefits 02\",\n                    \"Features & Benefits 03\",\n                    \"Features & Benefits 04\",\n                    \"Features & Benefits 05\",\n                    \"Features & Benefits 06\",\n                    \"Features & Benefits 07\",\n                    \"Features & Benefits 08\",\n                    \"Features & Benefits 09\",\n                    \"Features & Benefits 10\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Brand Type\",\n                    \"Oracle_Item_Class_Ref Classification Reference\",\n                    \"Item Class\",\n                    \"Video Asset Reference ID\",\n                    \"Spare Part Product Reference\",\n                    \"Automatic Shut-Off\",\n                    \"Battery Type\",\n                    \"Cable or Wire Type\",\n                    \"Clothing Size\",\n                    \"Coating\",\n                    \"Color/Finish\",\n                    \"Cord Length\",\n                    \"Disposable\",\n                    \"Energy Star Compliant\",\n                    \"Gauge\",\n                    \"Gender\",\n                    \"Glove Size\",\n                    \"Glove Type\",\n                    \"Indoor / Outdoor\",\n                    \"Light Bulb Shape Code\",\n                    \"Bulb Type\",\n                    \"Number of Pieces\",\n                    \"Origin\",\n                    \"Phase\",\n                    \"Maximum Pressure\",\n                    \"Product Type\",\n                    \"Reusable\",\n                    \"Schedule/Class\",\n                    \"Smart Home Enabled\",\n                    \"ANSI Specifications\",\n                    \"ASME Specifications\",\n                    \"ASSE Standards\",\n                    \"ASTM Specifications\",\n                    \"AWWA Specifications\",\n                    \"BAA Compliant\",\n                    \"CARB/OTC/LEED Compliant\",\n                    \"CE Approved\",\n                    \"CSA Certified\",\n                    \"EPA Compliant\",\n                    \"ETL Listed\",\n                    \"FM Approved\",\n                    \"GSA Approved\",\n                    \"IAPMO Listed\",\n                    \"ISO Specifications\",\n                    \"MA Approved\",\n                    \"MSS Specifications\",\n                    \"NEMA Specifications\",\n                    \"NIOSH Specifications\",\n                    \"NSF Specifications\",\n                    \"NSF Certified\",\n                    \"OSHA Specifications\",\n                    \"SCAQMD Compliant\",\n                    \"UL Listed\",\n                    \"Collection\",\n                    \"Temperature Rating\",\n                    \"Tool Type\",\n                    \"Wire Gauge\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 127,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {\n                    \"0\": \"Mfg Product Number\",\n                    \"1\": \"UPC\",\n                    \"2\": \"Step ID\",\n                    \"3\": \"Alt Product Number\",\n                    \"4\": \"Brand Type\",\n                    \"5\": \"LINEBUY_ID\",\n                    \"6\": \"Oracle_Item_Class_Ref Classification Reference\",\n                    \"7\": \"Product Number / SKU\",\n                    \"8\": \"Mfg/Supplier Name & ID\",\n                    \"9\": \"Product Short Description\",\n                    \"10\": \"Item Class\"\n                },\n                \"total_attributes_count\": 122\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620194,\n            \"name\": \"FERGUSON\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/ferguson.png\",\n            \"icon\": null,\n            \"key\": \"FERGUSON\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": true,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": true,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 54,\n                \"name\": \"ferguson\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/ferguson_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20764747,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1638211589005,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1638211589005,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730885,\n        \"name\": \"InDesign\",\n        \"filename\": null,\n        \"prefix\": \"ns16\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004663557,\n            \"number\": \"4004663557\",\n            \"name\": \"InDesign\",\n            \"allowed_roles\": [\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1615300166863,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1635337154668,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1615300167268\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620199,\n            \"name\": \"EASYCATALOG\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/easy-catalog.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/easy-catalog.png\",\n            \"key\": \"EASY_CATALOG\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": \"xml\",\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": true,\n                \"skip_content_grader\": true,\n                \"scan_item_source\": false,\n                \"template_based\": false,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": null,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1615300167277,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1635337154630,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730946,\n        \"name\": \"City Electric Spring 2021\",\n        \"filename\": null,\n        \"prefix\": \"ce25\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004663693,\n            \"number\": \"4004663693\",\n            \"name\": \"City Electric Spring 2021\",\n            \"allowed_roles\": [\n                4000006733,\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1617190718085,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1617190718085,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1617190718167\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/city_electric_supply/1617190683431/City-Electric.xlsx\",\n            \"draft_template_object_key\": \"_templates/city_electric_supply/1617190683431/_final_template/City-Electric_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/city_electric_supply/1617190683431/_final_template/City-Electric_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Template\",\n                    \"attribute_name_row\": 2,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 3,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Item ID\",\n                    \"Name\",\n                    \"Main Image\",\n                    \"Brand Name\",\n                    \"Category\",\n                    \"Sell Sheet\",\n                    \"Image 2\",\n                    \"Image 3\",\n                    \"Lifestyle Image\",\n                    \"Spec Sheet\",\n                    \"Video\",\n                    \"Repair Policy\",\n                    \"Exchange Policy\",\n                    \"Short Description\",\n                    \"Long Description\",\n                    \"Benefit 1\",\n                    \"Benefit 2\",\n                    \"Benefit 3\",\n                    \"Benefit 4\",\n                    \"Benefit 5\",\n                    \"Warranty\",\n                    \"Warranty Language\",\n                    \"Rich Description\",\n                    \"Packaged Asset\",\n                    \"Complimentary Products\",\n                    \"Keyword Tags\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Width\",\n                    \"Ship Pack Height\",\n                    \"List Price\",\n                    \"MSRP\",\n                    \"Prop 65 Compliant\",\n                    \"Prop 65 Warning\",\n                    \"Country of Origin\",\n                    \"ASIN\",\n                    \"Grainger Part Number\",\n                    \"Material\",\n                    \"Customer Part Number\",\n                    \"GTIN\",\n                    \"MAP Price\",\n                    \"Package Depth\",\n                    \"Capacity\",\n                    \"Code\",\n                    \"Grip Length\",\n                    \"Length\",\n                    \"Nut / Nose Dia\",\n                    \"Shank Size\",\n                    \"Size\",\n                    \"Lumens\",\n                    \"Lens\",\n                    \"Wattage\",\n                    \"CCT\",\n                    \"Height\",\n                    \"Width\",\n                    \"Finish\",\n                    \"DLC Listed\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Item ID\",\n                    \"Name\",\n                    \"Main Image\",\n                    \"Brand Name\",\n                    \"Category\",\n                    \"Sell Sheet\",\n                    \"Image 2\",\n                    \"Image 3\",\n                    \"Lifestyle Image\",\n                    \"Spec Sheet\",\n                    \"Video\",\n                    \"Repair Policy\",\n                    \"Exchange Policy\",\n                    \"Short Description\",\n                    \"Long Description\",\n                    \"Benefit 1\",\n                    \"Benefit 2\",\n                    \"Benefit 3\",\n                    \"Benefit 4\",\n                    \"Benefit 5\",\n                    \"Warranty\",\n                    \"Warranty Language\",\n                    \"Rich Description\",\n                    \"Packaged Asset\",\n                    \"Complimentary Products\",\n                    \"Keyword Tags\",\n                    \"Master Pack Length\",\n                    \"Master Pack Width\",\n                    \"Master Pack Height\",\n                    \"Master Pack Weight\",\n                    \"Sell Pack Length\",\n                    \"Sell Pack Width\",\n                    \"Sell Pack Height\",\n                    \"Sell Pack Weight\",\n                    \"Inner Pack Weight\",\n                    \"Inner Pack Length\",\n                    \"Inner Pack Width\",\n                    \"Inner Pack Height\",\n                    \"Ship Pack Weight\",\n                    \"Ship Pack Length\",\n                    \"Ship Pack Width\",\n                    \"Ship Pack Height\",\n                    \"List Price\",\n                    \"MSRP\",\n                    \"Prop 65 Compliant\",\n                    \"Prop 65 Warning\",\n                    \"Country of Origin\",\n                    \"ASIN\",\n                    \"Grainger Part Number\",\n                    \"Material\",\n                    \"Customer Part Number\",\n                    \"GTIN\",\n                    \"MAP Price\",\n                    \"Package Depth\",\n                    \"Capacity\",\n                    \"Code\",\n                    \"Grip Length\",\n                    \"Length\",\n                    \"Nut / Nose Dia\",\n                    \"Shank Size\",\n                    \"Size\",\n                    \"Lumens\",\n                    \"Lens\",\n                    \"Wattage\",\n                    \"CCT\",\n                    \"Height\",\n                    \"Width\",\n                    \"Finish\",\n                    \"DLC Listed\"\n                ],\n                \"picklist_attributes_count\": 1,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 69,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 69\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620231,\n            \"name\": \"City Electric Supply\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/city-electric-supply.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/city-electric-supply.png\",\n            \"key\": \"CITY_ELECTRIC_SUPPLY\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 34,\n                \"name\": \"cityelectricsupply\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/cityelectricsupply_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20626155,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1617190719681,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1617190719681,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730944,\n        \"name\": \"New products for 2021\",\n        \"filename\": null,\n        \"prefix\": \"np21\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004663690,\n            \"number\": \"4004663690\",\n            \"name\": \"New products for 2021\",\n            \"allowed_roles\": [\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1617143744463,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1645621634050,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [\n                20586298,\n                20586299,\n                20586296,\n                20586297,\n                20586300,\n                20586290,\n                20586291,\n                20586288,\n                20615472,\n                20586289,\n                20586294,\n                20586295,\n                20586292,\n                20586293,\n                20615470,\n                20615468,\n                20624144,\n                20621591,\n                20621589,\n                20661624,\n                20661630,\n                20661618,\n                20661616,\n                20661622,\n                20661620,\n                20586347,\n                20586345,\n                20586338,\n                20586339,\n                20586336,\n                20790118,\n                20586343,\n                20586340,\n                20586341,\n                20586330,\n                20735836,\n                20586331,\n                20586328,\n                20735838,\n                20586329,\n                20586334,\n                20735832,\n                20586335,\n                20586332,\n                20735834,\n                20586333,\n                20586322,\n                20735828,\n                20586323,\n                20586320,\n                20735830,\n                20586321,\n                20586326,\n                20586327,\n                20586324,\n                20735826,\n                20586325,\n                20586314,\n                20586315,\n                20586312,\n                20586313,\n                20586318,\n                20586319,\n                20586316,\n                20586317,\n                20586306,\n                20586310,\n                20586311,\n                20586308,\n                20586309,\n                20640187,\n                20690362,\n                20640184,\n                20759998,\n                20690360,\n                20743103,\n                20640190,\n                20640188,\n                20743098,\n                20640178,\n                20690354,\n                20640176,\n                20640177,\n                20690352,\n                20640182,\n                20690358,\n                20640180,\n                20690356,\n                20690346,\n                20690344,\n                20690350,\n                20690348,\n                20690338,\n                20676513,\n                20690342,\n                20690340,\n                20676505,\n                20676511,\n                20676510,\n                20676509,\n                20661632,\n                20640251,\n                20640248,\n                20640249,\n                20734463,\n                20640255,\n                20640242,\n                20640243,\n                20640241,\n                20640247,\n                20640235,\n                20640237,\n                20698083,\n                20635091,\n                20640203,\n                20640207,\n                20640204,\n                20640205,\n                20640195,\n                20640193,\n                20640199,\n                20743105,\n                20640197,\n                20755006,\n                20640307,\n                20640309,\n                20640297,\n                20707368,\n                20640291,\n                20707362,\n                20640289,\n                20640295,\n                20707366,\n                20707364,\n                20640282,\n                20640283,\n                20640280,\n                20640281,\n                20640287,\n                20640285,\n                20640273,\n                20724759,\n                20640279,\n                20640267,\n                20640264,\n                20640265,\n                20640270,\n                20640271,\n                20734473,\n                20734475,\n                20640259,\n                20734469,\n                20640257,\n                20734471,\n                20640262,\n                20734465,\n                20640260,\n                20734467,\n                20660347,\n                20626043,\n                20660346,\n                20660350,\n                20626045,\n                20660348,\n                20613746,\n                20660339,\n                20613747,\n                20660338,\n                20660336,\n                20613751,\n                20626039,\n                20613749,\n                20626037,\n                20660340,\n                20660330,\n                20660328,\n                20613743,\n                20660334,\n                20613741,\n                20755041,\n                20755043,\n                20684379,\n                20684378,\n                20684381,\n                20684369,\n                20684368,\n                20684375,\n                20684374,\n                20684373,\n                20684363,\n                20684361,\n                20684360,\n                20755016,\n                20684366,\n                20755012,\n                20755014,\n                20755008,\n                20755010,\n                20780611,\n                20613778,\n                20613779,\n                20626056,\n                20626057,\n                20613775,\n                20660354,\n                20626048,\n                20660353,\n                20660352,\n                20626054,\n                20626052,\n                20626053,\n                20660356,\n                20813045,\n                20614901,\n                20626154,\n                20703979,\n                20626152,\n                20626153,\n                20626146,\n                20626144,\n                20626148,\n                20626142,\n                20626140,\n                20629708\n            ],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1617143744560\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/wesco/1617143666851/WIS.eCommerceCatalog.SupplierSubmittal.BASE.TEMPLATE.xlsx\",\n            \"draft_template_object_key\": \"_templates/wesco/1617143666851/_final_template/WIS.eCommerceCatalog.SupplierSubmittal.BASE.TEMPLATE_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/wesco/1617143666851/_final_template/WIS.eCommerceCatalog.SupplierSubmittal.BASE.TEMPLATE_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"SUBMITTAL\",\n                    \"attribute_name_row\": 1,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": null,\n                    \"body_row\": 10,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"VENDOR NAME\",\n                    \"ORDER BY NUMBER\",\n                    \"MANUFACTURER PART NUMBER\",\n                    \"MANUFACTURER\",\n                    \"UNSPSC CODE\",\n                    \"UPC CODE\",\n                    \"WIS COST\",\n                    \"COST UNIT OF MEASURE (UOM)\",\n                    \"INNER PACK QUANTITY\",\n                    \"CASE QUANTITY\",\n                    \"MINIMUM PURCHASE QUANTITY (OF COLUMN H)\",\n                    \"TYPICAL AVAILABILITY TO WIS\",\n                    \"WIS COST EFFECTIVE DATE\",\n                    \"PRODUCT NAME\",\n                    \"DESCRIPTION SHORT (250 CHARACTERS)\",\n                    \"DESCRIPTION CONTINUED (+ 750 CHARACTERS)\",\n                    \"THIS ITEM SOLVES THE PROBLEM OF (250 CHARACTER):\",\n                    \"PARENT CATEGORY (TOP LEVEL)\",\n                    \"SUBCATEGORY DESC (TOP - 1)\",\n                    \"SUBCATEGORY DESC (TOP - 2)\",\n                    \"SUBCATEGORY DESC (TOP - 3)\",\n                    \"LEAF CAT (ITEM LEVEL, LAST CATEGORY)\",\n                    \"ITEM STATE\",\n                    \"KIT MFR PROD REF#\",\n                    \"COUNTRY OF ORIGIN\",\n                    \"HAZARDOUS\",\n                    \"SHIP BY AIR?\",\n                    \"PROVIDED SDS: PDF (FILENAME)\",\n                    \"LINKED SDS: (URL)\",\n                    \"PROVIDED IMAGE: THUMBNAIL (FILENAME)\",\n                    \"LINKED IMAGE: THUMBNAIL (URL)\",\n                    \"PROVIDED IMAGE: ZOOM (FILENAME)\",\n                    \"LINKED IMAGE: ZOOM (URL)\",\n                    \"PROVIDED IMAGE: MANUFACTURER LOGO (FILENAME)\",\n                    \"LINKED IMAGE: MANUFACTURER LOGO (URL)\",\n                    \"VENDOR ITEM PAGE (URL)\",\n                    \"SUPPLEMENTAL VIDEO (DEMO, INSTALLATION, ETC) (URL)\",\n                    \"SPEC 1: KEY\",\n                    \"SPEC 1: VALUE PAIR\",\n                    \"SPEC 2: KEY\",\n                    \"SPEC 2: VALUE PAIR\",\n                    \"SPEC 3: KEY\",\n                    \"SPEC 3: VALUE PAIR\",\n                    \"SPEC 4: KEY\",\n                    \"SPEC 4: VALUE PAIR\",\n                    \"SPEC 5: KEY\",\n                    \"SPEC 5: VALUE PAIR\",\n                    \"SPEC 6: KEY\",\n                    \"SPEC 6: VALUE PAIR\",\n                    \"SPEC 7: KEY\",\n                    \"SPEC 7: VALUE PAIR\",\n                    \"SPEC 8: KEY\",\n                    \"SPEC 8: VALUE PAIR\",\n                    \"SPEC 9: KEY\",\n                    \"SPEC 9: VALUE PAIR\",\n                    \"SPEC 10: KEY\",\n                    \"SPEC 10: VALUE PAIR\",\n                    \"SPEC 11: KEY\",\n                    \"SPEC 11: VALUE PAIR\",\n                    \"SPEC 12: KEY\",\n                    \"SPEC 12: VALUE PAIR\",\n                    \"SPEC 13: KEY\",\n                    \"SPEC 13: VALUE PAIR\",\n                    \"SPEC 14: KEY\",\n                    \"SPEC 14: VALUE PAIR\",\n                    \"SPEC 15: KEY\",\n                    \"SPEC 15: VALUE PAIR\",\n                    \"SPEC 16: KEY\",\n                    \"SPEC 16: VALUE PAIR\",\n                    \"SPEC 17: KEY\",\n                    \"SPEC 17: VALUE PAIR\",\n                    \"SPEC 18: KEY\",\n                    \"SPEC 18: VALUE PAIR\",\n                    \"SPEC 19: KEY\",\n                    \"SPEC 19: VALUE PAIR\",\n                    \"SPEC 20: KEY\",\n                    \"SPEC 20: VALUE PAIR\",\n                    \"SPEC 21: KEY\",\n                    \"SPEC 21: VALUE PAIR\",\n                    \"SPEC 22: KEY\",\n                    \"SPEC 22: VALUE PAIR\",\n                    \"SPEC 23: KEY\",\n                    \"SPEC 23: VALUE PAIR\",\n                    \"SPEC 24: KEY\",\n                    \"SPEC 24: VALUE PAIR\",\n                    \"SPEC 25: KEY\",\n                    \"SPEC 25: VALUE PAIR\",\n                    \"SPEC 26: KEY\",\n                    \"SPEC 26: VALUE PAIR\",\n                    \"SPEC 27: KEY\",\n                    \"SPEC 27: VALUE PAIR\",\n                    \"SPEC 28: KEY\",\n                    \"SPEC 28: VALUE PAIR\",\n                    \"SPEC 29: KEY\",\n                    \"SPEC 29: VALUE PAIR\",\n                    \"SPEC 30: KEY\",\n                    \"SPEC 30: VALUE PAIR\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"VENDOR NAME\",\n                    \"ORDER BY NUMBER\",\n                    \"MANUFACTURER PART NUMBER\",\n                    \"MANUFACTURER\",\n                    \"UNSPSC CODE\",\n                    \"UPC CODE\",\n                    \"WIS COST\",\n                    \"COST UNIT OF MEASURE (UOM)\",\n                    \"INNER PACK QUANTITY\",\n                    \"CASE QUANTITY\",\n                    \"MINIMUM PURCHASE QUANTITY (OF COLUMN H)\",\n                    \"TYPICAL AVAILABILITY TO WIS\",\n                    \"WIS COST EFFECTIVE DATE\",\n                    \"PRODUCT NAME\",\n                    \"DESCRIPTION SHORT (250 CHARACTERS)\",\n                    \"DESCRIPTION CONTINUED (+ 750 CHARACTERS)\",\n                    \"THIS ITEM SOLVES THE PROBLEM OF (250 CHARACTER):\",\n                    \"PARENT CATEGORY (TOP LEVEL)\",\n                    \"SUBCATEGORY DESC (TOP - 1)\",\n                    \"SUBCATEGORY DESC (TOP - 2)\",\n                    \"SUBCATEGORY DESC (TOP - 3)\",\n                    \"LEAF CAT (ITEM LEVEL, LAST CATEGORY)\",\n                    \"ITEM STATE\",\n                    \"KIT MFR PROD REF#\",\n                    \"COUNTRY OF ORIGIN\",\n                    \"HAZARDOUS\",\n                    \"SHIP BY AIR?\",\n                    \"PROVIDED SDS: PDF (FILENAME)\",\n                    \"LINKED SDS: (URL)\",\n                    \"PROVIDED IMAGE: THUMBNAIL (FILENAME)\",\n                    \"LINKED IMAGE: THUMBNAIL (URL)\",\n                    \"PROVIDED IMAGE: ZOOM (FILENAME)\",\n                    \"LINKED IMAGE: ZOOM (URL)\",\n                    \"PROVIDED IMAGE: MANUFACTURER LOGO (FILENAME)\",\n                    \"LINKED IMAGE: MANUFACTURER LOGO (URL)\",\n                    \"VENDOR ITEM PAGE (URL)\",\n                    \"SUPPLEMENTAL VIDEO (DEMO, INSTALLATION, ETC) (URL)\",\n                    \"SPEC 1: KEY\",\n                    \"SPEC 1: VALUE PAIR\",\n                    \"SPEC 2: KEY\",\n                    \"SPEC 2: VALUE PAIR\",\n                    \"SPEC 3: KEY\",\n                    \"SPEC 3: VALUE PAIR\",\n                    \"SPEC 4: KEY\",\n                    \"SPEC 4: VALUE PAIR\",\n                    \"SPEC 5: KEY\",\n                    \"SPEC 5: VALUE PAIR\",\n                    \"SPEC 6: KEY\",\n                    \"SPEC 6: VALUE PAIR\",\n                    \"SPEC 7: KEY\",\n                    \"SPEC 7: VALUE PAIR\",\n                    \"SPEC 8: KEY\",\n                    \"SPEC 8: VALUE PAIR\",\n                    \"SPEC 9: KEY\",\n                    \"SPEC 9: VALUE PAIR\",\n                    \"SPEC 10: KEY\",\n                    \"SPEC 10: VALUE PAIR\",\n                    \"SPEC 11: KEY\",\n                    \"SPEC 11: VALUE PAIR\",\n                    \"SPEC 12: KEY\",\n                    \"SPEC 12: VALUE PAIR\",\n                    \"SPEC 13: KEY\",\n                    \"SPEC 13: VALUE PAIR\",\n                    \"SPEC 14: KEY\",\n                    \"SPEC 14: VALUE PAIR\",\n                    \"SPEC 15: KEY\",\n                    \"SPEC 15: VALUE PAIR\",\n                    \"SPEC 16: KEY\",\n                    \"SPEC 16: VALUE PAIR\",\n                    \"SPEC 17: KEY\",\n                    \"SPEC 17: VALUE PAIR\",\n                    \"SPEC 18: KEY\",\n                    \"SPEC 18: VALUE PAIR\",\n                    \"SPEC 19: KEY\",\n                    \"SPEC 19: VALUE PAIR\",\n                    \"SPEC 20: KEY\",\n                    \"SPEC 20: VALUE PAIR\",\n                    \"SPEC 21: KEY\",\n                    \"SPEC 21: VALUE PAIR\",\n                    \"SPEC 22: KEY\",\n                    \"SPEC 22: VALUE PAIR\",\n                    \"SPEC 23: KEY\",\n                    \"SPEC 23: VALUE PAIR\",\n                    \"SPEC 24: KEY\",\n                    \"SPEC 24: VALUE PAIR\",\n                    \"SPEC 25: KEY\",\n                    \"SPEC 25: VALUE PAIR\",\n                    \"SPEC 26: KEY\",\n                    \"SPEC 26: VALUE PAIR\",\n                    \"SPEC 27: KEY\",\n                    \"SPEC 27: VALUE PAIR\",\n                    \"SPEC 28: KEY\",\n                    \"SPEC 28: VALUE PAIR\",\n                    \"SPEC 29: KEY\",\n                    \"SPEC 29: VALUE PAIR\",\n                    \"SPEC 30: KEY\",\n                    \"SPEC 30: VALUE PAIR\"\n                ],\n                \"picklist_attributes_count\": 0,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 0,\n                \"scanned_column_count\": 97,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 97\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620227,\n            \"name\": \"WESCO\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/wesco-logo.jpg\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/wesco.png\",\n            \"key\": \"WESCO\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20625841,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1617143746291,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1617143746291,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730894,\n        \"name\": \"Regional Dealers File\",\n        \"filename\": null,\n        \"prefix\": \"d7\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004663596,\n            \"number\": \"4004663596\",\n            \"name\": \"Regional Dealers File\",\n            \"allowed_roles\": [\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1615514456972,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1617046167355,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1615514457075\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": null,\n            \"draft_template_object_key\": null,\n            \"final_template_object_key\": null,\n            \"channel_template_sheets\": null,\n            \"template_report\": null,\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620207,\n            \"name\": \"EXCEL_PULL\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/excel_pull.png\",\n            \"icon\": null,\n            \"key\": \"EXCEL_PULL\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": true,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": null,\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20618231,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1615514457169,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1617046167166,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730875,\n        \"name\": \"Fall Line 2021\",\n        \"filename\": null,\n        \"prefix\": \"fc20\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004663471,\n            \"number\": \"4004663471\",\n            \"name\": \"Fall Line 2021\",\n            \"allowed_roles\": [\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1614097016995,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1614097119509,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1614097017273\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/home_depot/1614096942199/Home-Depot-Use.xlsm\",\n            \"draft_template_object_key\": \"_templates/home_depot/1614096942199/_final_template/Home-Depot-Use_draft_template.xlsm\",\n            \"final_template_object_key\": \"_templates/home_depot/1614096942199/_final_template/Home-Depot-Use_draft_template.xlsm\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Other Materials\",\n                    \"attribute_name_row\": 10,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": 5,\n                    \"body_row\": 11,\n                    \"mapped_column_index_in_sheet\": 5,\n                    \"mapped_master_attribute_key\": \"gtin\"\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Product ID\",\n                    \"* ID\",\n                    \"<Object Type Name>\",\n                    \"Supplier Process Notes\",\n                    \"UPC\",\n                    \"globalTradeItemNumber (GTIN)\",\n                    \"Hierarchy Level\",\n                    \"Product Name 120 Formula\",\n                    \"Product Name 120 Example\",\n                    \"Product Name (120)\",\n                    \"Are your products labeled with age – grading or otherwise packaged, labeled or marketed for children?\",\n                    \"Country of Origin Name\",\n                    \"Does this product contain any wood or wood composite?\",\n                    \"Is this product regulated by a type of VOC guideline or rule at the state level?\",\n                    \"Home Depot Proprietary Brand Name\",\n                    \"Is your product intended to be put into children’s mouths, intended to be applied to children’s bodies, or is it mouthable (able to be sucked or chewed) by children under 3 years of age?\",\n                    \"Is your product primarily designed and intended for children 12 years of age and under?\",\n                    \"MFG Brand Name\",\n                    \"MFG Name\",\n                    \"MFG Part #\",\n                    \"Proposition 65 warning required?\",\n                    \"Sellable on homedepot.com?\",\n                    \"Will children be exposed to your product for more than an hour (Ex. clothing, footwear, jewelry, certain toys)?\",\n                    \"Is this item governed by the Textile and Wool Labeling Act as administered by the Federal Trade Commission?\",\n                    \"Is this product sold exclusively to and by The Home Depot?\",\n                    \"Sellable via Special Order?\",\n                    \"Is this Item intended to be stocked and sold within a physical Home Depot store?\",\n                    \"Vendor Suggested Online Buy Pk Qty (as sold to THD)\",\n                    \"Sellable via Interline Brands?\",\n                    \"Smart Home\",\n                    \"Requires Hub?\",\n                    \"Hub Required\",\n                    \"Smart Home Protocol\",\n                    \"Works With\",\n                    \"Voice Control Requirements\",\n                    \"Power Options\",\n                    \"Remote Access\",\n                    \"Is the Home Depot Design Center the only place The Home Depot will sell this item (i.e. Not visible on homedepot.com)?\",\n                    \"Exclusivity End Date\",\n                    \"Does Home Depot’s exclusivity for this product expire on a certain date?\",\n                    \"Eco Options\",\n                    \"Eco Options Category and Subcategory\",\n                    \"Select your Home Depot Online Merchant/Category\",\n                    \"Proposition 65 Warning\",\n                    \"Categorize this product according to CARB-VOC Regulation\",\n                    \"CARB-VOC Exempt?\",\n                    \"CARB-VOC Level\",\n                    \"CARB-VOC UOM\",\n                    \"Is this type of product regulated by Delaware for VOC content limits for architectural coatings or consumer products?\",\n                    \"Categorize this product according to Delaware VOC Classifications\",\n                    \"Delaware Regulation-VOC Level\",\n                    \"Delaware-VOC UOM\",\n                    \"Delaware VOC Exemptions?\",\n                    \"Is this type of product regulated by Maryland for VOC content limits for architectural and industrial maintenance coatings or control of emissions of VOC from consumer products?\",\n                    \"Categorize this product according to Maryland VOC Regulation\",\n                    \"Maryland Regulation-VOC Level\",\n                    \"Maryland-VOC UOM\",\n                    \"Maryland VOC Exempt?\",\n                    \"Is this type of product regulated by New Hampshire for VOC limits for Consumer Products?\",\n                    \"Categorize this product according to New Hampshire VOC Regulation\",\n                    \"New Hampshire Regulation-VOC Level\",\n                    \"New Hampshire-VOC UOM\",\n                    \"New Hampshire VOC Regulation Exempt?\",\n                    \"Is this type of product regulated for VOC level by California SCAQMD?\",\n                    \"SCAQMD Classification\",\n                    \"SCAQMD VOC Level\",\n                    \"SCAQMD VOC UOM\",\n                    \"SCAQMD Exempt?\",\n                    \"Volatile Organic Compound Notes\",\n                    \"Is this type of product regulated for VOC level by California Code of Regulations for Consumer Products?\",\n                    \"Is your product a State-Regulated Light Emitting Diode (LED) Lamp regulated by the California Energy Commission (CEC)?\",\n                    \"Does the LED Lamp meet the applicable appliance efficiency standard - Tier 1 requirements and is it listed in the CEC Modernized Appliance Efficiency Database System?\",\n                    \"Does the LED Lamp meet the applicable appliance efficiency standard - Tier 2 requirements and is it listed in the CEC Modernized Appliance Efficiency Database System?\",\n                    \"Does the SDDL Small Diameter Directional Lamp meet the applicable appliance efficiency standard and is it listed in the CEC Modernized Appliance Efficiency Database System (MAEDBS)?\",\n                    \"Provide date the SDDL Small Diameter Directional Lamp was listed in the CEC Modernized Appliance Efficiency Database System (MAEDBS)?\",\n                    \"Is your product a State-Regulated General Service Lamp regulated by the California Energy Commission?\",\n                    \"Does the General Service Lamp meet the applicable appliance efficiency standard and is it listed in the CEC Modernized Appliance Efficiency Database System (MAEDBS)?\",\n                    \"Provide date the General Service Lamp was listed in the CEC Modernized Appliance Efficiency Database System (MAEDBS)?\",\n                    \"Provide date the LED Lamp was listed in the CEC Modernized Appliance Efficiency Database System for Tier 2 requirements.\",\n                    \"Provide date the LED Lamp was listed in the CEC Modernized Appliance Efficiency Database System for Tier 1 requirements.\",\n                    \"Is your product required to meet energy efficiency standards set forth by the CA Energy Commission in order to be sold in California?\",\n                    \"Is your Product a State-Regulated Small Diameter Directional Lamp (SDDL) regulated by the California Energy Commission?\",\n                    \"Is your product a designated cleaning product as defined under the CA Cleaning Products Right to Know Act?\",\n                    \"Initial Online Cost\",\n                    \"List Price Available?\",\n                    \"MAP #1 Amount\",\n                    \"MAP #1 Begin Date\",\n                    \"MAP #2 Amount\",\n                    \"MAP #2 Begin Date\",\n                    \"MAP Bypass Flag\",\n                    \"Initial Market Retail Pricing\",\n                    \"YOW List Price\",\n                    \"YOW Replacement Cost\",\n                    \"Discontinued Item?\",\n                    \"Do Not Turn Online Until Date (YYYY-MM-DD)\",\n                    \"Replacement OMSID\",\n                    \"Is this a new version of an existing item?\",\n                    \"Previous Version OMSID\",\n                    \"Item Weight\",\n                    \"MFG Model #\",\n                    \"Product Usage\",\n                    \"Supplier SKU\",\n                    \"THD SKU # (NO dashes)\",\n                    \"THD SO SKU\",\n                    \"Material Breakdown\",\n                    \"Material Breakdown Percentage\",\n                    \"Primary Specific Wood Species\",\n                    \"Primary Specific Wood Species Country of Origin Name\",\n                    \"Primary Specific Wood Species Sourcing Region\",\n                    \"Secondary Specific Wood Species\",\n                    \"Secondary Specific Wood Species Country of Origin Name\",\n                    \"Secondary Specific Wood Species Sourcing Region\",\n                    \"Primary Wood Cubic Volume (cu in.)\",\n                    \"Secondary Wood Cubic Volume (cu in.)\",\n                    \"Fiber Content\",\n                    \"Fiber Content Percentage\",\n                    \"Is this item part of a Battery Platform?\",\n                    \"Battery Platform\",\n                    \"Primary Wood Growing Location\",\n                    \"Secondary Wood Growing Location\",\n                    \"Is this product FSC certified?\",\n                    \"To ensure compliance with The Home Depot Chemical Management Strategy, The Home Depot screens for key chemicals of concern in residential household cleaning chemical products.  Please select the following chemical ingredients that are intentionally added to your product:\",\n                    \"To ensure compliance with The Home Depot Chemical Management Strategy, The Home Depot screens for ortho-phthalates in vinyl flooring.  Does this product contain ortho-phthalates?\",\n                    \"To ensure compliance with The Home Depot Chemical Management Strategy, The Home Depot screens for key chemicals of concern in indoor wall-to-wall carpet. Please select the following chemical ingredients that are intentionally added to your product:\",\n                    \"To ensure compliance with The Home Depot Chemical Management Strategy, The Home Depot screens for key chemicals of concern in interior and exterior latex water-based wall paints.  Please select the following chemical ingredients that are intentionally added to your product:\",\n                    \"To ensure compliance with The Home Depot Chemical Management Strategy, The Home Depot screens for key chemicals of concern in fiberglass insulation products.  Please select the following chemical ingredients that are intentionally added to your product:\",\n                    \"Is this product vinyl flooring?\",\n                    \"Is this product fiberglass insulation?\",\n                    \"Is this product indoor wall-to-wall carpet?\",\n                    \"Is this product an interior or exterior latex water-based wall paint?\",\n                    \"Is this product a cleaning chemical product intended for residential household cleaning?\",\n                    \"To ensure compliance with The Home Depot Chemical Management Strategy, The Home Depot screens for key chemicals of concern in paint removers and solvents.  Please select the following chemical ingredients that are intentionally added to your product:\",\n                    \"Is this product a paint remover and/or solvent?\",\n                    \".com Merch Vendor #\",\n                    \"Requested Proprietary Brand Name\",\n                    \"THD Vendor #\",\n                    \"Is this item shipped in a different package or overboxed for dotcom?\",\n                    \"Annual Forecast\",\n                    \"Can this item be shipped anywhere in the US?\",\n                    \"ExcludedShipStates\",\n                    \"Freight Class\",\n                    \"Ground/Basic Delivery Free to Customer?\",\n                    \"Ground/Basic Delivery Free to Installer?\",\n                    \"Is THD and/or Interline the Importer of Record?\",\n                    \"Number of Boxes Shipped to Consumer\",\n                    \"Sell Pkg Qty (as sold to consumer)\",\n                    \"Sell UOM (as sold to consumer)\",\n                    \"DotCom Ship From State\",\n                    \"Ship From YOW/CHUB\",\n                    \"Ship to Customer Delivery Option\",\n                    \"Ship to Installer Delivery Option\",\n                    \"Ship to Store Delivery Option\",\n                    \"SO Customer Ship Surcharge\",\n                    \"SO Installer Ship Surcharge\",\n                    \"SO Store Ship Surcharge\",\n                    \"Special Order Minimum Item Quantity\",\n                    \"YOW Vendor Turn Time\",\n                    \"Dotcom Shipping Carton Depth (in)\",\n                    \"Dotcom Shipping Carton Gross Weight (lb)\",\n                    \"Dotcom Shipping Carton Height (in)\",\n                    \"Dotcom Shipping Carton Width (in)\",\n                    \"Enter Packaged Depth (in) for estimated shipping charge\",\n                    \"Enter Packaged Gross Weight (lb) for estimated shipping charge\",\n                    \"Enter Packaged Width (in) for estimated shipping charge\",\n                    \"Enter Packaged Height (in) for estimated shipping charge\",\n                    \"IBI Lithium Battery Flag\",\n                    \"IBI Watt Hours\",\n                    \"IBI Lithium Battery Configuration\",\n                    \"Components\",\n                    \"IBI NOS Flag\",\n                    \"IBI Code Approval Symbols\",\n                    \"Green SKU\",\n                    \"Case Qty Required\",\n                    \"Serial Number Required\",\n                    \"IBI Replacement Cost\",\n                    \"IBI Vendor Part Number\",\n                    \"Interior/Exterior\",\n                    \"Manufacturer Warranty\",\n                    \"Material\",\n                    \"Total Square Footage Covered\",\n                    \"Stair Part Type\",\n                    \"Product Height (in.)\",\n                    \"Product Depth (in.)\",\n                    \"Package Contents\",\n                    \"Building Supply Product Type\",\n                    \"Hardware Included\",\n                    \"Product Weight (lb.)\",\n                    \"Product Width (in.)\",\n                    \"Marketing Copy Example\",\n                    \"Marketing Copy (1500)\",\n                    \"Number of Required Bullets\",\n                    \"Bullet01\",\n                    \"Bullet02\",\n                    \"Bullet03\",\n                    \"Bullet04\",\n                    \"Bullet05\",\n                    \"Bullet06\",\n                    \"Bullet07\",\n                    \"Bullet08\",\n                    \"Bullet09\",\n                    \"Bullet10\",\n                    \"Bullet11\",\n                    \"Bullet12\",\n                    \"Bullet13\",\n                    \"Bullet14\",\n                    \"Bullet15\",\n                    \"Bullet16\",\n                    \"Bullet17\",\n                    \"Bullet18\",\n                    \"Does this product contain electronic equipment (does it contain a circuit board, computer chip, copper wiring, or other electrical components)?\",\n                    \"For the previously selected states, select any state where the item is not covered under the state's registry for recycling programs\",\n                    \"For Covered Electronic Devices (CEDs), select the states where this item is considered a CED.\",\n                    \"Does the item contain Mercury (ex: fluorescent light bulb, HVAC, switch, thermostat)?\",\n                    \"Is the item a chemical / solvent or contain a chemical / solvent?\",\n                    \"Is the item a liquid or contain a liquid (this does not include appliances or heaters that contain totally enclosed liquids)?\",\n                    \"Is the item a pesticide or contain a pesticide, herbicide, fungicide?\",\n                    \"Is the item an aerosol or contain an aerosol?\",\n                    \"Is the item or does the item contain a battery (lithium, alkaline, lead-acid, etc.)?\",\n                    \"Is the item or does the item contain a compressed gas?\",\n                    \"Select the screen size in inches (measured diagonally) or select \\\"No Screen\\\" if the item does not have a screen\",\n                    \"Category Required Assets\",\n                    \"Alternate Image View 1 Asset Reference ID\",\n                    \"Alternate Image View 2 Asset Reference ID\",\n                    \"Alternate Image View 3 Asset Reference ID\",\n                    \"Alternate Image View 4 Asset Reference ID\",\n                    \"Alternate Image View 5 Asset Reference ID\",\n                    \"Alternate Image View 6 Asset Reference ID\",\n                    \"Back View Asset Reference ID\",\n                    \"Bottom View Asset Reference ID\",\n                    \"Brand Name Logo Asset Reference ID\",\n                    \"Buying Guide Asset Reference ID\",\n                    \"Catalog View Asset Reference ID\",\n                    \"Color Swatch Asset Reference ID\",\n                    \"Compatibility Chart Asset Reference ID\",\n                    \"Cycles Guide Asset Reference ID\",\n                    \"Data Standards\",\n                    \"DfE Certification Asset Reference ID\",\n                    \"Energy Guide Asset Reference ID\",\n                    \"FAQ Asset Reference ID\",\n                    \"FSC Chain of Custody Asset Reference ID\",\n                    \"FSC Forest Certification Asset Reference ID\",\n                    \"Full Product Manual Asset Reference ID\",\n                    \"Generic Asset Asset Reference ID\",\n                    \"Generic Brand Logo Asset Reference ID\",\n                    \"Generic PDF Document References Asset Reference ID\",\n                    \"Grading Guide Asset Reference ID\",\n                    \"Installation Guide Asset Reference ID\",\n                    \"Instructions / Assembly Asset Reference ID\",\n                    \"Lacey Act Declaration Form Asset Reference ID\",\n                    \"Left Side View Asset Reference ID\",\n                    \"Lifestyle Image Asset Reference ID\",\n                    \"Measurement Guide Asset Reference ID\",\n                    \"Merchandising Image Asset Reference ID\",\n                    \"MSDS Asset Reference ID\",\n                    \"OMRI Listed Certification Asset Reference ID\",\n                    \"Open View Asset Reference ID\",\n                    \"Pre-Delivery/Install Checklist Asset Reference ID\",\n                    \"Primary Image Asset Reference ID\",\n                    \"Product Brochure Asset Reference ID\",\n                    \"Product Image Asset Reference ID\",\n                    \"Product Label Asset Reference ID\",\n                    \"Product Label in Spanish Asset Reference ID\",\n                    \"Project Ideas Asset Reference ID\",\n                    \"Rebate Form Asset Reference ID\",\n                    \"Replacement Part List Asset Reference ID\",\n                    \"Right Side View Asset Reference ID\",\n                    \"Safer Choice Standard Asset Reference ID\",\n                    \"SDS Asset Reference ID\",\n                    \"Specification Asset Reference ID\",\n                    \"TDS Asset Reference ID\",\n                    \"THD Brand Logo Asset Reference ID\",\n                    \"THD Proprietary Brand Product Image Asset Reference ID\",\n                    \"Third Party Verification Claim Asset Reference ID\",\n                    \"Top View Asset Reference ID\",\n                    \"Troubleshooting Guide Asset Reference ID\",\n                    \"USDA Certification Asset Reference ID\",\n                    \"Use and Care Manual Asset Reference ID\",\n                    \"VOC Label Asset Reference ID\",\n                    \"Warranty Asset Reference ID\",\n                    \"3rd Party Enhancement Accept\",\n                    \"CA Cleaning Products Right to Know Act Asset Reference ID\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Is your product a designated cleaning product as defined under the CA Cleaning Products Right to Know Act?\",\n                    \"Interior/Exterior\",\n                    \"Total Square Footage Covered\",\n                    \"Stair Part Type\",\n                    \"Package Contents\",\n                    \"Hardware Included\",\n                    \"3rd Party Enhancement Accept\",\n                    \"CA Cleaning Products Right to Know Act Asset Reference ID\"\n                ],\n                \"picklist_attributes_count\": 122,\n                \"conditionally_required_attributes_count\": 0,\n                \"recommended_attributes_count\": 233,\n                \"scanned_column_count\": 359,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {\n                    \"0\": \"Product ID\",\n                    \"1\": \"* ID\",\n                    \"2\": \"<Object Type Name>\",\n                    \"3\": \"Supplier Process Notes\",\n                    \"4\": \"UPC\",\n                    \"5\": \"globalTradeItemNumber (GTIN)\",\n                    \"6\": \"Hierarchy Level\",\n                    \"7\": \"Product Name 120 Formula\",\n                    \"8\": \"Product Name 120 Example\"\n                },\n                \"total_attributes_count\": 281\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620167,\n            \"name\": \"HOMEDEPOT\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/homedepot.png\",\n            \"icon\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_icons/homedepot.png\",\n            \"key\": \"HOME_DEPOT\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": 10,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": 5,\n                \"body_row\": 11,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": true,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 80,\n                \"name\": \"homedepot\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/homedepot_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20614902,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1614097022638,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1614110548776,\n        \"compute_completeness\": true,\n        \"protected_mode\": false\n    },\n    {\n        \"id\": 14730873,\n        \"name\": \"Lowes 2021 Export\",\n        \"filename\": null,\n        \"prefix\": \"l217\",\n        \"notification\": null,\n        \"collection\": {\n            \"id\": 4004663467,\n            \"number\": \"4004663467\",\n            \"name\": \"Lowes 2021 Export\",\n            \"allowed_roles\": [\n                4000006642,\n                4000006645\n            ],\n            \"locked\": false,\n            \"create_date\": 1614092190575,\n            \"create_user_name\": \"Super Admin\",\n            \"update_date\": 1614092190575,\n            \"update_user_name\": \"Super Admin\",\n            \"product_attribute_ids\": [],\n            \"default\": false\n        },\n        \"completeness_report\": {\n            \"required_attributes_missing_data\": null,\n            \"required_attributes_missing_source\": null,\n            \"optional_attributes_missing_data\": null,\n            \"optional_attributes_missing_source\": null,\n            \"preferred_attributes_missing_data\": null,\n            \"preferred_attributes_missing_source\": null,\n            \"completed_attributes\": null,\n            \"total_attributes\": null,\n            \"completeness\": null,\n            \"triggered_attribute_ids\": [],\n            \"update_date\": 1614092191178\n        },\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"template\": {\n            \"original_template_object_key\": \"_templates/lowes/1614092119052/Lowes-Use.xlsx\",\n            \"draft_template_object_key\": \"_templates/lowes/1614092119052/_final_template/Lowes-Use_draft_template.xlsx\",\n            \"final_template_object_key\": \"_templates/lowes/1614092119052/_final_template/Lowes-Use_draft_template.xlsx\",\n            \"channel_template_sheets\": [\n                {\n                    \"xlsx_tab_name\": \"Attributes\",\n                    \"attribute_name_row\": 5,\n                    \"attribute_key_row\": null,\n                    \"validation_level_row\": 4,\n                    \"body_row\": 6,\n                    \"mapped_column_index_in_sheet\": null,\n                    \"mapped_master_attribute_key\": null\n                }\n            ],\n            \"template_report\": {\n                \"attribute_list\": [\n                    \"Information Provider GLN\",\n                    \"VBU\",\n                    \"Assortment Number\",\n                    \"Item Number\",\n                    \"Country\",\n                    \"Merchandise Sub Division\",\n                    \"Dropship Item?\",\n                    \"globalTradeItemNumber (GTIN)\",\n                    \"Highest Level GTIN\",\n                    \"Product Name\",\n                    \"MFG Part # (OEM)\",\n                    \"California Proposition 65 Warning Required\",\n                    \"California Prop 65 Warning Label (Digital Asset)\",\n                    \"Item has Restrictions?\",\n                    \"Lowe's Vendor Type\",\n                    \"Additional VBU(s)\",\n                    \"Additional Item Number(s)\",\n                    \"Marketing Copy\",\n                    \"Feature - Benefit Bullet 1\",\n                    \"Feature - Benefit Bullet 2\",\n                    \"Feature - Benefit Bullet 3\",\n                    \"Feature - Benefit Bullet 4\",\n                    \"Feature - Benefit Bullet 5\",\n                    \"Feature - Benefit Bullet 6\",\n                    \"Feature - Benefit Bullet 7\",\n                    \"Feature - Benefit Bullet 8\",\n                    \"Feature - Benefit Bullet 9\",\n                    \"Image Disclaimer\",\n                    \"Weight Capacity-UOM:lbs.\",\n                    \"Number of Treads-UOM:NA\",\n                    \"Staircase Height-UOM:Feet\",\n                    \"Rise Between Treads-UOM:Inches\",\n                    \"Tread Thickness-UOM:Inches\",\n                    \"Handrail Width-UOM:Inches\",\n                    \"Tread Width-UOM:Inches\",\n                    \"Tread Depth-UOM:Inches\",\n                    \"Turn of Spiral\",\n                    \"Staircase Diameter\",\n                    \"Color/Finish Family\",\n                    \"Center Pole Diameter\",\n                    \"Warranty\",\n                    \"Handrail Material\",\n                    \"Collection Name\",\n                    \"Installation Hardware Included\",\n                    \"Attachment Method\",\n                    \"Tread Material\",\n                    \"Adjustable Height\",\n                    \"Use Location\",\n                    \"Handrail Length-UOM:Feet\",\n                    \"Type\",\n                    \"Manufacturer Color/Finish\",\n                    \"Main Product Image\",\n                    \"Detailed Product View 2\",\n                    \"Detailed Product View 3\",\n                    \"Detailed Product View 4\",\n                    \"Detailed Product View 5\",\n                    \"Detailed Product View 6\",\n                    \"Detailed Product View 7\",\n                    \"Detailed Product View 8\",\n                    \"Detailed Product View 9\",\n                    \"Detailed Product View 10\",\n                    \"Detailed Product View 11\",\n                    \"Detailed Product View 12\",\n                    \"Detailed Product View 13\",\n                    \"Detailed Product View 14\",\n                    \"Detailed Product View 15\",\n                    \"Detailed Product View 16\",\n                    \"Detailed Product View 17\",\n                    \"Detailed Product View 18\",\n                    \"Detailed Product View 19\",\n                    \"Detailed Product View 20\",\n                    \"360 Degree Spin (Lowe's)\",\n                    \"Assembly Instruction Video\",\n                    \"Product Demo Video\",\n                    \"Product Installation Video\",\n                    \"Product Marketing Video\",\n                    \"Product Review Video\",\n                    \"Brand Name Logo\",\n                    \"Consumer Facing Package Label\",\n                    \"Dimensions Guide\",\n                    \"Energy Guide - PDF\",\n                    \"How to Manual\",\n                    \"Installation Guide - PDF\",\n                    \"Instructions / Assembly\",\n                    \"Lighting Facts\",\n                    \"MSDS - PDF\",\n                    \"Operating Manual\",\n                    \"Product Certifications\",\n                    \"Warranty - PDF\",\n                    \"Use and Care Manual - PDF\",\n                    \"Barcode\",\n                    \"Import Home Office VBU - CAN\",\n                    \"Import Home Office VBU - USA\",\n                    \"Factory Name\",\n                    \"Factory Party ID\",\n                    \"GTIN Wood Percentage\",\n                    \"TSCA Title VI\",\n                    \"Hazardous Indicator\",\n                    \"Component Material\",\n                    \"Does this item include any textile materials?\",\n                    \"In what country was the fabric cut?\",\n                    \"In what country was the fabric formed? (i.e., knit, woven, etc.)\",\n                    \"In what country was the fabric sewn?\",\n                    \"Is the fabric knit, woven, or non-woven?\",\n                    \"What is the name for the mill where the fabric was formed? (i.e., knit, woven, etc.)\",\n                    \"Mill Address\",\n                    \"Does this product consist of multiple items (set)?\",\n                    \"ITEM NET Weight (w/o packaging of any kind) in Pounds\",\n                    \"Origin Country\",\n                    \"Shipping Port (Code)\",\n                    \"Shipping Port Description\",\n                    \"Custom HTS Code\",\n                    \"Item Net Weight\",\n                    \"Item Description\",\n                    \"Import Builder Shipping Type\",\n                    \"Supporting Sourcing Office Location\",\n                    \"Ship from VBU (Ship from Factory)\",\n                    \"Vendor Contact Name\",\n                    \"Vendor Email Address\",\n                    \"Vendor Name\",\n                    \"Vendor Phone Number\",\n                    \"Manufacturer Name\",\n                    \"Manufacturer Address\",\n                    \"Lowes Merchandising Contact Name\",\n                    \"Lowes Merchandising Contact Email\",\n                    \"Item Description\",\n                    \"Custom HTS Code\",\n                    \"Component Material\",\n                    \"Country Of Origin\",\n                    \"Is Product NAFTA Eligible (Made in USA or Mexico)\",\n                    \"What is the product’s function\"\n                ],\n                \"missing_dictionary_attributes\": [\n                    \"Dropship Item?\",\n                    \"Image Disclaimer\",\n                    \"Weight Capacity-UOM:lbs.\",\n                    \"Number of Treads-UOM:NA\",\n                    \"Staircase Height-UOM:Feet\",\n                    \"Rise Between Treads-UOM:Inches\",\n                    \"Tread Thickness-UOM:Inches\",\n                    \"Handrail Width-UOM:Inches\",\n                    \"Tread Width-UOM:Inches\",\n                    \"Tread Depth-UOM:Inches\",\n                    \"Turn of Spiral\",\n                    \"Staircase Diameter\",\n                    \"Center Pole Diameter\",\n                    \"Handrail Material\",\n                    \"Installation Hardware Included\",\n                    \"Tread Material\",\n                    \"Adjustable Height\",\n                    \"Use Location\",\n                    \"Handrail Length-UOM:Feet\",\n                    \"360 Degree Spin (Lowe's)\",\n                    \"Barcode\",\n                    \"ITEM NET Weight (w/o packaging of any kind) in Pounds\",\n                    \"Custom HTS Code\",\n                    \"Item Description\",\n                    \"Manufacturer Name\",\n                    \"Lowes Merchandising Contact Email\",\n                    \"Item Description\",\n                    \"Custom HTS Code\",\n                    \"Component Material\"\n                ],\n                \"picklist_attributes_count\": 28,\n                \"conditionally_required_attributes_count\": 42,\n                \"recommended_attributes_count\": 56,\n                \"scanned_column_count\": 131,\n                \"measurement_attributes_count\": 0,\n                \"picklist_conflicts\": {},\n                \"read_only_attributes_map\": {},\n                \"total_attributes_count\": 131\n            },\n            \"excel_comment_format\": \"JSON\"\n        },\n        \"logo\": {\n            \"id\": 20620145,\n            \"name\": \"LOWES\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_channels/_logos/lowes.png\",\n            \"icon\": null,\n            \"key\": \"LOWES\",\n            \"direction\": \"OUTBOUND\",\n            \"file_extension\": null,\n            \"default_asset_transformation\": {\n                \"strip\": false\n            },\n            \"excel_setting\": {\n                \"attribute_name_row\": null,\n                \"attribute_key_row\": null,\n                \"validation_level_row\": null,\n                \"body_row\": null,\n                \"xlsx_tab_name\": null\n            },\n            \"category\": null,\n            \"flags\": {\n                \"enable_non_template_install\": false,\n                \"skip_items\": false,\n                \"skip_attributes\": false,\n                \"skip_content_grader\": false,\n                \"scan_item_source\": false,\n                \"template_based\": true,\n                \"delta_based\": false\n            },\n            \"visual_element_for_logo\": null,\n            \"visual_element_for_icon\": {\n                \"id\": 105,\n                \"name\": \"lowes\",\n                \"keywords\": null,\n                \"type\": \"ROUND\",\n                \"value\": \"https://s3-us-west-2.amazonaws.com/catsy.101/_visual_elements/lowes_round.svg\"\n            },\n            \"distributor_client_id\": null\n        },\n        \"integration_id\": null,\n        \"file_transfer_integration_id\": null,\n        \"asset_transfer_integration_id\": null,\n        \"attribute_group_id\": 20614074,\n        \"gmail_address\": null,\n        \"google_spreadsheet_id\": null,\n        \"store_url\": null,\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"settings\": {\n            \"skip_price_update\": false,\n            \"skip_weight_update\": false,\n            \"switch_to_shopify_media\": false,\n            \"process_variants_as_standalones\": false,\n            \"pin_to_dashboard\": false\n        },\n        \"store_admin_url\": null,\n        \"create_user_id\": 4018007131,\n        \"create_user_name\": \"Super Admin\",\n        \"create_date\": 1614092197369,\n        \"update_user_id\": 4018007131,\n        \"update_user_name\": \"Super Admin\",\n        \"update_date\": 1614092197369,\n        \"compute_completeness\": false,\n        \"protected_mode\": false\n    }\n]"}],"_postman_id":"3bb2ea37-d328-40ba-bc94-458c22ca9f80"},{"name":"Group Details","id":"186106e4-4fb2-499d-91f0-b91912c96d14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attribute_groups/:attribute_group_id?include_attributes&attribute_ids_only","description":"<h3 id=\"get-attribute-group-with-attributes\">Get Attribute Group with Attributes</h3>\n<p>This endpoint retrieves the details of a specific attribute group along with its attributes.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attribute_groups",":attribute_group_id"],"host":["https://api.catsy.com/v4"],"query":[{"description":{"content":"<p>Include full attribute definitions in the response.</p>\n","type":"text/plain"},"key":"include_attributes","value":null},{"description":{"content":"<p>Return only attribute IDs instead of full objects.</p>\n","type":"text/plain"},"key":"attribute_ids_only","value":null}],"variable":[{"type":"any","value":"{attribute_group_id}","key":"attribute_group_id"}]}},"response":[{"id":"c668fb61-b7c1-4164-a2e8-cb85ead0a8f2","name":"Group Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/attribute_groups/:attribute_group_id?include_attributes&attribute_ids_only","host":["https://api.catsy.com/v4"],"path":["attribute_groups",":attribute_group_id"],"query":[{"key":"include_attributes","value":null,"description":"Include full attribute definitions in the response."},{"key":"attribute_ids_only","value":null,"description":"Return only attribute IDs instead of full objects."}],"variable":[{"key":"attribute_group_id","value":"20586221"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:12:53 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=m22rbbWuTfODgftd0PilkHSHdwm2FBJqzjGJVcfy4PdgDWD7%2B%2B5vb8GPLyJY9M9EbKmhxs0rf4o20v0GJW2dg1vkl9D0DPiSENS%2FUcQjqgLlWzf8%2Bkmgo7i43p8gkgs%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360d7534d438274-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1923&min_rtt=1774&rtt_var=772&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1148&delivery_rate=816234&cwnd=243&unsent_bytes=0&cid=17251bd68d805187&ts=165&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 20586221,\n    \"name\": \"Digital Assets\",\n    \"key\": \"digital_assets\",\n    \"create_user_id\": 4018007130,\n    \"create_user_name\": \"Catsy Administrator\",\n    \"create_date\": 1611153367919,\n    \"update_user_id\": 4018007131,\n    \"update_user_name\": \"Super Admin\",\n    \"update_date\": 1732576463231,\n    \"add_to_new_products\": true\n}"}],"_postman_id":"186106e4-4fb2-499d-91f0-b91912c96d14"},{"name":"Attribute IDs in Group","id":"3f31071e-19d2-4b92-b49f-d75d05110b11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attribute_groups/:attribute_group_id/attribute_ids","description":"<h3 id=\"get-attribute-ids-by-attribute-group-id\">Get Attribute IDs by Attribute Group ID</h3>\n<p>This endpoint retrieves the attribute IDs associated with a specific attribute group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attribute_groups",":attribute_group_id","attribute_ids"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Attribute Group ID</p>\n","type":"text/plain"},"type":"any","value":"20586221","key":"attribute_group_id"}]}},"response":[{"id":"218be974-9e8b-4b4e-ae34-36d601f92f42","name":"Attribute IDs in Group","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/attribute_groups/:attribute_group_id/attribute_ids","host":["https://api.catsy.com/v4"],"path":["attribute_groups",":attribute_group_id","attribute_ids"],"variable":[{"key":"attribute_group_id","value":"20586221","description":"Internal Attribute Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:14:31 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=5XRaFT03zRNsU2rlkU18GRrJ3hgFkZo38xsnTcpYqNmfqbYncFumadY1BSxvBFOySFuSu%2FdOcBj7EPEyki587TfpY1b6x3UN%2F%2FbRD%2FH4Dsvgxsne9CTXWhPIOmIKQcA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360d9b76942c95e-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2264&min_rtt=1991&rtt_var=941&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1124&delivery_rate=727272&cwnd=247&unsent_bytes=0&cid=00eea0255692ecdf&ts=193&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    20586259,\n    20586254,\n    20586255,\n    20586256,\n    20586272,\n    20586279,\n    20615467,\n    20661631,\n    20905995,\n    20937227,\n    21292990,\n    21293001,\n    21293002,\n    21364143\n]"}],"_postman_id":"3f31071e-19d2-4b92-b49f-d75d05110b11"},{"name":"Attribute Names in Group","id":"e53aadae-cff7-45a0-9a85-82b982ddb3dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attribute_groups/:attribute_group_id/attributes","description":"<h3 id=\"get-attribute-group-attributes\">Get Attribute Group Attributes</h3>\n<p>This endpoint retrieves the attributes associated with a specific attribute group.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attribute_groups",":attribute_group_id","attributes"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Attribute Group ID</p>\n","type":"text/plain"},"type":"any","value":"{attribute_group_id}","key":"attribute_group_id"}]}},"response":[{"id":"96670187-f000-458e-b496-142b2ffaff67","name":"Attribute Names in Group","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/attribute_groups/:attribute_group_id/attributes","host":["https://api.catsy.com/v4"],"path":["attribute_groups",":attribute_group_id","attributes"],"variable":[{"key":"attribute_group_id","value":"20586221","description":"Internal Attribute Group ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:15:35 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=2Qr1YNjX7tVGjf8QjKXmDt4%2FxLdR2C9%2BadNA1jNhtd97DsOmQj3%2BUAaiCY6%2FTyIBFHWaU6qHHStjxK9jm4YZczJHKStxp%2BN%2FdEldJoHbChkswlTktGiu6Jw3f4NGffQ%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9360db49cfa1c9b3-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2200&min_rtt=2077&rtt_var=867&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1121&delivery_rate=697159&cwnd=250&unsent_bytes=0&cid=33a0957602e0835a&ts=308&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 20586259,\n        \"name\": \"Hero Image\",\n        \"key\": \"main_image\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1611153367919,\n        \"createUserName\": \"Catsy Administrator\",\n        \"updateDate\": 1716641773830,\n        \"localizedId\": 20586319,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20586319,\n                \"name\": \"Hero Image\",\n                \"key\": \"main_image\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20586319,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20586259,\n                \"parentKey\": \"main_image\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {\n                    \"minLength\": \"1\",\n                    \"maxLength\": \"4000\"\n                }\n            }\n        ],\n        \"parentId\": 20586259,\n        \"parentKey\": \"main_image\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {\n            \"minLength\": \"1\",\n            \"maxLength\": \"4000\"\n        },\n        \"multipartElements\": [],\n        \"createuserId\": 4018007130,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20586254,\n        \"name\": \"Secondary Image\",\n        \"key\": \"image_2\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1611153367919,\n        \"createUserName\": \"Catsy Administrator\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20586314,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20586314,\n                \"name\": \"Secondary Image\",\n                \"key\": \"image_2\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20586314,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20586254,\n                \"parentKey\": \"image_2\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20586254,\n        \"parentKey\": \"image_2\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007130,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20586255,\n        \"name\": \"In Use\",\n        \"key\": \"image_3\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1611153367919,\n        \"createUserName\": \"Catsy Administrator\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20586315,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20586315,\n                \"name\": \"In Use\",\n                \"key\": \"image_3\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20586315,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20586255,\n                \"parentKey\": \"image_3\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20586255,\n        \"parentKey\": \"image_3\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007130,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20586256,\n        \"name\": \"Lifestyle Image\",\n        \"key\": \"lifestyle_image\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1611153367919,\n        \"createUserName\": \"Catsy Administrator\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20586316,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20586316,\n                \"name\": \"Lifestyle Image\",\n                \"key\": \"lifestyle_image\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20586316,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20586256,\n                \"parentKey\": \"lifestyle_image\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20586256,\n        \"parentKey\": \"lifestyle_image\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007130,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20586272,\n        \"name\": \"Sell Sheet\",\n        \"key\": \"sell_sheet\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1611153367919,\n        \"createUserName\": \"Catsy Administrator\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20586332,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20586332,\n                \"name\": \"Sell Sheet\",\n                \"key\": \"sell_sheet\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20586332,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20586272,\n                \"parentKey\": \"sell_sheet\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20586272,\n        \"parentKey\": \"sell_sheet\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007130,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20586279,\n        \"name\": \"Spec Sheet\",\n        \"key\": \"spec_sheet\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1611153367919,\n        \"createUserName\": \"Catsy Administrator\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20586339,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20586339,\n                \"name\": \"Spec Sheet\",\n                \"key\": \"spec_sheet\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20586339,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20586279,\n                \"parentKey\": \"spec_sheet\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20586279,\n        \"parentKey\": \"spec_sheet\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007130,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20615467,\n        \"name\": \"Repair Policy\",\n        \"key\": \"repair_policy\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1614099255104,\n        \"createUserName\": \"Alex Kam\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20615468,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20615468,\n                \"name\": \"Repair Policy\",\n                \"key\": \"repair_policy\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20615468,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20615467,\n                \"parentKey\": \"repair_policy\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20615467,\n        \"parentKey\": \"repair_policy\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007204,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20661631,\n        \"name\": \"Assembly Instructions\",\n        \"key\": \"assembly_instructions\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1622730511513,\n        \"createUserName\": \"Super Admin\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20661632,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20661632,\n                \"name\": \"Assembly Instructions\",\n                \"key\": \"assembly_instructions\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20661632,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20661631,\n                \"parentKey\": \"assembly_instructions\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20661631,\n        \"parentKey\": \"assembly_instructions\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007131,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20905995,\n        \"name\": \"Safety Data Sheet\",\n        \"key\": \"safety_data_sheet\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1655237530269,\n        \"createUserName\": \"Super Admin\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20905995,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20905995,\n                \"name\": \"Safety Data Sheet\",\n                \"key\": \"safety_data_sheet\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20905995,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20905995,\n                \"parentKey\": \"safety_data_sheet\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20905995,\n        \"parentKey\": \"safety_data_sheet\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007131,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 20937227,\n        \"name\": \"Action Shot\",\n        \"key\": \"action_shot\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1661793208206,\n        \"createUserName\": \"Super Admin\",\n        \"updateDate\": 1684768512687,\n        \"localizedId\": 20937227,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 20937227,\n                \"name\": \"Action Shot\",\n                \"key\": \"action_shot\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 20937227,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 20937227,\n                \"parentKey\": \"action_shot\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 20937227,\n        \"parentKey\": \"action_shot\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007131,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 21292990,\n        \"name\": \"User Manual\",\n        \"key\": \"user_manual\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1717680531236,\n        \"createUserName\": \"Super Admin\",\n        \"updateDate\": 1717680531236,\n        \"localizedId\": 21292990,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 21292990,\n                \"name\": \"User Manual\",\n                \"key\": \"user_manual\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 21292990,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 21292990,\n                \"parentKey\": \"user_manual\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 21292990,\n        \"parentKey\": \"user_manual\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007131,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 21293001,\n        \"name\": \"Video\",\n        \"key\": \"video\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1717681226167,\n        \"createUserName\": \"Super Admin\",\n        \"updateDate\": 1717681226167,\n        \"localizedId\": 21293001,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 21293001,\n                \"name\": \"Video\",\n                \"key\": \"video\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 21293001,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 21293001,\n                \"parentKey\": \"video\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 21293001,\n        \"parentKey\": \"video\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007131,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 21293002,\n        \"name\": \"Video 2\",\n        \"key\": \"video_2\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1717681351107,\n        \"createUserName\": \"Super Admin\",\n        \"updateDate\": 1717681351107,\n        \"localizedId\": 21293002,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 21293002,\n                \"name\": \"Video 2\",\n                \"key\": \"video_2\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 21293002,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 21293002,\n                \"parentKey\": \"video_2\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 21293002,\n        \"parentKey\": \"video_2\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007131,\n        \"updateuserId\": 4018007131\n    },\n    {\n        \"id\": 21364143,\n        \"name\": \"Auto Linked Image\",\n        \"key\": \"auto_linked_image\",\n        \"dataType\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validationVersion\": \"XSD\",\n        \"validationLevel\": \"OPTIONAL\",\n        \"conditionalAttributeKeys\": [],\n        \"updateUserName\": \"Super Admin\",\n        \"createDate\": 1732576463065,\n        \"createUserName\": \"Super Admin\",\n        \"updateDate\": 1732662150472,\n        \"localizedId\": 21364143,\n        \"localeId\": 4000001089,\n        \"locale\": \"global\",\n        \"localAttributes\": [\n            {\n                \"id\": 21364143,\n                \"name\": \"Auto Linked Image\",\n                \"key\": \"auto_linked_image\",\n                \"dataType\": \"ASSET\",\n                \"localizedId\": 21364143,\n                \"localeId\": 4000001089,\n                \"locale\": \"global\",\n                \"parentId\": 21364143,\n                \"parentKey\": \"auto_linked_image\",\n                \"picklistId\": null,\n                \"picklistType\": null,\n                \"picklistValues\": [],\n                \"element\": {}\n            }\n        ],\n        \"parentId\": 21364143,\n        \"parentKey\": \"auto_linked_image\",\n        \"evaluation\": {\n            \"specificity\": \"MODEL\",\n            \"engine\": \"NONE\",\n            \"editor\": \"NONE\",\n            \"formula\": null,\n            \"enhancedContentTemplateId\": null,\n            \"display\": null,\n            \"mappedKey\": null,\n            \"referencedKeys\": null\n        },\n        \"conditions\": {},\n        \"picklistId\": null,\n        \"picklistType\": null,\n        \"picklistValues\": [],\n        \"element\": {},\n        \"multipartElements\": [],\n        \"createuserId\": 4018007131,\n        \"updateuserId\": 4018007131\n    }\n]"}],"_postman_id":"e53aadae-cff7-45a0-9a85-82b982ddb3dd"},{"name":"Create Group(s)","id":"9b5579e7-099f-4a66-ba99-1ab2e0dbe2b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"bucket\": \"ASSET\",\r\n    \"display_type\": \"LIST\",\r\n    \"help_text\": \"Specs for cutting and lighting tools.\",\r\n    \"key\": \"cutting_lighting_specs\",\r\n    \"memberships\": [\r\n      {\r\n        \"attribute_id\": \"21348715\",\r\n        \"attribute_subgroup_id\": 1,\r\n        \"validation_level\": \"REQUIRED\"\r\n      },\r\n      {\r\n        \"attribute_id\": \"21238793\",\r\n        \"attribute_subgroup_id\": 1,\r\n        \"validation_level\": \"OPTIONAL\"\r\n      }\r\n    ],\r\n    \"name\": \"Cutting & Lighting Specs\",\r\n    \"product_type\": true,\r\n    \"seq_order\": 1,\r\n    \"simple_product_pre_selected\": false\r\n  },\r\n  {\r\n    \"bucket\": \"ASSET\",\r\n    \"display_type\": \"LIST\",\r\n    \"help_text\": \"Specs for drilling and optical measurement tools.\",\r\n    \"key\": \"drilling_optics_specs\",\r\n    \"memberships\": [\r\n      {\r\n        \"attribute_id\": \"21086963\",\r\n        \"attribute_subgroup_id\": 2,\r\n        \"validation_level\": \"REQUIRED\"\r\n      },\r\n      {\r\n        \"attribute_id\": \"20660352\",\r\n        \"attribute_subgroup_id\": 2,\r\n        \"validation_level\": \"OPTIONAL\"\r\n      }\r\n    ],\r\n    \"name\": \"Drilling & Optics Specs\",\r\n    \"product_type\": true,\r\n    \"seq_order\": 2,\r\n    \"simple_product_pre_selected\": false\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/attribute_groups/batches","description":"<h3 id=\"create-attribute-group-batch\">Create Attribute Group Batch</h3>\n<p>This endpoint allows the client to create attribute groups in batches.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p>The request body should be in JSON format and contain an array of objects, each representing an attribute group to be created.</p>\n<ul>\n<li><p><code>bucket</code> (string): The bucket for the attribute group.</p>\n</li>\n<li><p><code>display_type</code> (string): The display type for the attribute group.</p>\n</li>\n<li><p><code>help_text</code> (string): The help text for the attribute group.</p>\n</li>\n<li><p><code>key</code> (string): The key for the attribute group.</p>\n</li>\n<li><p><code>memberships</code> (array): An array of memberships for the attribute group, each containing:</p>\n<ul>\n<li><p><code>attribute_id</code> (string): The attribute ID.</p>\n</li>\n<li><p><code>attribute_subgroup_id</code> (integer): The attribute subgroup ID.</p>\n</li>\n<li><p><code>validation_level</code> (string): The validation level for the membership.</p>\n</li>\n</ul>\n</li>\n<li><p><code>name</code> (string): The name of the attribute group.</p>\n</li>\n<li><p><code>product_type</code> (boolean): Indicates if the attribute group is for a product type.</p>\n</li>\n<li><p><code>seq_order</code> (integer): The sequence order for the attribute group.</p>\n</li>\n<li><p><code>simple_product_pre_selected</code> (boolean): Indicates if the attribute group is pre-selected for a simple product.</p>\n</li>\n</ul>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attribute_groups","batches"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"997eff32-38fd-4b4c-bab9-aa470760cd08","name":"Create Group(s)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"bucket\": \"ASSET\",\r\n    \"display_type\": \"LIST\",\r\n    \"help_text\": \"Specs for cutting and lighting tools.\",\r\n    \"key\": \"cutting_lighting_specs\",\r\n    \"memberships\": [\r\n      {\r\n        \"attribute_id\": \"21348715\",\r\n        \"attribute_subgroup_id\": 1,\r\n        \"validation_level\": \"REQUIRED\"\r\n      },\r\n      {\r\n        \"attribute_id\": \"21238793\",\r\n        \"attribute_subgroup_id\": 1,\r\n        \"validation_level\": \"OPTIONAL\"\r\n      }\r\n    ],\r\n    \"name\": \"Cutting & Lighting Specs\",\r\n    \"product_type\": true,\r\n    \"seq_order\": 1,\r\n    \"simple_product_pre_selected\": false\r\n  },\r\n  {\r\n    \"bucket\": \"ASSET\",\r\n    \"display_type\": \"LIST\",\r\n    \"help_text\": \"Specs for drilling and optical measurement tools.\",\r\n    \"key\": \"drilling_optics_specs\",\r\n    \"memberships\": [\r\n      {\r\n        \"attribute_id\": \"21086963\",\r\n        \"attribute_subgroup_id\": 2,\r\n        \"validation_level\": \"REQUIRED\"\r\n      },\r\n      {\r\n        \"attribute_id\": \"20660352\",\r\n        \"attribute_subgroup_id\": 2,\r\n        \"validation_level\": \"OPTIONAL\"\r\n      }\r\n    ],\r\n    \"name\": \"Drilling & Optics Specs\",\r\n    \"product_type\": true,\r\n    \"seq_order\": 2,\r\n    \"simple_product_pre_selected\": false\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/attribute_groups/batches"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:48:30 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=Y1Bo0fbmWXxuxYdbYbQmGNSdN5EuLPFw%2BGP1IxU3gNuBAwMxbQqGUhCL9wc%2BGZY%2BOUd0CfaxE93TPTdfZzdgary%2F4MQNLfVAfkyrS3%2FQuviNVGITcB6uSBMahzFrrcI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"93610b7e2bd91281-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2339&min_rtt=2266&rtt_var=902&sent=3&recv=6&lost=0&retrans=0&sent_bytes=219&recv_bytes=2353&delivery_rate=639011&cwnd=244&unsent_bytes=0&cid=dad9ac03d2bc5018&ts=1222&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 21540483,\n        \"name\": \"Cutting & Lighting Specs\",\n        \"key\": \"cutting_lighting_specs\",\n        \"create_user_id\": 4018007130,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"create_date\": 1745617709916,\n        \"update_user_id\": 4018007130,\n        \"update_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1745617709916,\n        \"product_type\": true\n    },\n    {\n        \"id\": 21540484,\n        \"name\": \"Drilling & Optics Specs\",\n        \"key\": \"drilling_optics_specs\",\n        \"create_user_id\": 4018007130,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"create_date\": 1745617709916,\n        \"update_user_id\": 4018007130,\n        \"update_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1745617709916,\n        \"product_type\": true\n    }\n]"}],"_postman_id":"9b5579e7-099f-4a66-ba99-1ab2e0dbe2b8"}],"id":"0196d668-4c24-49f7-b48d-e8e317ec7b29","_postman_id":"0196d668-4c24-49f7-b48d-e8e317ec7b29","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}}},{"name":"Channels","item":[{"name":"Channel Details","id":"861a0526-f4ed-4f3f-856d-4976a4f38396","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/channels/:channel_id","description":"<h3 id=\"get-channel-details\">Get Channel Details</h3>\n<p>This endpoint retrieves information about a specific channel.</p>\n<h4 id=\"request\">Request</h4>\n<p>No request body is required for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["channels",":channel_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"{channel_id}","key":"channel_id"}]}},"response":[{"id":"c6446b9b-33d4-4c98-8efd-aae808a0d2d6","name":"Channel Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/channels/:channel_id","host":["https://api.catsy.com/v4"],"path":["channels",":channel_id"],"variable":[{"key":"channel_id","value":"14735890"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:56:55 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=Xx8eVz06taunwc1nMwziVgikGGhFlmoVT2s1IxisBiHIBuW5%2BCm5qW2l9ZFJyeHrtJDxlBadZ%2FJVbDtVEA2pFEsvAdlgb27XgRwPb2690KDjHfcLXTUKMnu0%2FBIdae4%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936117d2dee3d6eb-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2107&min_rtt=1932&rtt_var=849&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1102&delivery_rate=749482&cwnd=250&unsent_bytes=0&cid=557bb60693f0de56&ts=213&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 14735890,\n    \"name\": \"CSV EAV\",\n    \"filename\": null,\n    \"prefix\": \"sabv\",\n    \"notification\": null,\n    \"collection\": {\n        \"id\": 4004679801,\n        \"number\": \"4004679801\",\n        \"name\": \"CSV EAV\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1732135646562,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1732135646562,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    \"completeness_report\": {\n        \"required_attributes_missing_data\": null,\n        \"required_attributes_missing_source\": null,\n        \"optional_attributes_missing_data\": null,\n        \"optional_attributes_missing_source\": null,\n        \"preferred_attributes_missing_data\": null,\n        \"preferred_attributes_missing_source\": null,\n        \"completed_attributes\": null,\n        \"total_attributes\": null,\n        \"completeness\": null,\n        \"triggered_attribute_ids\": [],\n        \"update_date\": 1732135647689\n    },\n    \"default_asset_transformation\": {\n        \"strip\": false\n    },\n    \"template\": {\n        \"original_template_object_key\": null,\n        \"draft_template_object_key\": null,\n        \"final_template_object_key\": null,\n        \"channel_template_sheets\": [],\n        \"template_report\": {\n            \"attribute_list\": [],\n            \"missing_dictionary_attributes\": [],\n            \"picklist_attributes_count\": null,\n            \"conditionally_required_attributes_count\": null,\n            \"recommended_attributes_count\": null,\n            \"scanned_column_count\": null,\n            \"measurement_attributes_count\": null,\n            \"picklist_conflicts\": {},\n            \"read_only_attributes_map\": {},\n            \"total_attributes_count\": 0\n        },\n        \"excel_comment_format\": \"JSON\"\n    },\n    \"logo\": {\n        \"id\": 20620267,\n        \"name\": \"CSV EAV\",\n        \"url\": \"https://s3.us-west-2.amazonaws.com/catsy.101/_channels/_logos/csv-eav.png\",\n        \"icon\": null,\n        \"key\": \"CSV_EAV\",\n        \"direction\": \"OUTBOUND\",\n        \"file_extension\": \"csv\",\n        \"default_asset_transformation\": {\n            \"strip\": false\n        },\n        \"excel_setting\": {\n            \"attribute_name_row\": null,\n            \"attribute_key_row\": null,\n            \"validation_level_row\": null,\n            \"body_row\": null,\n            \"xlsx_tab_name\": null\n        },\n        \"category\": null,\n        \"flags\": {\n            \"enable_non_template_install\": true,\n            \"skip_items\": false,\n            \"skip_attributes\": false,\n            \"skip_content_grader\": false,\n            \"scan_item_source\": false,\n            \"template_based\": false,\n            \"delta_based\": false\n        },\n        \"visual_element_for_logo\": null,\n        \"visual_element_for_icon\": null,\n        \"distributor_client_id\": null\n    },\n    \"integration_id\": null,\n    \"file_transfer_integration_id\": 2513123,\n    \"asset_transfer_integration_id\": 2513123,\n    \"attribute_group_id\": 21361698,\n    \"gmail_address\": null,\n    \"google_spreadsheet_id\": null,\n    \"store_url\": null,\n    \"visual_element_for_logo\": null,\n    \"visual_element_for_icon\": null,\n    \"settings\": {\n        \"skip_price_update\": false,\n        \"skip_weight_update\": false,\n        \"switch_to_shopify_media\": false,\n        \"process_variants_as_standalones\": false,\n        \"pin_to_dashboard\": false\n    },\n    \"store_admin_url\": null,\n    \"create_user_id\": 4018007131,\n    \"create_user_name\": \"Super Admin\",\n    \"create_date\": 1732135647068,\n    \"update_user_id\": 4018007131,\n    \"update_user_name\": \"Super Admin\",\n    \"update_date\": 1745535645860,\n    \"compute_completeness\": false,\n    \"protected_mode\": false\n}"}],"_postman_id":"861a0526-f4ed-4f3f-856d-4976a4f38396"},{"name":"Channel Attributes","id":"e21d6e73-ebbb-4fe6-8f39-e47cff63ecae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/channels/:channel_id/attributes","description":"<h3 id=\"get-channel-attributes\">Get Channel Attributes</h3>\n<p>This endpoint retrieves the attributes for a specific channel.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["channels",":channel_id","attributes"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Channel ID</p>\n","type":"text/plain"},"type":"any","value":"{channel_id}","key":"channel_id"}]}},"response":[{"id":"b59f8cf8-c879-45c7-a020-23870c583738","name":"Channel Attributes","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/channels/:channel_id/attributes","host":["https://api.catsy.com/v4"],"path":["channels",":channel_id","attributes"],"variable":[{"key":"channel_id","value":"14735890"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 21:58:25 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=36pFPxvll3uMFgr1JC%2BEhXlJDDUF%2FibAP7KGh97g2XHCStucjFYxMJFtsO78ym3aXjvlFwKJ%2FKRhdCQ6aKrUyEjGLFg9yLygawNRvM9mvabQU2tD%2FbHxEa2%2BMSv167w%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"93611a0b1eb4d6b7-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1896&min_rtt=1745&rtt_var=762&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1113&delivery_rate=829799&cwnd=250&unsent_bytes=0&cid=5715728c9e616284&ts=147&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 21361701,\n        \"name\": \"SKU\",\n        \"key\": \"sabv_number\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"validation_level\": \"OPTIONAL\",\n        \"channel_attribute\": true,\n        \"prefix\": \"sabv\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1732135647068,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1732135647068,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"MAPPED\",\n            \"formula\": \"product.number\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"number\",\n            \"mapped_key\": \"number\",\n            \"referenced_keys\": [\n                \"number\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21361699,\n        \"name\": \"Hero Image\",\n        \"key\": \"sabv_main_image\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"validation_level\": \"OPTIONAL\",\n        \"channel_attribute\": true,\n        \"prefix\": \"sabv\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1732135647068,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1732135647068,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"MAPPED\",\n            \"formula\": \"product.main_image\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"main_image\",\n            \"mapped_key\": \"main_image\",\n            \"referenced_keys\": [\n                \"main_image\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21361702,\n        \"name\": \"Status\",\n        \"key\": \"sabv_status\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"validation_level\": \"OPTIONAL\",\n        \"channel_attribute\": true,\n        \"prefix\": \"sabv\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1732135647068,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1732135647068,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"MAPPED\",\n            \"formula\": \"product.status\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"status\",\n            \"mapped_key\": \"status\",\n            \"referenced_keys\": [\n                \"status\"\n            ]\n        },\n        \"picklist_id\": 107794,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5674672,\n                \"value\": \"Active\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5674674,\n                \"value\": \"Dis-Continued\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5674673,\n                \"value\": \"Replaced\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21361700,\n        \"name\": \"Name\",\n        \"key\": \"sabv_name\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"validation_level\": \"OPTIONAL\",\n        \"channel_attribute\": true,\n        \"prefix\": \"sabv\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1732135647068,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1732135647068,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"MAPPED\",\n            \"formula\": \"product.name\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"name\",\n            \"mapped_key\": \"name\",\n            \"referenced_keys\": [\n                \"name\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21361703,\n        \"name\": \"Temperature\",\n        \"key\": \"sabv_temperature2\",\n        \"data_type\": \"MEASUREMENT_V2\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"validation_level\": \"OPTIONAL\",\n        \"channel_attribute\": true,\n        \"prefix\": \"sabv\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1732135647068,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1732135647068,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"MAPPED\",\n            \"formula\": \"product.temperature2\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"temperature2\",\n            \"mapped_key\": \"temperature2\",\n            \"referenced_keys\": [\n                \"temperature2\"\n            ]\n        },\n        \"measurement\": {\n            \"family_id\": 5,\n            \"family_name\": \"Temperature\",\n            \"system\": \"METRIC\",\n            \"locale\": \"en\",\n            \"units\": [\n                {\n                    \"id\": 37,\n                    \"name\": \"Celsius\",\n                    \"abbreviation\": \"C\"\n                }\n            ],\n            \"default_unit_id\": 37,\n            \"attribute_link\": \"temp2\"\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21371149,\n        \"name\": \"CPSA\",\n        \"key\": \"sabv_cpsa\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"validation_level\": \"OPTIONAL\",\n        \"channel_attribute\": true,\n        \"prefix\": \"sabv\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1733942865339,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1733942879739,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CONSTANT\",\n            \"formula\": \"\\\"CPSA\\\"\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"CPSA\",\n            \"mapped_key\": null,\n            \"referenced_keys\": []\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    }\n]"}],"_postman_id":"e21d6e73-ebbb-4fe6-8f39-e47cff63ecae"},{"name":"Export Products","id":"0f11f767-d120-451c-b063-54d19b7e084b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.catsy.com/v4/channels/:channel_id/products/download?export_type=BOTH","description":"<h3 id=\"export-products-in-channel\">Export Products in Channel</h3>\n<p>The endpoint triggers an POST request to download products for a specific channel and provides a download link.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["channels",":channel_id","products","download"],"host":["https://api.catsy.com/v4"],"query":[{"description":{"content":"<p>Determines if you want attributes listed with KEYS or NAMES or BOTH</p>\n","type":"text/plain"},"key":"export_type","value":"BOTH"}],"variable":[{"description":{"content":"<p>Internal Channel ID</p>\n","type":"text/plain"},"type":"any","value":"{channel_id}","key":"channel_id"}]}},"response":[{"id":"56fa5a1e-b53e-475a-bcf6-b682db6a411d","name":"Export Products","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.catsy.com/v4/channels/:channel_id/products/download?export_type=BOTH","host":["https://api.catsy.com/v4"],"path":["channels",":channel_id","products","download"],"query":[{"key":"export_type","value":"BOTH","description":"Determines if you want attributes listed with KEYS or NAMES or BOTH"}],"variable":[{"key":"channel_id","value":"{channel_id}","description":"Internal Channel ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:00:54 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"Set-Cookie","value":"JSESSIONID=Y2JjODg5YjMtOTYxZC00NmZkLWE3YTMtOGZlZWNiYTA5MDlh; Path=/; Secure; HttpOnly; SameSite=None"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=xGNWMz2a3atUEp3g3Ka8nT912xAUWijEiCDeS%2Be54o7RXbKRx7iTqRh74Xt%2FO%2F17dGvslp%2FypqxUDhB7vM9J90l8L0cPkXFiqKLvtM4Wc0kRhiod7RX8ScLskCax21U%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"93611d85ea632414-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2146&min_rtt=1965&rtt_var=866&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1088&delivery_rate=736895&cwnd=233&unsent_bytes=0&cid=2d0ced2ddadbf9aa&ts=5789&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"downloadUrl\": \"https://s3.us-west-2.amazonaws.com/catsy.804/_channels/EXCEL/zlgi_/Export%201.json?versionId=B4jvwlWQ8JMDk5GUiJUM7voSKRgW2PiH\"\n}"}],"_postman_id":"0f11f767-d120-451c-b063-54d19b7e084b"},{"name":"Filter Products","id":"52b4784f-7967-4026-a5b6-eb6f2ff05bf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKeys\": [\r\n      \"number\",\r\n      \"name\",\r\n      \"status\",\r\n      \"category\"\r\n    ],\r\n    \"attributeKey\": \"status\",\r\n    \"operator\": \"is\",\r\n    \"value\": \"Active\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/channels/:channel_id/products/filter","description":"<h3 id=\"filter-products-in-channel\">Filter Products in Channel</h3>\n<p>This endpoint allows you to filter products based on specified criteria.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><strong>attributeKeys</strong> (array of strings) - The keys of the attributes to filter by.</p>\n</li>\n<li><p><strong>attributeKey</strong> (string) - The key of the attribute to filter by.</p>\n</li>\n<li><p><strong>operator</strong> (string) - The operator to apply for the filter.</p>\n</li>\n<li><p><strong>value</strong> (string) - The value to filter by.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["channels",":channel_id","products","filter"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>Filter by parent-child relationship: values like PARENT, STANDALONE, or VARIANT.</p>\n","type":"text/plain"},"key":"parentage","value":"PARENT"},{"disabled":true,"description":{"content":"<p>Filter results by membership status: ALL, COMPLETED, INVALID, or MISSING.</p>\n","type":"text/plain"},"key":"channel_member_type","value":null},{"disabled":true,"description":{"content":"<p>Filter by change type: CREATED, UPDATED, ADDED, DELETED, REMOVED, etc.</p>\n","type":"text/plain"},"key":"action","value":null},{"disabled":true,"description":{"content":"<p>Start date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"begin_date","value":null},{"disabled":true,"description":{"content":"<p>End date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"end_date","value":null},{"disabled":true,"description":{"content":"<p>Max number of records to return (default: 500).</p>\n","type":"text/plain"},"key":"limit","value":null},{"disabled":true,"description":{"content":"<p>Number of records to skip for pagination (default: 0).</p>\n","type":"text/plain"},"key":"offset","value":null}],"variable":[{"type":"any","value":"{channel_id}","key":"channel_id"}]}},"response":[{"id":"32f49d7c-2662-4af5-bfcc-77af7ba4df1e","name":"Filter Products","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKeys\": [\r\n      \"number\",\r\n      \"name\",\r\n      \"status\",\r\n      \"category\"\r\n    ],\r\n    \"attributeKey\": \"status\",\r\n    \"operator\": \"is\",\r\n    \"value\": \"Active\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/channels/:channel_id/products/filter?parentage=PARENT","host":["https://api.catsy.com/v4"],"path":["channels",":channel_id","products","filter"],"query":[{"key":"parentage","value":"PARENT","description":"Filter by parent-child relationship: values like PARENT, STANDALONE, or VARIANT."},{"key":"channel_member_type","value":null,"description":"Filter results by membership status: ALL, COMPLETED, INVALID, or MISSING.","disabled":true},{"key":"action","value":null,"description":"Filter by change type: CREATED, UPDATED, ADDED, DELETED, REMOVED, etc.","disabled":true},{"key":"begin_date","value":null,"description":"Start date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).","disabled":true},{"key":"end_date","value":null,"description":"End date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).","disabled":true},{"key":"limit","value":null,"description":"Max number of records to return (default: 500).","disabled":true},{"key":"offset","value":null,"description":"Number of records to skip for pagination (default: 0).","disabled":true}],"variable":[{"key":"channel_id","value":"14736387"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:08:12 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=XkgJc8L%2FkDrKQGJDYNgMOJNp2EqFFW%2FZNGFDiyQZSC3RKS1J1VDU9K%2B%2FDPLX9w%2FiQCukLAIyhFiJxK0u4UaficFyGOJ8EHB1pexSIXA63Tn5Sw26EeL933cdCwm6Xg0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9361285e784f0850-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2402&min_rtt=2192&rtt_var=972&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1441&delivery_rate=660583&cwnd=250&unsent_bytes=0&cid=b57ea7c4d50c723a&ts=440&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"products\": [\n        {\n            \"id\": 17412008,\n            \"assets\": [],\n            \"variants\": [\n                {\n                    \"id\": 17850740,\n                    \"assets\": [],\n                    \"collections\": [],\n                    \"long_description_of_the_item\": \"170 PSI, AirStream Reciprocating Compressor\",\n                    \"vendor_number\": \"RF-8052E211\"\n                },\n                {\n                    \"id\": 17412021,\n                    \"assets\": [],\n                    \"collections\": [],\n                    \"long_description_of_the_item\": \"80 PSI, AirStream Reciprocating Compressor\",\n                    \"vendor_number\": \"RF-8065\"\n                },\n                {\n                    \"id\": 17850739,\n                    \"assets\": [],\n                    \"collections\": [],\n                    \"long_description_of_the_item\": \"180 PSI, AirStream Reciprocating Compressor\",\n                    \"vendor_number\": \"RF-8052D121\"\n                },\n                {\n                    \"id\": 17850741,\n                    \"assets\": [],\n                    \"collections\": [],\n                    \"long_description_of_the_item\": \"160 PSI, AirStream Reciprocating Compressor\",\n                    \"vendor_number\": \"RF-8052F111\"\n                }\n            ],\n            \"collections\": [],\n            \"catsy$option_attributes\": [\n                {\n                    \"id\": 20586328,\n                    \"key\": \"psi\"\n                },\n                {\n                    \"id\": 20926107,\n                    \"key\": \"no_of_stages\"\n                },\n                {\n                    \"id\": 20586340,\n                    \"key\": \"tank_size\"\n                },\n                {\n                    \"id\": 20586341,\n                    \"key\": \"tank_style\"\n                },\n                {\n                    \"id\": 20586311,\n                    \"key\": \"cylinder_material\"\n                },\n                {\n                    \"id\": 20734475,\n                    \"key\": \"input_voltage\"\n                }\n            ],\n            \"child_item_count\": 4,\n            \"variant_skus\": [\n                \"RF-8052E211\",\n                \"RF-8065\",\n                \"RF-8052D121\",\n                \"RF-8052F111\"\n            ],\n            \"vendor_number\": \"RF-8052\",\n            \"catsy$option_attribute_keys\": [\n                \"psi\",\n                \"no_of_stages\",\n                \"tank_size\",\n                \"tank_style\",\n                \"cylinder_material\",\n                \"input_voltage\"\n            ]\n        }\n    ],\n    \"pagination\": {\n        \"total_results\": 1,\n        \"results_per_page\": 500,\n        \"total_pages\": 1,\n        \"current_page\": 1\n    }\n}"}],"_postman_id":"52b4784f-7967-4026-a5b6-eb6f2ff05bf9"},{"name":"Count Products","id":"f03f7878-0f7b-4462-b6c8-48a1b935a670","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKeys\": [\r\n      \"number\",\r\n      \"name\",\r\n      \"status\",\r\n      \"category\"\r\n    ],\r\n    \"attributeKey\": \"status\",\r\n    \"operator\": \"is\",\r\n    \"value\": \"Active\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/channels/:channel_id/products/filter/count","description":"<h3 id=\"count-products-in-channel\">Count Products in Channel</h3>\n<p>This endpoint allows you to filter products and return a count based on specified criteria.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><strong>attributeKeys</strong> (array of strings) - The keys of the attributes to filter by.</p>\n</li>\n<li><p><strong>attributeKey</strong> (string) - The key of the attribute to filter by.</p>\n</li>\n<li><p><strong>operator</strong> (string) - The operator to apply for the filter.</p>\n</li>\n<li><p><strong>value</strong> (string) - The value to filter by.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["channels",":channel_id","products","filter","count"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>Filter by parent-child relationship: values like PARENT, STANDALONE, or VARIANT.</p>\n","type":"text/plain"},"key":"parentage","value":"PARENT"},{"disabled":true,"description":{"content":"<p>Filter results by membership status: ALL, COMPLETED, INVALID, or MISSING.</p>\n","type":"text/plain"},"key":"channel_member_type","value":""},{"disabled":true,"description":{"content":"<p>Filter by change type: CREATED, UPDATED, ADDED, DELETED, REMOVED, etc.</p>\n","type":"text/plain"},"key":"action","value":""},{"disabled":true,"description":{"content":"<p>Start date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"begin_date","value":""},{"disabled":true,"description":{"content":"<p>End date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>Max number of records to return (default: 500).</p>\n","type":"text/plain"},"key":"limit","value":""},{"disabled":true,"description":{"content":"<p>Number of records to skip for pagination (default: 0).</p>\n","type":"text/plain"},"key":"offset","value":""}],"variable":[{"type":"any","value":"{channel_id}","key":"channel_id"}]}},"response":[{"id":"a6a714df-8277-49b1-8757-f1269e189217","name":"Count Products","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKeys\": [\r\n      \"number\",\r\n      \"name\",\r\n      \"status\",\r\n      \"category\"\r\n    ],\r\n    \"attributeKey\": \"status\",\r\n    \"operator\": \"is\",\r\n    \"value\": \"Active\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/channels/:channel_id/products/filter/count?parentage=PARENT","host":["https://api.catsy.com/v4"],"path":["channels",":channel_id","products","filter","count"],"query":[{"key":"parentage","value":"PARENT","description":"Filter by parent-child relationship: values like PARENT, STANDALONE, or VARIANT."},{"key":"channel_member_type","value":"","description":"Filter results by membership status: ALL, COMPLETED, INVALID, or MISSING.","disabled":true},{"key":"action","value":"","description":"Filter by change type: CREATED, UPDATED, ADDED, DELETED, REMOVED, etc.","disabled":true},{"key":"begin_date","value":"","description":"Start date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).","disabled":true},{"key":"end_date","value":"","description":"End date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).","disabled":true},{"key":"limit","value":"","description":"Max number of records to return (default: 500).","disabled":true},{"key":"offset","value":"","description":"Number of records to skip for pagination (default: 0).","disabled":true}],"variable":[{"key":"channel_id","value":"14736387"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:10:11 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=1ReWOZkETcyRhO63zthvu60MnfRxtEuu7xJWuu%2BlYs5K%2BsaJWjpqSOdE2YaDP8NgsVfh82mzV6mKCObGS8dFwDqTzu3w9MrHb43bAJRM72y0e05V5pfGB5mRRUH1xG4%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"93612b431b9381be-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2358&min_rtt=2152&rtt_var=954&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1387&delivery_rate=672862&cwnd=229&unsent_bytes=0&cid=c6bffb10b88a4bf7&ts=310&x=0\""}],"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"f03f7878-0f7b-4462-b6c8-48a1b935a670"}],"id":"7a6074cd-4f22-4302-8164-d1c785fef9fc","_postman_id":"7a6074cd-4f22-4302-8164-d1c785fef9fc","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}}},{"name":"Collections","item":[{"name":"All Collections","id":"835af0b0-7c6c-48f8-bbc7-73b447a226bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/collections","description":"<h3 id=\"get-all-collections\">Get All Collections</h3>\n<p>This endpoint retrieves a list of collections.</p>\n<h3 id=\"request\">Request</h3>\n<p>No request body is required for this GET request.</p>\n<h3 id=\"response\">Response</h3>\n<p>The response body is a JSON array containing collection objects with the following properties:</p>\n<ul>\n<li><p><code>id</code> (number): The ID of the collection.</p>\n</li>\n<li><p><code>number</code> (string): The number of the collection.</p>\n</li>\n<li><p><code>name</code> (string): The name of the collection.</p>\n</li>\n<li><p><code>allowed_roles</code> (array of numbers): The roles allowed to access the collection.</p>\n</li>\n<li><p><code>locked</code> (boolean): Indicates if the collection is locked.</p>\n</li>\n<li><p><code>create_date</code> (number): The timestamp of the creation date.</p>\n</li>\n<li><p><code>create_user_name</code> (string): The name of the user who created the collection.</p>\n</li>\n<li><p><code>update_date</code> (number): The timestamp of the last update date.</p>\n</li>\n<li><p><code>update_user_name</code> (string): The name of the user who last updated the collection.</p>\n</li>\n<li><p><code>product_attribute_ids</code> (array of numbers): The IDs of product attributes associated with the collection.</p>\n</li>\n<li><p><code>default</code> (boolean): Indicates if the collection is the default collection.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"c7f2171b-1f72-4e43-ac2f-7ae5c774b0b3","name":"All Collections","originalRequest":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/collections"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:13:26 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=5dFEAPPD34uKeIpyX0MJUJEIENF6ghpDrcr9h%2F4kgaI3za0Tn7uXN1eQh1kDLLKU0xOFpBrXHbNc%2FaG5t6ymD0kIn4sEuO7OZIZGkOSgYh%2B%2Fkc5IeKySxYXLIyDO35E%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936130053979c97f-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2407&min_rtt=2110&rtt_var=1003&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1096&delivery_rate=686255&cwnd=247&unsent_bytes=0&cid=b75b53d555d8ef40&ts=158&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 4004663064,\n        \"number\": \"4004663064\",\n        \"name\": \"Acme Catalog\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000008166,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1743023295016,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20586296,\n            20586297,\n            20586300,\n            20586290,\n            20586291,\n            20586288,\n            20615472,\n            20586289,\n            20586294,\n            20586295,\n            20586292,\n            20586293,\n            20615470,\n            20615468,\n            20926107,\n            20613778,\n            20613779,\n            20624144,\n            20621591,\n            20621589,\n            20626056,\n            20626057,\n            20613775,\n            20626048,\n            20626054,\n            20626052,\n            20626053,\n            20626043,\n            20626045,\n            20613746,\n            20613747,\n            20613751,\n            20626039,\n            20613749,\n            20614901,\n            20626037,\n            20626154,\n            20586347,\n            20626152,\n            20586345,\n            20626153,\n            20613743,\n            20613741,\n            20586338,\n            20626146,\n            20586339,\n            20586336,\n            20626144,\n            20586343,\n            20586340,\n            20626148,\n            20586341,\n            20586330,\n            20586331,\n            20586328,\n            20586329,\n            20586334,\n            20626142,\n            20586335,\n            20586332,\n            20626140,\n            20586333,\n            20586322,\n            20586323,\n            20635091,\n            20586320,\n            20586321,\n            20586326,\n            20586327,\n            20586324,\n            20586325,\n            20586314,\n            20586315,\n            20586312,\n            20586313,\n            20586318,\n            20586319,\n            20586316,\n            20629708,\n            20586317,\n            20586306,\n            20586310,\n            20743105,\n            21027389,\n            20586308,\n            20586309\n        ],\n        \"default\": true\n    },\n    {\n        \"id\": 4004663465,\n        \"number\": \"4004663465\",\n        \"name\": \"Wayfair Export\",\n        \"allowed_roles\": [\n            4000006642,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1614086739792,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1679674184167,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663466,\n        \"number\": \"4004663466\",\n        \"name\": \"Menards\",\n        \"allowed_roles\": [\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1614091974238,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1635333201552,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663467,\n        \"number\": \"4004663467\",\n        \"name\": \"Lowes 2021 Export\",\n        \"allowed_roles\": [\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1614092190575,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1614092190575,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663471,\n        \"number\": \"4004663471\",\n        \"name\": \"Fall Line 2021\",\n        \"allowed_roles\": [\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1614097016995,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1614097119509,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663472,\n        \"number\": \"4004663472\",\n        \"name\": \"Accessories\",\n        \"allowed_roles\": [\n            4000006643,\n            4000006642,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1614099824937,\n        \"create_user_name\": \"Alex Kam\",\n        \"update_date\": 1628096580520,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20586296,\n            20586297,\n            20586300,\n            20586290,\n            20586291,\n            20586288,\n            20615472,\n            20586289,\n            20586294,\n            20586295,\n            20586292,\n            20586293,\n            20615470,\n            20615468,\n            20613778,\n            20613779,\n            20613775,\n            20613746,\n            20613747,\n            20613751,\n            20613749,\n            20614901,\n            20586347,\n            20586345,\n            20613743,\n            20613741,\n            20586338,\n            20586339,\n            20586336,\n            20586343,\n            20586340,\n            20586341,\n            20586330,\n            20586331,\n            20586328,\n            20586329,\n            20586334,\n            20586335,\n            20586332,\n            20586333,\n            20586322,\n            20586323,\n            20586320,\n            20586321,\n            20586326,\n            20586327,\n            20586324,\n            20586325,\n            20586314,\n            20586315,\n            20586312,\n            20586313,\n            20586318,\n            20586319,\n            20586316,\n            20586317,\n            20586306,\n            20586310,\n            20586311,\n            20586308,\n            20586309\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663477,\n        \"number\": \"4004663477\",\n        \"name\": \"Draft Inducers\",\n        \"allowed_roles\": [\n            4000006643,\n            4000006642,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1614178357376,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1627655066010,\n        \"update_user_name\": \"Peter V\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20586296,\n            20586297,\n            20586300,\n            20586290,\n            20586291,\n            20586288,\n            20615472,\n            20586289,\n            20586294,\n            20586295,\n            20586292,\n            20586293,\n            20615470,\n            20615468,\n            20613778,\n            20613779,\n            20613775,\n            20613746,\n            20613747,\n            20613751,\n            20613749,\n            20614901,\n            20586347,\n            20586345,\n            20613743,\n            20613741,\n            20586338,\n            20586339,\n            20586336,\n            20586343,\n            20586340,\n            20586341,\n            20586330,\n            20586331,\n            20586328,\n            20586329,\n            20586334,\n            20586335,\n            20586332,\n            20586333,\n            20586322,\n            20586323,\n            20586320,\n            20586321,\n            20586326,\n            20586327,\n            20586324,\n            20586325,\n            20586314,\n            20586315,\n            20586312,\n            20586313,\n            20586318,\n            20586319,\n            20586316,\n            20586317,\n            20586306,\n            20586310,\n            20586311,\n            20586308,\n            20586309\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663488,\n        \"number\": \"4004663488\",\n        \"name\": \"Power Tools\",\n        \"allowed_roles\": [\n            4000006643,\n            4000006642,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1614692880804,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1627655130310,\n        \"update_user_name\": \"Peter V\",\n        \"product_attribute_ids\": [\n            20586299,\n            20586319,\n            20586300,\n            20586323,\n            20586324,\n            20586325\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663557,\n        \"number\": \"4004663557\",\n        \"name\": \"InDesign\",\n        \"allowed_roles\": [\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1615300166863,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1635337154668,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663596,\n        \"number\": \"4004663596\",\n        \"name\": \"Regional Dealers File\",\n        \"allowed_roles\": [\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1615514456972,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1617046167355,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663690,\n        \"number\": \"4004663690\",\n        \"name\": \"New products for 2021\",\n        \"allowed_roles\": [\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1617143744463,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1645621634050,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20586296,\n            20586297,\n            20586300,\n            20586290,\n            20586291,\n            20586288,\n            20615472,\n            20586289,\n            20586294,\n            20586295,\n            20586292,\n            20586293,\n            20615470,\n            20615468,\n            20624144,\n            20621591,\n            20621589,\n            20661624,\n            20661630,\n            20661618,\n            20661616,\n            20661622,\n            20661620,\n            20586347,\n            20586345,\n            20586338,\n            20586339,\n            20586336,\n            20790118,\n            20586343,\n            20586340,\n            20586341,\n            20586330,\n            20735836,\n            20586331,\n            20586328,\n            20735838,\n            20586329,\n            20586334,\n            20735832,\n            20586335,\n            20586332,\n            20735834,\n            20586333,\n            20586322,\n            20735828,\n            20586323,\n            20586320,\n            20735830,\n            20586321,\n            20586326,\n            20586327,\n            20586324,\n            20735826,\n            20586325,\n            20586314,\n            20586315,\n            20586312,\n            20586313,\n            20586318,\n            20586319,\n            20586316,\n            20586317,\n            20586306,\n            20586310,\n            20586311,\n            20586308,\n            20586309,\n            20640187,\n            20690362,\n            20640184,\n            20759998,\n            20690360,\n            20743103,\n            20640190,\n            20640188,\n            20743098,\n            20640178,\n            20690354,\n            20640176,\n            20640177,\n            20690352,\n            20640182,\n            20690358,\n            20640180,\n            20690356,\n            20690346,\n            20690344,\n            20690350,\n            20690348,\n            20690338,\n            20676513,\n            20690342,\n            20690340,\n            20676505,\n            20676511,\n            20676510,\n            20676509,\n            20661632,\n            20640251,\n            20640248,\n            20640249,\n            20734463,\n            20640255,\n            20640242,\n            20640243,\n            20640241,\n            20640247,\n            20640235,\n            20640237,\n            20698083,\n            20635091,\n            20640203,\n            20640207,\n            20640204,\n            20640205,\n            20640195,\n            20640193,\n            20640199,\n            20743105,\n            20640197,\n            20755006,\n            20640307,\n            20640309,\n            20640297,\n            20707368,\n            20640291,\n            20707362,\n            20640289,\n            20640295,\n            20707366,\n            20707364,\n            20640282,\n            20640283,\n            20640280,\n            20640281,\n            20640287,\n            20640285,\n            20640273,\n            20724759,\n            20640279,\n            20640267,\n            20640264,\n            20640265,\n            20640270,\n            20640271,\n            20734473,\n            20734475,\n            20640259,\n            20734469,\n            20640257,\n            20734471,\n            20640262,\n            20734465,\n            20640260,\n            20734467,\n            20660347,\n            20626043,\n            20660346,\n            20660350,\n            20626045,\n            20660348,\n            20613746,\n            20660339,\n            20613747,\n            20660338,\n            20660336,\n            20613751,\n            20626039,\n            20613749,\n            20626037,\n            20660340,\n            20660330,\n            20660328,\n            20613743,\n            20660334,\n            20613741,\n            20755041,\n            20755043,\n            20684379,\n            20684378,\n            20684381,\n            20684369,\n            20684368,\n            20684375,\n            20684374,\n            20684373,\n            20684363,\n            20684361,\n            20684360,\n            20755016,\n            20684366,\n            20755012,\n            20755014,\n            20755008,\n            20755010,\n            20780611,\n            20613778,\n            20613779,\n            20626056,\n            20626057,\n            20613775,\n            20660354,\n            20626048,\n            20660353,\n            20660352,\n            20626054,\n            20626052,\n            20626053,\n            20660356,\n            20813045,\n            20614901,\n            20626154,\n            20703979,\n            20626152,\n            20626153,\n            20626146,\n            20626144,\n            20626148,\n            20626142,\n            20626140,\n            20629708\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663691,\n        \"number\": \"4004663691\",\n        \"name\": \"Wire Cutters\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1617188267423,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1661463808150,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20586296,\n            20586297,\n            20586300,\n            20586290,\n            20586291,\n            20586288,\n            20615472,\n            20586289,\n            20586294,\n            20586295,\n            20586292,\n            20586293,\n            20615470,\n            20615468,\n            20613778,\n            20613779,\n            20624144,\n            20621591,\n            20621589,\n            20626056,\n            20626057,\n            20613775,\n            20626048,\n            20626054,\n            20626052,\n            20626053,\n            20626043,\n            20626045,\n            20613746,\n            20613747,\n            20613751,\n            20626039,\n            20613749,\n            20614901,\n            20626037,\n            20586347,\n            20586345,\n            20613743,\n            20613741,\n            20586338,\n            20586339,\n            20586336,\n            20586343,\n            20586340,\n            20586341,\n            20586330,\n            20586331,\n            20586328,\n            20586329,\n            20586334,\n            20586335,\n            20586332,\n            20586333,\n            20586322,\n            20586323,\n            20586320,\n            20586321,\n            20586326,\n            20586327,\n            20586324,\n            20586325,\n            20586314,\n            20586315,\n            20586312,\n            20586313,\n            20586318,\n            20586319,\n            20586316,\n            20586317,\n            20586306,\n            20586310,\n            20586311,\n            20586308,\n            20586309\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663692,\n        \"number\": \"4004663692\",\n        \"name\": \"Summer 2021 Products\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1617189263527,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1617189263527,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663693,\n        \"number\": \"4004663693\",\n        \"name\": \"City Electric Spring 2021\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1617190718085,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1617190718085,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004663695,\n        \"number\": \"4004663695\",\n        \"name\": \"MSC Safety Category\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1617195913014,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1620232920509,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004667334,\n        \"number\": \"4004667334\",\n        \"name\": \"Air Compressors\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1627649420838,\n        \"create_user_name\": \"Peter V\",\n        \"update_date\": 1627649420838,\n        \"update_user_name\": \"Peter V\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20640187,\n            20586296,\n            20640184,\n            20586297,\n            20586300,\n            20640188,\n            20586290,\n            20640178,\n            20586291,\n            20640176,\n            20586289,\n            20640177,\n            20586294,\n            20640182,\n            20586295,\n            20586292,\n            20640180,\n            20624144,\n            20626039,\n            20626037,\n            20626154,\n            20586347,\n            20626152,\n            20626153,\n            20626146,\n            20586336,\n            20626144,\n            20626148,\n            20586330,\n            20586334,\n            20626142,\n            20586335,\n            20626140,\n            20586333,\n            20586323,\n            20635091,\n            20586324,\n            20586325,\n            20640203,\n            20586318,\n            20586319,\n            20640207,\n            20640204,\n            20640205,\n            20640195,\n            20640193,\n            20640199,\n            20640197\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004668246,\n        \"number\": \"4004668246\",\n        \"name\": \"Malco Zoro\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1633443352691,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1633443352691,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004668641,\n        \"number\": \"4004668641\",\n        \"name\": \"Easy Catalog\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1635338273753,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1635338273753,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004669010,\n        \"number\": \"4004669010\",\n        \"name\": \"NewCompany Template\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1637271709245,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1637271709245,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004669015,\n        \"number\": \"4004669015\",\n        \"name\": \"Walmart\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1637586468521,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1637586468521,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004669016,\n        \"number\": \"4004669016\",\n        \"name\": \"Amazon\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1637587477408,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1637587477408,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004669053,\n        \"number\": \"4004669053\",\n        \"name\": \"Ferguson Products\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1638211587339,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1638211587339,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004669054,\n        \"number\": \"4004669054\",\n        \"name\": \"Build Ferguson\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1638212283038,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1638212283038,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004669203,\n        \"number\": \"4004669203\",\n        \"name\": \"Winter 2022\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1639512256500,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1639512256500,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004671465,\n        \"number\": \"4004671465\",\n        \"name\": \"Salesforce\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1660055657948,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1660055657948,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004671528,\n        \"number\": \"4004671528\",\n        \"name\": \"Chicago Water Works - Lakeview\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1660834052850,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1660834052850,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20927615,\n            20586300,\n            20613746,\n            20586323,\n            20613747,\n            20724759,\n            20613751,\n            20586324,\n            20586325,\n            20864524,\n            20586319,\n            20613743,\n            20613741,\n            20586338\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004672153,\n        \"number\": \"4004672153\",\n        \"name\": \"Print Catalog\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1667480332674,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1673530081868,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004672791,\n        \"number\": \"4004672791\",\n        \"name\": \"Website\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1671134064141,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1671134064141,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004672957,\n        \"number\": \"4004672957\",\n        \"name\": \"Sublist\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1674081684871,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1674081684871,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20586298,\n            20927615,\n            20586296,\n            20586297,\n            20586300,\n            20989706,\n            20586294,\n            20586295,\n            20626039,\n            20626037,\n            20586347,\n            20934501,\n            20937829,\n            20927201,\n            20586330,\n            20586323,\n            20635091,\n            20724759,\n            20950803,\n            20586324,\n            20586325,\n            20864524,\n            20586318,\n            20586319,\n            20946570,\n            20925890,\n            20780611\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004673900,\n        \"number\": \"4004673900\",\n        \"name\": \"Print Project\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1682289978566,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1682289978566,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586330,\n            20586296,\n            20586297,\n            21039462,\n            20635091,\n            20989706,\n            20724759,\n            20586294,\n            20950803,\n            20586295,\n            20626039,\n            20626037,\n            20586347,\n            20586318,\n            20586319,\n            20946570,\n            20934501,\n            20937829,\n            20925890,\n            20780611,\n            20927201\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004673901,\n        \"number\": \"4004673901\",\n        \"name\": \"Power Bi\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1682291948176,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1683291285407,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004674198,\n        \"number\": \"4004674198\",\n        \"name\": \"B2B Industrial Preliminary Demo\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1684751798142,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1686090017815,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004674202,\n        \"number\": \"4004674202\",\n        \"name\": \"Products\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1684764196415,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684764257427,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20927615,\n            20586300,\n            20735828,\n            20586323,\n            20724759,\n            21086957,\n            21086956,\n            20586324,\n            20586325,\n            20640309,\n            21086958,\n            20864524,\n            21086963,\n            20586319,\n            21086964,\n            21086967,\n            21086966,\n            21086968\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004674614,\n        \"number\": \"4004674614\",\n        \"name\": \"Acme Export\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1687302772923,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1688764188076,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004675363,\n        \"number\": \"4004675363\",\n        \"name\": \"Zoro Tools\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1695843209506,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1695843209506,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004676719,\n        \"number\": \"4004676719\",\n        \"name\": \"Fastenal Logistics\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1705067866872,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1705067866872,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004676720,\n        \"number\": \"4004676720\",\n        \"name\": \"new print\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1705067929490,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1705067929490,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004676842,\n        \"number\": \"4004676842\",\n        \"name\": \"ToolDen Export\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1706625136440,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1707466248619,\n        \"update_user_name\": \"Super Admin\",\n        \"query_id\": \"8ba99a70-6f4a-42da-acba-f503641f9c40\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004676853,\n        \"number\": \"4004676853\",\n        \"name\": \"New AD Export\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1706706543690,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1706706543690,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004676855,\n        \"number\": \"4004676855\",\n        \"name\": \"New Products for 2024\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1706710573449,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1706710573449,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004677269,\n        \"number\": \"4004677269\",\n        \"name\": \"dfdfd\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1709640385371,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1709640385371,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004677340,\n        \"number\": \"4004677340\",\n        \"name\": \"Drill Bits\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000008166,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1709921244024,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1709921244024,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [\n            20586298,\n            20586299,\n            20586296,\n            20586297,\n            20586300,\n            20586290,\n            20586291,\n            20586288,\n            20615472,\n            20586289,\n            20586294,\n            20586295,\n            20586292,\n            20586293,\n            20957485,\n            20957484,\n            20615470,\n            20957483,\n            20957482,\n            20615468,\n            20957481,\n            20957480,\n            20957479,\n            21039462,\n            21111659,\n            20624144,\n            20950803,\n            20621591,\n            20621589,\n            20925310,\n            20661624,\n            20925308,\n            20661630,\n            20661618,\n            20989706,\n            20661616,\n            20661622,\n            20841840,\n            20661620,\n            20586347,\n            20586345,\n            20934507,\n            20934506,\n            20934505,\n            20934504,\n            20586338,\n            20934503,\n            20586339,\n            20586336,\n            20934501,\n            20790118,\n            20586343,\n            20586340,\n            20586341,\n            20586330,\n            20735836,\n            20586331,\n            20586328,\n            20735838,\n            20872028,\n            20586329,\n            20586334,\n            20735832,\n            20872026,\n            20586335,\n            20935514,\n            21215526,\n            20586332,\n            20735834,\n            20872024,\n            20935513,\n            21215525,\n            20586333,\n            21215524,\n            20586322,\n            20735828,\n            21173547,\n            20586323,\n            20735830,\n            20586321,\n            20586326,\n            20586327,\n            20586324,\n            20735826,\n            20586325,\n            20586314,\n            20586315,\n            20586312,\n            20586313,\n            20586318,\n            20586319,\n            20586316,\n            20586317,\n            20586306,\n            20586310,\n            20586311,\n            20586308,\n            20586309,\n            20640187,\n            20690362,\n            20640184,\n            20759998,\n            20690360,\n            20743103,\n            20640190,\n            20640188,\n            20743098,\n            20925881,\n            20640178,\n            20690354,\n            20640176,\n            20640177,\n            20690352,\n            20640182,\n            20690358,\n            20640180,\n            20690356,\n            20690346,\n            20690344,\n            20690350,\n            20690348,\n            20690338,\n            20676513,\n            20690342,\n            20690340,\n            20676505,\n            20676511,\n            20676510,\n            20676509,\n            20864912,\n            20661632,\n            20640251,\n            20640248,\n            20640249,\n            20734463,\n            20924924,\n            20640255,\n            20924922,\n            20640242,\n            20640243,\n            20640241,\n            20640247,\n            20640235,\n            20640237,\n            20698083,\n            20925403,\n            20635091,\n            20640203,\n            20640207,\n            20640204,\n            20640205,\n            20640195,\n            20925894,\n            20925893,\n            20640193,\n            20925892,\n            20925891,\n            20640199,\n            20743105,\n            20925890,\n            20640197,\n            20755006,\n            21109834,\n            20640307,\n            20640309,\n            20640297,\n            20707368,\n            20640291,\n            20707362,\n            20640289,\n            20640295,\n            20707366,\n            20707364,\n            20640282,\n            20640283,\n            20640280,\n            20640281,\n            20640287,\n            20640285,\n            20640273,\n            20724759,\n            20640279,\n            20640267,\n            20640264,\n            20864524,\n            20640265,\n            20640270,\n            20864522,\n            20905995,\n            20937227,\n            20640271,\n            20734473,\n            20864520,\n            20734475,\n            20640259,\n            20734469,\n            20640257,\n            20734471,\n            20640262,\n            20924931,\n            20734465,\n            20640260,\n            20734467,\n            20660347,\n            20927615,\n            20626043,\n            20660346,\n            20660350,\n            20626045,\n            20660348,\n            20613746,\n            20660339,\n            21238796,\n            20613747,\n            20660338,\n            20660336,\n            20957811,\n            20613751,\n            20626039,\n            21238793,\n            21238794,\n            20613749,\n            20626037,\n            20660340,\n            21238795,\n            20660330,\n            20660328,\n            20613743,\n            20660334,\n            20613741,\n            20937829,\n            20937828,\n            20755041,\n            20755043,\n            20684379,\n            20684378,\n            20684381,\n            21238819,\n            20684369,\n            20684368,\n            20684375,\n            20684374,\n            20684373,\n            20684363,\n            21055536,\n            20684361,\n            20684360,\n            20755016,\n            20684366,\n            20755012,\n            20755014,\n            20755008,\n            21027389,\n            20755010,\n            20780611,\n            20822173,\n            20926107,\n            20926105,\n            20926104,\n            20613778,\n            20926103,\n            20613779,\n            20926102,\n            21086957,\n            21086956,\n            21086958,\n            20626056,\n            21086963,\n            20626057,\n            20613775,\n            20911242,\n            20946570,\n            21086964,\n            20911241,\n            21086967,\n            21086966,\n            20660354,\n            21086968,\n            20626048,\n            20660353,\n            20660352,\n            20626054,\n            20626052,\n            20626053,\n            20660356,\n            20882686,\n            20882684,\n            20882682,\n            20856571,\n            20882680,\n            20856569,\n            20813045,\n            20856567,\n            20614901,\n            20626154,\n            20703979,\n            20626152,\n            20626153,\n            20856552,\n            20626146,\n            20626144,\n            20626148,\n            20927201,\n            20626142,\n            20626140,\n            20629708\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004677342,\n        \"number\": \"4004677342\",\n        \"name\": \"WooCommerce Export\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1709930315140,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1709930315140,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004677654,\n        \"number\": \"4004677654\",\n        \"name\": \"Ad export annual\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1711557944437,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1711557944437,\n        \"update_user_name\": \"Super Admin\",\n        \"query_id\": \"a0b3f54b-60d0-41fc-81ae-447cffb6766a\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004677747,\n        \"number\": \"4004677747\",\n        \"name\": \"NPI - April 2024\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1712353868885,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1713815730267,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004677903,\n        \"number\": \"4004677903\",\n        \"name\": \"Template 1 Example\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1713816285326,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1713816285326,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004677904,\n        \"number\": \"4004677904\",\n        \"name\": \"CSV Nightly Export.\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1713816478507,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1718319581334,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004678074,\n        \"number\": \"4004678074\",\n        \"name\": \"Sample export 1\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1714671049963,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1714671049963,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004678085,\n        \"number\": \"4004678085\",\n        \"name\": \"Test from CJ\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1715103259991,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1715103259991,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004678160,\n        \"number\": \"4004678160\",\n        \"name\": \"Nail Guns\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1716212951414,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1716212951414,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004678178,\n        \"number\": \"4004678178\",\n        \"name\": \"ERP Upload\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1716401769112,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1716401769112,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004678492,\n        \"number\": \"4004678492\",\n        \"name\": \"June 25 Export  DIST ABC\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1719326124258,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1719326124258,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004679134,\n        \"number\": \"4004679134\",\n        \"name\": \"Variation 1\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1724179740865,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1724179936032,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004679135,\n        \"number\": \"4004679135\",\n        \"name\": \"Export Aug 20\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1724181492807,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1724181492807,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004679224,\n        \"number\": \"4004679224\",\n        \"name\": \"Export 3\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1725457477082,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1725457477082,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004679801,\n        \"number\": \"4004679801\",\n        \"name\": \"CSV EAV\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1732135646562,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1732135646562,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004679922,\n        \"number\": \"4004679922\",\n        \"name\": \"B2B\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1733414844580,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1733414844580,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004680188,\n        \"number\": \"4004680188\",\n        \"name\": \"CSV EAV 3\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1735653128154,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1736339240230,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004680221,\n        \"number\": \"4004680221\",\n        \"name\": \"New Dis Export\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1736783691560,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1736783691560,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004680228,\n        \"number\": \"4004680228\",\n        \"name\": \"New Dealer 2025 Items\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1736969198955,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1736969198955,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004680317,\n        \"number\": \"4004680317\",\n        \"name\": \"AB\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1738083598991,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1738083598991,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004680318,\n        \"number\": \"4004680318\",\n        \"name\": \"Macola Export\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1738084698225,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1740768001635,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004680743,\n        \"number\": \"4004680743\",\n        \"name\": \"Small Distributor Export\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1741288210519,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1741288210519,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004680746,\n        \"number\": \"4004680746\",\n        \"name\": \"Export for Customer\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1741292274369,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1741292274369,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004681020,\n        \"number\": \"4004681020\",\n        \"name\": \"BigCommerce\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1741865005550,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1741865005550,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004681032,\n        \"number\": \"4004681032\",\n        \"name\": \"BigCommerce 804 3-15-25\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1741887340619,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1741887340619,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004681072,\n        \"number\": \"4004681072\",\n        \"name\": \"Distributor Export File\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1741956358106,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1741956358106,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004681078,\n        \"number\": \"4004681078\",\n        \"name\": \"Export for Distributor\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1741967282504,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742044313408,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    },\n    {\n        \"id\": 4004681200,\n        \"number\": \"4004681200\",\n        \"name\": \"Nail Guns\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006643,\n            4000006642,\n            4000008166,\n            4000006645,\n            4000006644\n        ],\n        \"locked\": false,\n        \"create_date\": 1743013310064,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1743022705715,\n        \"update_user_name\": \"Super Admin\",\n        \"query_id\": \"36bd8f16-99b2-4ed3-9f78-f0f951ced7ab\",\n        \"product_attribute_ids\": [\n            20615472,\n            21508440,\n            21508441,\n            20957485,\n            20957484,\n            20615470,\n            20957483,\n            20957482,\n            20615468,\n            20957481,\n            20957480,\n            20957479,\n            21348701,\n            21348700,\n            21348703,\n            21348702,\n            21508437,\n            21348699,\n            21508438,\n            21348698,\n            21508439,\n            21348709,\n            21348708,\n            21348711,\n            21348710,\n            21348705,\n            21348704,\n            21390691,\n            21348707,\n            21039462,\n            21348706,\n            21348717,\n            21348716,\n            21348719,\n            21348718,\n            21348713,\n            20621591,\n            21348712,\n            21348715,\n            20621589,\n            21348714,\n            21348725,\n            21348724,\n            21348727,\n            21348726,\n            21348721,\n            21348720,\n            21348723,\n            21348722,\n            21348733,\n            21348732,\n            21348735,\n            21348734,\n            21348729,\n            21348728,\n            21348731,\n            21348730,\n            21268740,\n            21268741,\n            21268742,\n            20661624,\n            20661630,\n            20661618,\n            20661616,\n            20661622,\n            20841840,\n            20661620,\n            21215526,\n            21215525,\n            21215524,\n            21173547,\n            21390640,\n            21390654,\n            20640187,\n            20690362,\n            20640184,\n            20759998,\n            20690360,\n            20640190,\n            20640188,\n            20925881,\n            20640178,\n            20690354,\n            20640176,\n            20640177,\n            20690352,\n            20640182,\n            20690358,\n            20640180,\n            20690356,\n            20690346,\n            20690344,\n            20690350,\n            20690348,\n            20690338,\n            20690342,\n            20690340,\n            20661632,\n            20640251,\n            20924926,\n            20640248,\n            20640249,\n            20734463,\n            20924924,\n            20640255,\n            20924922,\n            21348736,\n            20640242,\n            20640243,\n            20640241,\n            20640247,\n            20640235,\n            20640237,\n            21504428,\n            20635091,\n            21364143,\n            20640203,\n            20640207,\n            20640204,\n            20640205,\n            20640195,\n            20925894,\n            21504433,\n            20925893,\n            20640193,\n            20925892,\n            20925891,\n            20640199,\n            20925890,\n            20640197,\n            21321792,\n            21285954,\n            21285955,\n            21109834,\n            20707368,\n            20707362,\n            20707366,\n            20707364,\n            20724759,\n            20905995,\n            20660347,\n            20927615,\n            20660346,\n            21376002,\n            20660350,\n            20660348,\n            20660339,\n            21238796,\n            20660338,\n            20660336,\n            21238793,\n            21238794,\n            20660340,\n            21238795,\n            20660330,\n            20660328,\n            20660334,\n            20937829,\n            20937828,\n            21309467,\n            21238819,\n            21055536,\n            21285948,\n            21285949,\n            21285950,\n            21396540,\n            21285951,\n            21285947,\n            21508312,\n            21508313,\n            21508314,\n            21339359,\n            21508311,\n            20822173,\n            20911242,\n            20911241,\n            20660354,\n            20660353,\n            20660352,\n            20660356,\n            20882686,\n            20882684,\n            20882682,\n            20882680,\n            20813045,\n            21502109,\n            21502111,\n            20629708,\n            20586298,\n            20586299,\n            20586296,\n            20586297,\n            20586300,\n            20586290,\n            20586291,\n            20586288,\n            20586289,\n            20586294,\n            20586295,\n            20586292,\n            20586293,\n            21111659,\n            20624144,\n            20950803,\n            20925310,\n            20925308,\n            20989706,\n            20586347,\n            20586345,\n            20934507,\n            20934506,\n            20934505,\n            20934504,\n            20586338,\n            20934503,\n            20586339,\n            20586336,\n            20934501,\n            20790118,\n            20586343,\n            20586340,\n            20586341,\n            20586330,\n            20735836,\n            20586331,\n            20586328,\n            20735838,\n            20872028,\n            20586329,\n            20586334,\n            20735832,\n            20872026,\n            20586335,\n            20935514,\n            20586332,\n            20735834,\n            20872024,\n            20935513,\n            20586333,\n            20586322,\n            20735828,\n            20586323,\n            20586320,\n            20735830,\n            20586321,\n            20586326,\n            20586327,\n            20586324,\n            20735826,\n            20586325,\n            20586314,\n            20586315,\n            20586312,\n            21251894,\n            20586313,\n            20586318,\n            20586319,\n            20586316,\n            20586317,\n            20586306,\n            20586310,\n            20586311,\n            20586308,\n            20586309,\n            20743103,\n            20743098,\n            21293001,\n            21293002,\n            20676513,\n            20676505,\n            20676511,\n            20676510,\n            20676509,\n            21290988,\n            21290989,\n            20864912,\n            21501950,\n            20698083,\n            20925403,\n            21331901,\n            21331900,\n            21292990,\n            20743105,\n            20755006,\n            21268033,\n            20640307,\n            20640309,\n            20640297,\n            20640291,\n            20640289,\n            20640295,\n            20640282,\n            20640283,\n            20640280,\n            20640281,\n            20640287,\n            20640285,\n            20640273,\n            20640279,\n            20640267,\n            21508729,\n            20640264,\n            20864524,\n            21508730,\n            20640265,\n            21508731,\n            20640270,\n            20864522,\n            20937227,\n            21508732,\n            20640271,\n            20734473,\n            21508733,\n            20864520,\n            21508734,\n            20734475,\n            21508735,\n            20640259,\n            20734469,\n            20640257,\n            20734471,\n            20640262,\n            20924931,\n            20734465,\n            20640260,\n            20734467,\n            20626043,\n            20626045,\n            20613746,\n            20613747,\n            20957811,\n            20613751,\n            20626039,\n            20613749,\n            20626037,\n            21322261,\n            21322260,\n            20613743,\n            21322259,\n            20613741,\n            20755041,\n            20755043,\n            20684379,\n            20684378,\n            20684381,\n            20684369,\n            20684368,\n            20684375,\n            20684374,\n            20684373,\n            20684363,\n            20684361,\n            20684360,\n            20755016,\n            20684366,\n            20755012,\n            20755014,\n            20755008,\n            21027389,\n            20755010,\n            20780611,\n            20926107,\n            20926105,\n            20926104,\n            20613778,\n            20926103,\n            20613779,\n            20926102,\n            21086957,\n            21086956,\n            21086958,\n            20626056,\n            21086963,\n            20626057,\n            20613775,\n            20946570,\n            21086964,\n            21086967,\n            21086966,\n            21086968,\n            20626048,\n            20626054,\n            20626052,\n            20626053,\n            20856571,\n            20856569,\n            21508736,\n            20856567,\n            20614901,\n            20626154,\n            20703979,\n            20626152,\n            20626153,\n            20856552,\n            20626146,\n            20626144,\n            20626148,\n            20927201,\n            20626142,\n            20626140\n        ],\n        \"default\": false\n    },\n    {\n        \"id\": 4004681279,\n        \"number\": \"4004681279\",\n        \"name\": \"Export 1\",\n        \"allowed_roles\": [\n            4000006733,\n            4000006642,\n            4000006645\n        ],\n        \"locked\": false,\n        \"create_date\": 1744203215431,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1744203215431,\n        \"update_user_name\": \"Super Admin\",\n        \"product_attribute_ids\": [],\n        \"default\": false\n    }\n]"}],"_postman_id":"835af0b0-7c6c-48f8-bbc7-73b447a226bf"},{"name":"Create Collection","id":"ef77a23f-ce03-4912-b1b3-774739867d1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.catsy.com/v4/collections","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef77a23f-ce03-4912-b1b3-774739867d1e"},{"name":"Delete Collection","id":"8e6e40ef-103d-4665-aa75-9c6eccc97bec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.catsy.com/v4/collections/:collection_id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections",":collection_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"","key":"collection_id"}]}},"response":[],"_postman_id":"8e6e40ef-103d-4665-aa75-9c6eccc97bec"},{"name":"Collection by ID","id":"ab1fd955-f7d4-4dee-a597-13ae9760426f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/collections/:collection_id","description":"<h3 id=\"get-collection-by-id\">Get Collection by ID</h3>\n<p>This endpoint retrieves information about a specific collection identified by the <code>collection_id</code>.</p>\n<h4 id=\"request\">Request</h4>\n<p>No request body is required for this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections",":collection_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Collection ID</p>\n","type":"text/plain"},"type":"any","value":"4004663064","key":"collection_id"}]}},"response":[{"id":"4ede7f50-10ff-431f-9381-9b1a29403a6d","name":"Collection by ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/collections/:collection_id","host":["https://api.catsy.com/v4"],"path":["collections",":collection_id"],"variable":[{"key":"collection_id","value":"4004663064","description":"Internal Collection ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:14:57 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=M4Wbmy%2F%2FxJ49oJlXkcfm8KYBqEAwTwjpRI5HHzjN0tQ7y0PTgl3ss0R3VpRRNxyNjYlYYwzkARA6np14WG4xF%2BkwWGFAWd6iP%2BcXlrX692v9UnAleLoTUK8QJlKQTfA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"93613241da5d3b7d-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2504&min_rtt=2317&rtt_var=1002&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1107&delivery_rate=624946&cwnd=250&unsent_bytes=0&cid=d06f66a406c92d76&ts=161&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 4004663064,\n    \"number\": \"4004663064\",\n    \"name\": \"Acme Catalog\",\n    \"allowed_roles\": [\n        4000006733,\n        4000006643,\n        4000006642,\n        4000008166,\n        4000006645,\n        4000006644\n    ],\n    \"locked\": false,\n    \"create_date\": 1611153367919,\n    \"create_user_name\": \"Catsy Administrator\",\n    \"update_date\": 1743023295016,\n    \"update_user_name\": \"Super Admin\",\n    \"product_attribute_ids\": [\n        20586298,\n        20586299,\n        20586296,\n        20586297,\n        20586300,\n        20586290,\n        20586291,\n        20586288,\n        20615472,\n        20586289,\n        20586294,\n        20586295,\n        20586292,\n        20586293,\n        20615470,\n        20615468,\n        20926107,\n        20613778,\n        20613779,\n        20624144,\n        20621591,\n        20621589,\n        20626056,\n        20626057,\n        20613775,\n        20626048,\n        20626054,\n        20626052,\n        20626053,\n        20626043,\n        20626045,\n        20613746,\n        20613747,\n        20613751,\n        20626039,\n        20613749,\n        20614901,\n        20626037,\n        20626154,\n        20586347,\n        20626152,\n        20586345,\n        20626153,\n        20613743,\n        20613741,\n        20586338,\n        20626146,\n        20586339,\n        20586336,\n        20626144,\n        20586343,\n        20586340,\n        20626148,\n        20586341,\n        20586330,\n        20586331,\n        20586328,\n        20586329,\n        20586334,\n        20626142,\n        20586335,\n        20586332,\n        20626140,\n        20586333,\n        20586322,\n        20586323,\n        20635091,\n        20586320,\n        20586321,\n        20586326,\n        20586327,\n        20586324,\n        20586325,\n        20586314,\n        20586315,\n        20586312,\n        20586313,\n        20586318,\n        20586319,\n        20586316,\n        20629708,\n        20586317,\n        20586306,\n        20586310,\n        20743105,\n        21027389,\n        20586308,\n        20586309\n    ],\n    \"default\": true\n}"}],"_postman_id":"ab1fd955-f7d4-4dee-a597-13ae9760426f"},{"name":"Update Collection","id":"7ccf639d-0503-4ccd-bca2-520749fd1c68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.catsy.com/v4/collections/:collection_id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections",":collection_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"","key":"collection_id"}]}},"response":[],"_postman_id":"7ccf639d-0503-4ccd-bca2-520749fd1c68"},{"name":"Remove Products","id":"74c13aca-c5c5-4d0a-9ae8-421450bd4d37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ids\": [\r\n    13910988\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/collections/:collection_id/products","description":"<h3 id=\"remove-product-from-collection\">Remove Product From Collection</h3>\n<p>This endpoint sends an HTTP DELETE request to delete products from a specific collection. The request should include a payload with the IDs of the products to be deleted.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><code>ids</code> (array of integers): An array containing the IDs of the products to be deleted.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections",":collection_id","products"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"{collection_id}","key":"collection_id"}]}},"response":[{"id":"e3a31ff9-e258-412b-a4eb-99d7d39a420d","name":"Remove Products","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ids\": [\r\n    13910988\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/collections/:collection_id/products","host":["https://api.catsy.com/v4"],"path":["collections",":collection_id","products"],"variable":[{"key":"collection_id","value":"4004663064"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:16:48 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=mLua7AnUNbFjJNuVccTzPu7I%2FdD%2FddamowVvxwvxZnuaPVSeeDmFLk1C2iwcV27w92AK0dY6xPCG988yqXigCoitn7oREpa%2BwIYDHvPAi%2Frv5JnabkU92sSLmboM9rY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936134f71f58c9b0-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2121&min_rtt=1968&rtt_var=847&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1206&delivery_rate=735772&cwnd=245&unsent_bytes=0&cid=bed9f1146c93de94&ts=248&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\"\n}"}],"_postman_id":"74c13aca-c5c5-4d0a-9ae8-421450bd4d37"},{"name":"Add Products","id":"104b6332-373b-4c59-b7d6-3148cb0d1711","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ids\": [\r\n    13910988\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/collections/:collection_id/products","description":"<h3 id=\"add-product-to-collection\">Add Product To Collection</h3>\n<p>This endpoint sends an HTTP POST request to add products to a specific collection. The request should include a payload with the IDs of the products to be added.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><code>ids</code> (array of integers): An array containing the IDs of the products to be added.</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections",":collection_id","products"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"{collection_id}","key":"collection_id"}]}},"response":[{"id":"57983dd8-76b3-415a-830d-9c793a2eeb89","name":"Add Products","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"ids\": [\r\n    13910988\r\n  ]\r\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.catsy.com/v4/collections/:collection_id/products","host":["https://api.catsy.com/v4"],"path":["collections",":collection_id","products"],"variable":[{"key":"collection_id","value":"4004663064"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:16:25 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=QzumDhsWdKbWEhpytCrS0bEZbccE2wKLG1DBWv2wN6zi%2FGllX9uRM4PVKscOsbtIcbas6P0qjA3pChOmX5ZkJC%2F4iB3ODwjrAorNxeyvHbfDtmAZhsJxuzOBO%2Bz53iY%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936134678edc05f5-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2105&min_rtt=1965&rtt_var=837&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1204&delivery_rate=736895&cwnd=243&unsent_bytes=0&cid=6bb49824b6656075&ts=172&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\"\n}"}],"_postman_id":"104b6332-373b-4c59-b7d6-3148cb0d1711"},{"name":"Collection Product","id":"b911d072-2bff-402d-8220-62fb43de8c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/collections/:collection_id/products/:product_id","description":"<h3 id=\"get-collection-product-details\">Get Collection Product Details</h3>\n<p>This endpoint retrieves a specific product within a collection, including its associated assets.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections",":collection_id","products",":product_id"],"host":["https://api.catsy.com/v4"],"query":[{"disabled":true,"description":{"content":"<p>If set to true, assets will be included</p>\n","type":"text/plain"},"key":"include_assets","value":"true"}],"variable":[{"description":{"content":"<p>Internal Collection ID</p>\n","type":"text/plain"},"type":"any","value":"{collection_id}","key":"collection_id"},{"description":{"content":"<p>Internal Product ID</p>\n","type":"text/plain"},"type":"any","value":"13460161","key":"product_id"}]}},"response":[{"id":"e6af7dae-595a-4061-b7a8-18dfec02c5c0","name":"Collection Product","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/collections/:collection_id/products/:product_id?include_assets=true","host":["https://api.catsy.com/v4"],"path":["collections",":collection_id","products",":product_id"],"query":[{"key":"include_assets","value":"true","description":"If set to true, assets will be included"}],"variable":[{"key":"collection_id","value":"4004663064"},{"key":"product_id","value":"13460161"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:18:47 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=9KtcBeqS6DnX4IR1GuMZ5q5wKNsraUUPsQiFntuG4A1S5p%2F%2FLNFgRk9RoQrleGbfgmrgScVhYBeWltS5DH80eFyFGQUmfIbO2cLmGd0QsePe9Ay%2Fr3bnt2eRooIHtrE%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936137d8ada98212-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2198&min_rtt=2147&rtt_var=909&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1145&delivery_rate=565183&cwnd=249&unsent_bytes=0&cid=03f2dfd23fbdcd1b&ts=628&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 13460161,\n    \"assets\": [\n        {\n            \"id\": 4070863016,\n            \"size\": 62589,\n            \"width\": 800,\n            \"height\": 800,\n            \"filename\": \"11335536.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/11335536.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529939078,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1705530356605,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863016/11335536.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863016/11335536.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863016/11335536.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863016/11335536.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863016/11335536.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": \"1\",\n            \"title_a\": null,\n            \"tags\": [\n                \"Machine\",\n                \"wheel\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"b2bindustrialpreliminarydemo804_alt_text\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"s3_version\": \"h_O2B2H8SZ1xd9tkjPuRMAt_wweQDsIN\",\n            \"publish_date\": null,\n            \"b2bindustrialpreliminarydemo804_url\": null\n        },\n        {\n            \"id\": 4070863041,\n            \"size\": 154303,\n            \"width\": 800,\n            \"height\": 800,\n            \"filename\": \"IndustrialPlus80GallonAirCompressor.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/IndustrialPlus80GallonAirCompressor.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529945511,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1705530356605,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863041/IndustrialPlus80GallonAirCompressor.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863041/IndustrialPlus80GallonAirCompressor.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863041/IndustrialPlus80GallonAirCompressor.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863041/IndustrialPlus80GallonAirCompressor.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863041/IndustrialPlus80GallonAirCompressor.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": \"1\",\n            \"title_a\": null,\n            \"tags\": [\n                \"Machine\",\n                \"device\",\n                \"grass\",\n                \"lawn\",\n                \"lawn mower\",\n                \"Plant\",\n                \"tool\",\n                \"yellow\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"b2bindustrialpreliminarydemo804_alt_text\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"s3_version\": \"iHUopaQ.VjK59dtrDN0tp.rOFadUyOW0\",\n            \"publish_date\": null,\n            \"b2bindustrialpreliminarydemo804_url\": null\n        },\n        {\n            \"id\": 4070863049,\n            \"size\": 197882,\n            \"width\": 800,\n            \"height\": 800,\n            \"filename\": \"PortableElectricAirCompressor.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/PortableElectricAirCompressor.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529957599,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1705530356605,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863049/PortableElectricAirCompressor.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863049/PortableElectricAirCompressor.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863049/PortableElectricAirCompressor.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863049/PortableElectricAirCompressor.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863049/PortableElectricAirCompressor.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": \"1\",\n            \"title_a\": null,\n            \"tags\": [\n                \"Machine\",\n                \"blue\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"b2bindustrialpreliminarydemo804_alt_text\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"s3_version\": \"WOMhYIbpWiM1Vi8PNl3yLtd03idfQL6F\",\n            \"publish_date\": null,\n            \"b2bindustrialpreliminarydemo804_url\": null\n        },\n        {\n            \"id\": 4070863061,\n            \"size\": 204191,\n            \"width\": 800,\n            \"height\": 800,\n            \"filename\": \"PEC.jpg\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/PEC.jpg\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1705529957599,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1705530356605,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [],\n            \"thumbnail_filename\": \"4070863061/PEC.jpg\",\n            \"asset_type\": \"IMAGE\",\n            \"aspect_ratio\": null,\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863061/PEC.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863061/PEC.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"jpg\",\n            \"transformations\": {\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863061/PEC.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863061/PEC.jpg\"\n            },\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": \"1\",\n            \"title_a\": null,\n            \"tags\": [\n                \"Machine\",\n                \"grey\"\n            ],\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"b2bindustrialpreliminarydemo804_alt_text\": null,\n            \"category\": \"Tools > Power Tools > Compressors\",\n            \"s3_version\": \"A49iUhsk3B85YXfn.k.C5pq9MiamK0kb\",\n            \"publish_date\": null,\n            \"b2bindustrialpreliminarydemo804_url\": null\n        },\n        {\n            \"id\": 4071191775,\n            \"size\": 68031,\n            \"width\": 0,\n            \"height\": 0,\n            \"filename\": \"rainwear_sizing_chart.pdf\",\n            \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/rainwear_sizing_chart.pdf\",\n            \"create_user_id\": 4018007131,\n            \"create_date\": 1713711852887,\n            \"create_user_name\": \"Super Admin\",\n            \"update_user_id\": 4018007131,\n            \"update_date\": 1713711865386,\n            \"update_user_name\": \"Super Admin\",\n            \"lightbox_ids\": [\n                4071505810\n            ],\n            \"thumbnail_filename\": \"4071191775/rainwear_sizing_chart.jpg\",\n            \"asset_type\": \"PDF\",\n            \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071191775/rainwear_sizing_chart.jpg\",\n            \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071191775/rainwear_sizing_chart.jpg\",\n            \"linked_products\": [],\n            \"private\": false,\n            \"extension\": \"pdf\",\n            \"transformations\": {\n                \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4071191775/rainwear_sizing_chart.jpg\",\n                \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4071191775/rainwear_sizing_chart.jpg\",\n                \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4071191775/rainwear_sizing_chart.jpg\"\n            },\n            \"aspect_ratio\": null,\n            \"personna\": null,\n            \"marketing_campaigns\": null,\n            \"source\": null,\n            \"expiration_date\": null,\n            \"version\": \"1\",\n            \"title_a\": null,\n            \"tags\": null,\n            \"application_notes\": null,\n            \"storemediaid\": null,\n            \"b2bindustrialpreliminarydemo804_alt_text\": null,\n            \"category\": \"Uncategorized\",\n            \"s3_version\": \"D0QwdBSWvJ.MHM1_vyKoJJnrmjGiL5JV\",\n            \"publish_date\": null,\n            \"b2bindustrialpreliminarydemo804_url\": null\n        }\n    ],\n    \"create_date\": 1624284957916,\n    \"update_date\": 1743511312454,\n    \"create_user_id\": 4018007131,\n    \"update_user_id\": 4018007131,\n    \"create_user_name\": \"Super Admin\",\n    \"update_user_name\": \"Super Admin\",\n    \"collections\": [\n        4004663064,\n        4004667334,\n        4004676842,\n        4004676853,\n        4004676855,\n        4004679922,\n        4004680228,\n        4004681072\n    ],\n    \"catsy$option_attributes\": [\n        {\n            \"id\": 20586328,\n            \"key\": \"psi\"\n        },\n        {\n            \"id\": 20926107,\n            \"key\": \"no_of_stages\"\n        },\n        {\n            \"id\": 20586340,\n            \"key\": \"tank_size\"\n        },\n        {\n            \"id\": 20586341,\n            \"key\": \"tank_style\"\n        },\n        {\n            \"id\": 20586311,\n            \"key\": \"cylinder_material\"\n        },\n        {\n            \"id\": 20734475,\n            \"key\": \"input_voltage\"\n        }\n    ],\n    \"child_item_count\": 3,\n    \"variant_skus\": [\n        \"GFBDF-2\",\n        \"GFBDF-3\",\n        \"GFBDF-4\"\n    ],\n    \"completeness_score\": 64,\n    \"catsy$attribute_group_scores\": {\n        \"asset_gallery\": 100,\n        \"f8_fastenal\": 0,\n        \"fc20_fall_collection_2021\": 0,\n        \"rltt_ferguson_products\": 0,\n        \"logistics\": 100,\n        \"md15_menards_dot_com\": 0,\n        \"qktx_walmart\": 0,\n        \"safj_gvhjkl\": 0,\n        \"specifications\": 0,\n        \"recicompressors\": 67,\n        \"marketing\": 67,\n        \"core\": 100,\n        \"digital_assets\": 100,\n        \"s220_summer_2021_products\": 0,\n        \"xhuf_website\": 0,\n        \"hrya_acme_export\": 0,\n        \"l217_lowes_2021_export\": 0,\n        \"np21_new_products_for_2021\": 0,\n        \"xhzi_malco_zoro\": 0,\n        \"eoxh_power_bi\": 0,\n        \"xhuq_build_ferguson\": 0,\n        \"cqdm_salesforce\": 0,\n        \"ce25_city_electric_spring_2021\": 0,\n        \"onan_amazon\": 54\n    },\n    \"warranty_language\": null,\n    \"ship_pack_height\": \"12\",\n    \"sellpack_width\": \"18\\\"\",\n    \"map_price\": null,\n    \"rich_description\": null,\n    \"sell_sheet\": null,\n    \"keyword_tags\": null,\n    \"masterpack_weight\": \"300 lbs\",\n    \"number\": \"GFBDF\",\n    \"benefit_4\": \"Efficiency Redefined: Engineered for optimal energy efficiency, our compressor reduces operational costs while maintaining peak performance, making it a sustainable choice for your business.\",\n    \"sellpack_height\": \"9\\\"\",\n    \"benefit_5\": \"User-Friendly Design: Intuitive controls, easy maintenance, and a compact footprint make PowerMax a breeze to operate and integrate into your workspace.\",\n    \"benefit_2\": \"Built to Last: Crafted from premium-grade materials and rigorously tested for durability, our compressor ensures years of reliable service, minimizing downtime and maximizing productivity.\",\n    \"benefit_3\": \"Versatile Application: Whether you're powering pneumatic tools, operating machinery, or running a manufacturing line, the PowerMax compressor adapts to diverse applications with ease.\",\n    \"benefit_1\": \"Unrivaled Performance: With industry-leading horsepower and efficient compression mechanisms, PowerMax delivers consistent, high-pressure airflow for all your pneumatic needs.\",\n    \"cost_string\": \"322\",\n    \"grainger_part_number\": \"1AD3433\",\n    \"ship_pack_length\": \"6\",\n    \"prop_65_warning\": null,\n    \"additional_images\": null,\n    \"inner_pack_height\": \"18\\\"\",\n    \"repair_policy\": null,\n    \"customer_part_number\": \"1AFE222\",\n    \"brand_name\": \"Acme\",\n    \"spec_sheet\": \"4071191775\",\n    \"inner_pack_length\": \"24\\\"\",\n    \"name\": \"120 PSI, CleanAir Reciprocating Air Compressor\",\n    \"image_3\": \"4070863049\",\n    \"ship_pack_width\": \"5\",\n    \"image_2\": \"4070863041\",\n    \"masterpack_length\": \"48\\\"\",\n    \"ship_pack_weight\": \"300\",\n    \"tank_style\": null,\n    \"main_image\": \"4070863061\",\n    \"psi\": \"120 PSI\",\n    \"lifestyle_image\": \"4070863016\",\n    \"complementary_products\": null,\n    \"color_option\": null,\n    \"msrp\": \"3500\",\n    \"recommended_products\": null,\n    \"catsy$option_attribute_keys\": [\n        \"psi\",\n        \"no_of_stages\",\n        \"tank_size\",\n        \"tank_style\",\n        \"cylinder_material\",\n        \"input_voltage\"\n    ],\n    \"gtin\": null,\n    \"masterpack_width\": \"36\\\"\",\n    \"inner_pack_width\": \"14\\\"\",\n    \"selling_weight\": \"50 lbs\",\n    \"parent_sku\": null,\n    \"selling_length\": \"18\\\"\",\n    \"inner_pack_weight\": \"60 lbs\",\n    \"long_description\": \"Unlock unparalleled power and reliability with the PowerMax Reciprocating Air Compressor. Engineered with precision and crafted for excellence, our compressor stands as the pinnacle of performance in industrial air compression technology.\",\n    \"list_price\": null,\n    \"country_of_origin_old\": \"China\",\n    \"prop_65_compliant\": \"Yes\",\n    \"material\": \"Steel\",\n    \"asin\": \"HKIF243234\",\n    \"category\": \"Tools > Power Tools > Compressors\",\n    \"masterpack_height\": \"30\\\"\",\n    \"no_of_stages\": \"4 Stage\",\n    \"tank_size\": \"50 Gal\"\n}"}],"_postman_id":"b911d072-2bff-402d-8220-62fb43de8c3d"},{"name":"Filter Products","id":"548fbf1f-cb53-42ca-a422-1f757e190cb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKeys\": [\r\n      \"number\",\r\n      \"name\",\r\n      \"status\",\r\n      \"category\"\r\n    ],\r\n    \"attributeKey\": \"status\",\r\n    \"operator\": \"is\",\r\n    \"value\": \"Active\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/collections/:collection_id/products/filter?parentage=PARENT&attributes=","description":"<h3 id=\"filter-products-in-channel\">Filter Products in Channel</h3>\n<p>This endpoint allows you to filter products based on specified criteria.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><strong>attributeKeys</strong> (array of strings) - The keys of the attributes to filter by.</p>\n</li>\n<li><p><strong>attributeKey</strong> (string) - The key of the attribute to filter by.</p>\n</li>\n<li><p><strong>operator</strong> (string) - The operator to apply for the filter.</p>\n</li>\n<li><p><strong>value</strong> (string) - The value to filter by.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections",":collection_id","products","filter"],"host":["https://api.catsy.com/v4"],"query":[{"description":{"content":"<p>Filter by parent-child relationship: values like PARENT, STANDALONE, or VARIANT.</p>\n","type":"text/plain"},"key":"parentage","value":"PARENT"},{"disabled":true,"description":{"content":"<p>Filter results by membership status: ALL, COMPLETED, INVALID, or MISSING.</p>\n","type":"text/plain"},"key":"channel_member_type","value":""},{"disabled":true,"description":{"content":"<p>Filter by change type: CREATED, UPDATED, ADDED, DELETED, REMOVED, etc.</p>\n","type":"text/plain"},"key":"action","value":""},{"disabled":true,"description":{"content":"<p>Start date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"begin_date","value":""},{"disabled":true,"description":{"content":"<p>End date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>Max number of records to return (default: 500).</p>\n","type":"text/plain"},"key":"limit","value":""},{"disabled":true,"description":{"content":"<p>Number of records to skip for pagination (default: 0).</p>\n","type":"text/plain"},"key":"offset","value":""},{"key":"attributes","value":""}],"variable":[{"description":{"content":"<p>Internal Collection ID</p>\n","type":"text/plain"},"type":"any","value":"4004663064","key":"collection_id"}]}},"response":[],"_postman_id":"548fbf1f-cb53-42ca-a422-1f757e190cb0"},{"name":"Count Products","id":"58f64db7-c95e-4ba4-a0b0-ae35e750e9af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[\r\n  {\r\n    \"attributeKeys\": [\r\n      \"number\",\r\n      \"name\",\r\n      \"status\",\r\n      \"category\"\r\n    ],\r\n    \"attributeKey\": \"status\",\r\n    \"operator\": \"is\",\r\n    \"value\": \"Active\"\r\n  }\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/collections/:collection_id/products/filter/count?parentage=PARENT","description":"<h3 id=\"count-products-in-channel\">Count Products in Channel</h3>\n<p>This endpoint allows you to filter products and return a count based on specified criteria.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><strong>attributeKeys</strong> (array of strings) - The keys of the attributes to filter by.</p>\n</li>\n<li><p><strong>attributeKey</strong> (string) - The key of the attribute to filter by.</p>\n</li>\n<li><p><strong>operator</strong> (string) - The operator to apply for the filter.</p>\n</li>\n<li><p><strong>value</strong> (string) - The value to filter by.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections",":collection_id","products","filter","count"],"host":["https://api.catsy.com/v4"],"query":[{"description":{"content":"<p>Filter by parent-child relationship: values like PARENT, STANDALONE, or VARIANT.</p>\n","type":"text/plain"},"key":"parentage","value":"PARENT"},{"disabled":true,"description":{"content":"<p>Filter results by membership status: ALL, COMPLETED, INVALID, or MISSING.</p>\n","type":"text/plain"},"key":"channel_member_type","value":""},{"disabled":true,"description":{"content":"<p>Filter by change type: CREATED, UPDATED, ADDED, DELETED, REMOVED, etc.</p>\n","type":"text/plain"},"key":"action","value":""},{"disabled":true,"description":{"content":"<p>Start date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"begin_date","value":""},{"disabled":true,"description":{"content":"<p>End date for filtering results (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"end_date","value":""},{"disabled":true,"description":{"content":"<p>Max number of records to return (default: 500).</p>\n","type":"text/plain"},"key":"limit","value":""},{"disabled":true,"description":{"content":"<p>Number of records to skip for pagination (default: 0).</p>\n","type":"text/plain"},"key":"offset","value":""}],"variable":[{"type":"any","value":"4004663064","key":"collection_id"}]}},"response":[],"_postman_id":"58f64db7-c95e-4ba4-a0b0-ae35e750e9af"},{"name":"Count Collections","id":"809fb5d6-28eb-4fee-8b32-2b6bfcc4adae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/collections/count","description":"<h3 id=\"get-collection-count\">Get Collection Count</h3>\n<p>This endpoint is used to retrieve the count of collections.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections","count"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"95c7c318-a73b-4b3d-9c9a-c6eca7aea41a","name":"Count Collections","originalRequest":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/collections/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:26:49 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=7l2xCfOuHtNyrksX4ztOAVRUP2RbWgeJUcwCAPg8oeP7YUZjhZ4eyfZQTJwovIIlgOswnyTpAD%2BtjIzKJXfNZ6AX85q1%2Beq0lhkd8wn8wm%2BAv4spbySkPpq5ETN687k%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936143a18d68b8b1-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2376&min_rtt=2191&rtt_var=954&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1102&delivery_rate=660885&cwnd=238&unsent_bytes=0&cid=d3fe9550c9ea5521&ts=221&x=0\""}],"cookie":[],"responseTime":null,"body":"70"}],"_postman_id":"809fb5d6-28eb-4fee-8b32-2b6bfcc4adae"},{"name":"Sequence Collections","id":"44fba1e0-9c6c-4ed8-b3b2-62210033b9bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n  4004663064,\r\n  4004663465\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/collections/sequence","description":"<h3 id=\"sequence-collections\">Sequence Collections</h3>\n<p>This endpoint allows you to update a collection sequence</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request should include a raw payload with the collection IDs sequence to be updated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["collections","sequence"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"882e8af7-52c0-420a-8c24-0eaa67749eb3","name":"Sequence Collections","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"[\r\n  4004663064,\r\n  4004663465\r\n]\r\n","options":{"raw":{"language":"json"}}},"url":"https://api.catsy.com/v4/collections/sequence"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:31:07 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=15%2BT86S8RwuGaGgp2C4QscUepKumvyzM%2BcIMs1pwytdHal%2BKBtDDHvfHb%2BkixHqIlLnDUJHRP8iYGd9t6kfmfD%2BzMHYqJw%2BNlDOsRwngHeAD%2B0xJhY%2FNxLaGtVH5b8Q%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936149eb6e290737-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2224&min_rtt=2132&rtt_var=865&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1192&delivery_rate=679174&cwnd=238&unsent_bytes=0&cid=dbf6e10afd693240&ts=442&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"ok\"\n}"}],"_postman_id":"44fba1e0-9c6c-4ed8-b3b2-62210033b9bd"}],"id":"4bdda38e-c216-4153-9de6-58fa3cbd790d","_postman_id":"4bdda38e-c216-4153-9de6-58fa3cbd790d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}}},{"name":"Attributes","item":[{"name":"Attributes","id":"4006ee9f-fce4-4f93-8b20-1d8aedadfddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attributes?attribute_type&data_type&bucket&is_search_facet&begin_date&end_date","description":"<h3 id=\"get-all-attributes\">Get All Attributes</h3>\n<p>This endpoint retrieves attributes based on the provided query parameters.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><code>attribute_type</code> (optional): The type of attribute.</p>\n</li>\n<li><p><code>data_type</code> (optional): The type of data associated with the attribute.</p>\n</li>\n<li><p><code>bucket</code> (optional): The bucket to filter the attributes.</p>\n</li>\n<li><p><code>is_search_facet</code> (optional): Indicates if the attribute is a search facet.</p>\n</li>\n<li><p><code>begin_date</code> (optional): The start date for filtering attributes.</p>\n</li>\n<li><p><code>end_date</code> (optional): The end date for filtering attributes.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response is an array of objects, where each object represents an attribute with the following properties:</p>\n<ul>\n<li><p><code>id</code> (number): The unique identifier for the attribute.</p>\n</li>\n<li><p><code>name</code> (string): The name of the attribute.</p>\n</li>\n<li><p><code>key</code> (string): The key associated with the attribute.</p>\n</li>\n<li><p><code>data_type</code> (string): The type of data associated with the attribute.</p>\n</li>\n<li><p><code>editor</code> (string): The editor of the attribute.</p>\n</li>\n<li><p><code>search_facet</code> (boolean): Indicates if the attribute is a search facet.</p>\n</li>\n<li><p><code>validation_version</code> (string): The version of validation for the attribute.</p>\n</li>\n<li><p><code>documentation</code> (string): The documentation for the attribute.</p>\n</li>\n<li><p><code>update_user_name</code> (string): The name of the user who last updated the attribute.</p>\n</li>\n<li><p><code>create_date</code> (number): The timestamp of the attribute creation date.</p>\n</li>\n<li><p><code>create_user_name</code> (string): The name of the user who created the attribute.</p>\n</li>\n<li><p><code>update_date</code> (number): The timestamp of the last update to the attribute.</p>\n</li>\n<li><p><code>element</code> (object): Contains information about the element, including <code>min_occurs</code> (number) and <code>max_length</code> (number).</p>\n</li>\n<li><p><code>create_user_id</code> (number): The user ID of the attribute creator.</p>\n</li>\n<li><p><code>update_user_id</code> (number): The user ID of the user who last updated the attribute.</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attributes"],"host":["https://api.catsy.com/v4"],"query":[{"description":{"content":"<p>Filter by attribute type: MASTER, CHANNEL, or ALL.</p>\n","type":"text/plain"},"key":"attribute_type","value":null},{"description":{"content":"<p>Filter by attribute data types such as ASSET, INTEGER, JSON, MEASUREMENT, etc.</p>\n","type":"text/plain"},"key":"data_type","value":null},{"description":{"content":"<p>Filter by entity type: PRODUCT, CATEGORY, CUSTOM_ENTITY, etc.</p>\n","type":"text/plain"},"key":"bucket","value":null},{"description":{"content":"<p>Filter for attributes used as search facets.</p>\n","type":"text/plain"},"key":"is_search_facet","value":null},{"description":{"content":"<p>Start date for filtering attributes (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"begin_date","value":null},{"description":{"content":"<p>End date for filtering attributes (format: YYYY-MM-DDTHH:mm:ssTZD).</p>\n","type":"text/plain"},"key":"end_date","value":null}],"variable":[]}},"response":[{"id":"265d7943-2a6b-4e01-b5b3-c2b0c250437d","name":"Attributes","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/attributes","host":["https://api.catsy.com/v4"],"path":["attributes"],"query":[{"key":"attribute_type","value":null,"type":"text","disabled":true},{"key":"data_type","value":null,"type":"text","disabled":true},{"key":"bucket","value":null,"type":"text","disabled":true},{"key":"is_search_facet","value":null,"type":"text","disabled":true},{"key":"begin_date","value":null,"type":"text","disabled":true},{"key":"end_date","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:37:27 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=pjvPXi3hOq8QV7MWzqrGjKG07f0GFNlPMQ9sVgMP7na39o7OYGrGwOXM%2Fo46M5rqPWPlxczcFwp0LSOTaffJS5u0Eyl%2FYm6XyiG04r2tg0ZBKOOIDyrrvL6yBEvQQgI%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"936153346da4c93b-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2257&min_rtt=2219&rtt_var=859&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1095&delivery_rate=652546&cwnd=235&unsent_bytes=0&cid=cc84ce80b013750d&ts=373&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 20586340,\n        \"name\": \"(Tank) Size\",\n        \"key\": \"tank_size\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"Tank Size\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1729774120162,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586341,\n        \"name\": \"(Tank) Style\",\n        \"key\": \"tank_style\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1744154240842,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586288,\n        \"name\": \"ASIN\",\n        \"key\": \"asin\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1730552978514,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20927201,\n        \"name\": \"Accessory Product\",\n        \"key\": \"accessory_product\",\n        \"data_type\": \"PRODUCT\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659963149046,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684373,\n        \"name\": \"Accessory Size\",\n        \"key\": \"accessory_size\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"Please enter size in UK / \",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356671,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1718198505387,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20759998,\n        \"name\": \"Action Photo\",\n        \"key\": \"action_photo\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1637271039547,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1736796565630,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20937227,\n        \"name\": \"Action Shot\",\n        \"key\": \"action_shot\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1661793208206,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21027389,\n        \"name\": \"Additional Images\",\n        \"key\": \"additional_images\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1677271739624,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21285949,\n        \"name\": \"Air Consumption\",\n        \"key\": \"air_consumption\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Catsy Administrator\",\n        \"create_date\": 1716210048921,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1734122070541,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007130\n    },\n    {\n        \"id\": 21285950,\n        \"name\": \"Air Inlet\",\n        \"key\": \"air_inlet\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1716210050231,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1718288057344,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20882686,\n        \"name\": \"Amps\",\n        \"key\": \"amps\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1651781381736,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1711464210262,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660350,\n        \"name\": \"Aperture\",\n        \"key\": \"aperture\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146901,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1711464210742,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20676510,\n        \"name\": \"Appliance Input\",\n        \"key\": \"appliance_input\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626273680650,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1711464211379,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640291,\n        \"name\": \"Application\",\n        \"key\": \"application\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223421801,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20755016,\n        \"name\": \"Arm Height (From Floor)\",\n        \"key\": \"arm_height_from_floor\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1636988799241,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20661632,\n        \"name\": \"Assembly Instructions\",\n        \"key\": \"assembly_instructions\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622730511513,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20707362,\n        \"name\": \"Attribute 1\",\n        \"key\": \"attribute_1\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1629834253379,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20707364,\n        \"name\": \"Attribute 2\",\n        \"key\": \"attribute_2\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1629834253717,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21364143,\n        \"name\": \"Auto Linked Image\",\n        \"key\": \"auto_linked_image\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1732576463065,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1732662150472,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660354,\n        \"name\": \"Auto-iris\",\n        \"key\": \"autoiris\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146919,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348716,\n        \"name\": \"Avg. Hours\",\n        \"key\": \"avg_hours\",\n        \"data_type\": \"INTEGER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692702588,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692702588,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21396540,\n        \"name\": \"B2B Industrial Preliminary Demo Gid\",\n        \"key\": \"b2b_industrial_preliminary_demo_gid\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1740495978732,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1740495978732,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613775,\n        \"name\": \"BTU\",\n        \"key\": \"btu\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614017576007,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20755012,\n        \"name\": \"Back Dimensions\",\n        \"key\": \"back_dimensions\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1636988798138,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20755043,\n        \"name\": \"Back Image\",\n        \"key\": \"back_image\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1636990740540,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508438,\n        \"name\": \"Backdraft Damper Included\",\n        \"key\": \"backdraft_damper_included\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742828181539,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742828181539,\n        \"picklist_id\": 214806,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823387,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823388,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348709,\n        \"name\": \"Base\",\n        \"key\": \"base\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692441316,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692441316,\n        \"picklist_id\": 195405,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960014,\n                \"value\": \"G4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960015,\n                \"value\": \"GY6.35\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960016,\n                \"value\": \"E26\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960017,\n                \"value\": \"G9\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960018,\n                \"value\": \"E12\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684363,\n        \"name\": \"Base Drawing Number\",\n        \"key\": \"base_drawing_number\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356292,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690346,\n        \"name\": \"Base Material\",\n        \"key\": \"base_material\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402068264,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690348,\n        \"name\": \"Base Material Details\",\n        \"key\": \"base_material_details\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402068557,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586293,\n        \"name\": \"Battery Capacity\",\n        \"key\": \"battery_capacity\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57116,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 2814465,\n                \"value\": \"4.0Ah\",\n                \"abbreviation\": \"4AH\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2814466,\n                \"value\": \"5.0Ah\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2814467,\n                \"value\": \"6.0Ah\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348715,\n        \"name\": \"Beam Angle\",\n        \"key\": \"beam_angle\",\n        \"data_type\": \"INTEGER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692679166,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692679166,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21238793,\n        \"name\": \"Blade Diameter\",\n        \"key\": \"blade_diameter\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1708990339540,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1708990339540,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21322260,\n        \"name\": \"Blade Diameter\",\n        \"key\": \"usd_blade_diameter\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1723738961370,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1723738961370,\n        \"picklist_id\": 192715,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11861236,\n                \"value\": \"8 inches\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861237,\n                \"value\": \"10 inches\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861238,\n                \"value\": \"12 inches\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20734471,\n        \"name\": \"Blade Length\",\n        \"key\": \"blade_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1632947955626,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20734465,\n        \"name\": \"Blade Material\",\n        \"key\": \"blade_material\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1632947953563,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20864524,\n        \"name\": \"Brand\",\n        \"key\": \"brand\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1649850007927,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1725545792311,\n        \"picklist_id\": 96183,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5075125,\n                \"value\": \"PacRim\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5075123,\n                \"value\": \"Reliance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5075124,\n                \"value\": \"GTW\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5075122,\n                \"value\": \"RedDot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685742,\n                \"value\": \"IRWIN\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685743,\n                \"value\": \"EAZYPOWER\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685744,\n                \"value\": \"CLE-LINE\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685745,\n                \"value\": \"WESTWARD\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685751,\n                \"value\": \"RUKO TOOLS\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953170,\n                \"value\": \"SENCO\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953453,\n                \"value\": \"CRESCENT\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586299,\n        \"name\": \"Brand Name\",\n        \"key\": \"brand_name\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"Please enter your brand name without dashes or special characters. You can find this on the invoices you send us.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348708,\n        \"name\": \"Bulb Type\",\n        \"key\": \"bulb_type\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692410694,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692410694,\n        \"picklist_id\": 195404,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960005,\n                \"value\": \"T5\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960006,\n                \"value\": \"CA10\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960007,\n                \"value\": \"T6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960008,\n                \"value\": \"A15\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960009,\n                \"value\": \"ST15\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960010,\n                \"value\": \"A19\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960011,\n                \"value\": \"B11\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960012,\n                \"value\": \"G40\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960013,\n                \"value\": \"G25\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348702,\n        \"name\": \"Bullet 1\",\n        \"key\": \"bullet_1\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692386281,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692386281,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348703,\n        \"name\": \"Bullet 2\",\n        \"key\": \"bullet_2\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692386917,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692386917,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348704,\n        \"name\": \"Bullet 3\",\n        \"key\": \"bullet_3\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692387565,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692387565,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348705,\n        \"name\": \"Bullet 4\",\n        \"key\": \"bullet_4\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692388228,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692388228,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348706,\n        \"name\": \"Bullet 5\",\n        \"key\": \"bullet_5\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692388878,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692388878,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348707,\n        \"name\": \"Bullet 6\",\n        \"key\": \"bullet_6\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692389542,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692389542,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20676511,\n        \"name\": \"Burner\",\n        \"key\": \"burner\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626273680652,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626056,\n        \"name\": \"CCT\",\n        \"key\": \"ccd\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617148327493,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1696176159904,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348712,\n        \"name\": \"CRI\",\n        \"key\": \"cri\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692555540,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692555540,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20957479,\n        \"name\": \"Capacities\",\n        \"key\": \"capacities\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1665586203549,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613747,\n        \"name\": \"Capacity \",\n        \"key\": \"capacity\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614004117860,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21039462,\n        \"name\": \"Care, Wash and Usage Instructions\",\n        \"key\": \"care_wash_and_usage_instructions\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1680184717820,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"catsy.lookupCustomEntity(\\\"care_instructions\\\", product.attribute_key).instructions\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"catsy.lookupCustomEntity(\\\"care_instructions\\\", product.attribute_key).instructions\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"attribute_key\"\n            ]\n        },\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640207,\n        \"name\": \"Case Pack Height\\t\",\n        \"key\": \"case_pack_height\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620221353010,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640197,\n        \"name\": \"Case Pack Length\\t\",\n        \"key\": \"case_pack_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620221351850,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640203,\n        \"name\": \"Case Pack Packaging Description\\t\",\n        \"key\": \"case_pack_packaging_description\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620221352385,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640195,\n        \"name\": \"Case Pack Quantity\\t\",\n        \"key\": \"case_pack_quantity\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620221351831,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640199,\n        \"name\": \"Case Pack UPC/EAN\",\n        \"key\": \"case_pack_upcean\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620221351876,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640204,\n        \"name\": \"Case Pack Weight\\t\\t\",\n        \"key\": \"case_pack_weight\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620221352385,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640205,\n        \"name\": \"Case Pack Width\",\n        \"key\": \"case_pack_width\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620221352385,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586300,\n        \"name\": \"Category\",\n        \"key\": \"category\",\n        \"data_type\": \"CATEGORY\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20935513,\n        \"name\": \"Certification\",\n        \"key\": \"certification\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660999505564,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 108010,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5699526,\n                \"value\": \"ANSI\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640182,\n        \"name\": \"Certification Date\",\n        \"key\": \"certification_date\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620212842786,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20935514,\n        \"name\": \"Class\",\n        \"key\": \"class\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660999507215,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 108011,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5699528,\n                \"value\": \"Class-1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5699527,\n                \"value\": \"Class-2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5699529,\n                \"value\": \"Class-3\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20934503,\n        \"name\": \"Closure Type\",\n        \"key\": \"closure_type\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660482387660,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 107919,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5693008,\n                \"value\": \"Zipper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693007,\n                \"value\": \"Buttons\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613751,\n        \"name\": \"Code\",\n        \"key\": \"code\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614004117915,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20735836,\n        \"name\": \"Cold Rolled Steel 24 Gauge\",\n        \"key\": \"cold_rolled_steel_24_gauge\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1633441295227,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21285954,\n        \"name\": \"Collation\",\n        \"key\": \"collation\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1716212726230,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1716212726230,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586306,\n        \"name\": \"Color\",\n        \"key\": \"color_option\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57095,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 2812591,\n                \"value\": \"Black\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812592,\n                \"value\": \"Blue\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812593,\n                \"value\": \"Deep Garnet Red\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812594,\n                \"value\": \"Garden Green\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812595,\n                \"value\": \"Green\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812596,\n                \"value\": \"Grey\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812597,\n                \"value\": \"Orange\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812598,\n                \"value\": \"Urban Navy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812599,\n                \"value\": \"White\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812600,\n                \"value\": \"Yellow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5608095,\n                \"value\": \"Lime\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21268740,\n        \"name\": \"Color\",\n        \"key\": \"qaw_color\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1711485199656,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1711485199656,\n        \"picklist_id\": 178378,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 10926957,\n                \"value\": \"Orange\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10926958,\n                \"value\": \"Yellow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10926959,\n                \"value\": \"Lime Green\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20790118,\n        \"name\": \"Color Multi\",\n        \"key\": \"color_multi\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1641558848876,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 90431,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 4867968,\n                \"value\": \"Red\",\n                \"abbreviation\": \"RD\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4867970,\n                \"value\": \"Black\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4867969,\n                \"value\": \"Pink\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14954722,\n                \"value\": \"Brown\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14954723,\n                \"value\": \"Green\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348713,\n        \"name\": \"Color Temp\",\n        \"key\": \"color_temp\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692592534,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692592534,\n        \"picklist_id\": 195407,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960021,\n                \"value\": \"2700K\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960022,\n                \"value\": \"3000K\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960023,\n                \"value\": \"4000K\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960024,\n                \"value\": \"5000K\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348714,\n        \"name\": \"Color Temp Description\",\n        \"key\": \"color_temp_description\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692621150,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692621150,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640242,\n        \"name\": \"Compatible Insert Hand\",\n        \"key\": \"compatible_insert_hand\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223419893,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640260,\n        \"name\": \"Compatible Inserts (Full)\",\n        \"key\": \"compatible_inserts_full\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420357,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640281,\n        \"name\": \"Compatible Inserts (Partial)\",\n        \"key\": \"compatible_inserts_partial\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420818,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626037,\n        \"name\": \"Complementary Products\",\n        \"key\": \"complementary_products\",\n        \"data_type\": \"PRODUCT\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617147140116,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20676505,\n        \"name\": \"Components\",\n        \"key\": \"components\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626273680452,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508314,\n        \"name\": \"Connector Type\",\n        \"key\": \"connector_type\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742678751124,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742678751124,\n        \"picklist_id\": 214793,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823074,\n                \"value\": \"XLR\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823075,\n                \"value\": \"USB\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823076,\n                \"value\": \"1/4 Inch Jack\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684379,\n        \"name\": \"Contact Configuration\",\n        \"key\": \"contact_configuration\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356981,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640265,\n        \"name\": \"Coolant Through (Yes/No)\",\n        \"key\": \"coolant_through_yesno\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420392,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20926103,\n        \"name\": \"Corrosion Resistance\",\n        \"key\": \"corrosion_resistance\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659527944899,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925310,\n        \"name\": \"Cost\",\n        \"key\": \"cost\",\n        \"data_type\": \"PRICE\",\n        \"currency\": \"USD\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1658931568163,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586308,\n        \"name\": \"Cost (St)\",\n        \"key\": \"cost_string\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20924922,\n        \"name\": \"Country Of Origin\",\n        \"key\": \"country_of_origin\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1658850641565,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1733170586655,\n        \"picklist_id\": 106488,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5605223,\n                \"value\": \"Colombia\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605225,\n                \"value\": \"Czech Republic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605224,\n                \"value\": \"Vietnam\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605227,\n                \"value\": \"China\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605226,\n                \"value\": \"Philippines\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605228,\n                \"value\": \"Poland\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605229,\n                \"value\": \"Italy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605230,\n                \"value\": \"Portugal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605231,\n                \"value\": \"India\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9696879,\n                \"value\": \"Koria\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586309,\n        \"name\": \"Country of Origin OLD\",\n        \"key\": \"country_of_origin_old\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508734,\n        \"name\": \"Coverage Description (DE)\",\n        \"key\": \"coverage_description_de\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742858702063,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742859173319,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_de\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_de\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"coverage_length\",\n                \"coverage_level\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508731,\n        \"name\": \"Coverage Description (EN)\",\n        \"key\": \"coverage_description_en\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742858698838,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742859134111,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_en\\n\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_en\\n\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"coverage_length\",\n                \"coverage_level\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508732,\n        \"name\": \"Coverage Description (ES)\",\n        \"key\": \"coverage_description_es\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742858699676,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742859140106,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_es\\n\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_es\\n\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"coverage_length\",\n                \"coverage_level\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508733,\n        \"name\": \"Coverage Description (FR)\",\n        \"key\": \"coverage_description_fr\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742858700438,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742859147369,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_fr\\n\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_fr\\n\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"coverage_length\",\n                \"coverage_level\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508736,\n        \"name\": \"Coverage Description (IT)\",\n        \"key\": \"coverage_description_it\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742858704492,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742859155432,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_it\\n\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_it\\n\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"coverage_length\",\n                \"coverage_level\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508735,\n        \"name\": \"Coverage Description (PT)\",\n        \"key\": \"coverage_description_pt\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742858703730,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742859124088,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_pt\\n\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"catsy.lookupCustomEntity(\\\"service_contract\\\", product.coverage_length, product.coverage_level).contract_description_pt\\n\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"coverage_length\",\n                \"coverage_level\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508729,\n        \"name\": \"Coverage Length\",\n        \"key\": \"coverage_length\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742858513322,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742858513322,\n        \"picklist_id\": 214910,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15825385,\n                \"value\": \"90 Day\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15825386,\n                \"value\": \"180 Day\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15825387,\n                \"value\": \"1 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15825388,\n                \"value\": \"3 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15825389,\n                \"value\": \"5 Year\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508730,\n        \"name\": \"Coverage Level\",\n        \"key\": \"coverage_level\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742858514126,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742858514126,\n        \"picklist_id\": 214911,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15825390,\n                \"value\": \"Bronze\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15825391,\n                \"value\": \"Silver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15825392,\n                \"value\": \"Gold\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15825393,\n                \"value\": \"Platinum\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20957481,\n        \"name\": \"Cryptographic Process\",\n        \"key\": \"cryptographic_process\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1665586205200,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20856567,\n        \"name\": \"Current Price\",\n        \"key\": \"current_price\",\n        \"data_type\": \"PRICE\",\n        \"currency\": \"USD\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1648826338444,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"def result = ''\\n\\nif (product.sale_active == 'Yes') {\\n\\nresult = product.sale_price\\n\\n}\\n\\nif (product.sale_active == 'No') {\\n\\nresult = product.regular_price\\n\\n}\\nresult\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"def result = ''\\n\\nif (product.sale_active == 'Yes') {\\n\\nresult = product.sale_price\\n\\n}\\n\\nif (product.sale_active == 'No') {\\n\\nresult = product.regular_price\\n\\n}\\nresult\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"regular_price\",\n                \"sale_active\",\n                \"sale_price\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20629708,\n        \"name\": \"Customer\",\n        \"key\": \"customer\",\n        \"data_type\": \"PARTNER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617476222110,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586310,\n        \"name\": \"Customer Part Number\",\n        \"key\": \"customer_part_number\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640297,\n        \"name\": \"Cutting Edge Length\",\n        \"key\": \"cutting_edge_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620224108681,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586311,\n        \"name\": \"Cylinder Material\",\n        \"key\": \"cylinder_material\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626057,\n        \"name\": \"DLC Listed\",\n        \"key\": \"dlc_listed\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617148327520,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21086958,\n        \"name\": \"Decimal Equivalent\",\n        \"key\": \"decimal_equivalent\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1684756706147,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20661616,\n        \"name\": \"Delta\",\n        \"key\": \"delta\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622730160137,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20957480,\n        \"name\": \"Dimensions\",\n        \"key\": \"dimensions\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1665586204363,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348710,\n        \"name\": \"Dimmable\",\n        \"key\": \"dimmable\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692460753,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692460753,\n        \"picklist_id\": 195406,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960020,\n                \"value\": \"Y\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21390691,\n        \"name\": \"Dosage\",\n        \"key\": \"dosage\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1739302775846,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1739302775846,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690354,\n        \"name\": \"Drawers Included\",\n        \"key\": \"drawers_included\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402069517,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21086956,\n        \"name\": \"Drill Bit Size\",\n        \"key\": \"drill_bit_size\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1684756672277,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 144911,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 7685704,\n                \"value\": \"1/8 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685705,\n                \"value\": \"3/16 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685706,\n                \"value\": \"7/32 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685707,\n                \"value\": \"1/4 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685708,\n                \"value\": \"5/16 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685709,\n                \"value\": \"7/16 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685710,\n                \"value\": \"1/2 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685746,\n                \"value\": \"9/64 in\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685747,\n                \"value\": \"5/32 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685748,\n                \"value\": \"#30\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685749,\n                \"value\": \"#20\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685750,\n                \"value\": \"#11\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20882684,\n        \"name\": \"Duplex/Simplex\",\n        \"key\": \"duplexsimplex\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1651781380537,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20698083,\n        \"name\": \"EBC Amazon\",\n        \"key\": \"ebc_amazon\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"RICH\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1628593182082,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613779,\n        \"name\": \"Efficiency\",\n        \"key\": \"efficiency\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614017576058,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348722,\n        \"name\": \"Enclosed Rated\",\n        \"key\": \"enclosed_rated\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692909632,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692909632,\n        \"picklist_id\": 195413,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960019,\n                \"value\": \"Y\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684360,\n        \"name\": \"Environmental Rating\",\n        \"key\": \"environmental_rating\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881355953,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20615470,\n        \"name\": \"Exchange Policy\",\n        \"key\": \"exchange_policy\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614099354417,\n        \"create_user_name\": \"Alex Kam\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007204,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925893,\n        \"name\": \"Explosive\",\n        \"key\": \"explosive\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"conditional_attribute_keys\": [],\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659369747650,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"conditions\": {\n            \"all\": [],\n            \"any\": [\n                {\n                    \"all\": [],\n                    \"any\": [],\n                    \"elements\": [\n                        {\n                            \"attribute_key\": \"hazardous\",\n                            \"min_occurs\": 1\n                        }\n                    ]\n                }\n            ],\n            \"elements\": []\n        },\n        \"picklist_id\": 106578,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5608118,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5608117,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20926104,\n        \"name\": \"Fasteners Required\",\n        \"key\": \"fasteners_required\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659527946172,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586294,\n        \"name\": \"Feature Benefit 1\",\n        \"key\": \"benefit_1\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1717794964484,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 500\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586295,\n        \"name\": \"Feature Benefit 2\",\n        \"key\": \"benefit_2\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586296,\n        \"name\": \"Feature Benefit 3\",\n        \"key\": \"benefit_3\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586297,\n        \"name\": \"Feature Benefit 4\",\n        \"key\": \"benefit_4\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 20,\n            \"max_length\": 400\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586298,\n        \"name\": \"Feature Benefit 5\",\n        \"key\": \"benefit_5\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21238796,\n        \"name\": \"Feature Benefit 6\",\n        \"key\": \"benefit_6\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1708990503697,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1716210826811,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20743105,\n        \"name\": \"Feature Benefit 7\",\n        \"key\": \"benefit_7\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1635336590733,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1716210847427,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660348,\n        \"name\": \"Field of View\",\n        \"key\": \"field_of_view\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146902,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626048,\n        \"name\": \"Finish\",\n        \"key\": \"finish\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617148327490,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21086967,\n        \"name\": \"Finish - Machining\",\n        \"key\": \"finish_machining\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1684758261967,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 144914,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 7685735,\n                \"value\": \"Bright (Uncoated)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685736,\n                \"value\": \"TiAIN\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685737,\n                \"value\": \"TiN\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685738,\n                \"value\": \"Black Oxide\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925894,\n        \"name\": \"Flammable\",\n        \"key\": \"flammable\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"conditional_attribute_keys\": [],\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659369748079,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"conditions\": {\n            \"all\": [],\n            \"any\": [\n                {\n                    \"all\": [],\n                    \"any\": [],\n                    \"elements\": [\n                        {\n                            \"attribute_key\": \"hazardous\",\n                            \"min_occurs\": 1\n                        }\n                    ]\n                }\n            ],\n            \"elements\": []\n        },\n        \"picklist_id\": 106579,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5608120,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5608119,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21086963,\n        \"name\": \"Flute Length\",\n        \"key\": \"flute_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1684757869381,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660352,\n        \"name\": \"Focal Length\",\n        \"key\": \"focal_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146901,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20743103,\n        \"name\": \"Free Area (sq in)\",\n        \"key\": \"free_area_sq_in\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1635336173706,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508312,\n        \"name\": \"Frequency Response\",\n        \"key\": \"frequency_response\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742678749758,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742678749758,\n        \"picklist_id\": 214791,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823068,\n                \"value\": \"20 Hz to 20 kHz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823069,\n                \"value\": \"50 Hz to 15 kHz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823070,\n                \"value\": \"40 Hz to 18 kHz\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20676509,\n        \"name\": \"Fuel\",\n        \"key\": \"fuel\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626273680650,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20614901,\n        \"name\": \"GTIN\",\n        \"key\": \"gtin\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614096837302,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20934504,\n        \"name\": \"Gauge\",\n        \"key\": \"gauge\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660482388682,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 107920,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5693009,\n                \"value\": \"11-Gauge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693011,\n                \"value\": \"12-Gauge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693010,\n                \"value\": \"13-Gauge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953138,\n                \"value\": \"18-Gauge\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953171,\n                \"value\": \"21-Gauge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953172,\n                \"value\": \"23-Gauge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953173,\n                \"value\": \"16-Gauge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953174,\n                \"value\": \"15-Gauge\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20872024,\n        \"name\": \"Gender\",\n        \"key\": \"gender\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1650472367126,\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 96455,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5083297,\n                \"value\": \"Boy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5083296,\n                \"value\": \"Girl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5083295,\n                \"value\": \"Unisex\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018008642,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21522876,\n        \"name\": \"Generate Technical Attributes\",\n        \"key\": \"generate_technical_attributes\",\n        \"data_type\": \"JSON\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1744119692784,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1744119692784,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21268033,\n        \"name\": \"Generated Description\",\n        \"key\": \"generated_description\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1711134126320,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1711134126320,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20703979,\n        \"name\": \"Google Keywords\",\n        \"key\": \"google_keywords\",\n        \"data_type\": \"TAG\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1629381104943,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57207,\n        \"picklist_type\": \"TAG\",\n        \"picklist_values\": [\n            {\n                \"id\": 2821359,\n                \"value\": \"Cactus\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821360,\n                \"value\": \"Flora\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821361,\n                \"value\": \"Plant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821362,\n                \"value\": \"Animal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821363,\n                \"value\": \"Green Snake\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821364,\n                \"value\": \"Machine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821365,\n                \"value\": \"Motor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821367,\n                \"value\": \"red plug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821368,\n                \"value\": \"red\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821370,\n                \"value\": \"green handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821371,\n                \"value\": \"gpi silver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821372,\n                \"value\": \"Clothes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821373,\n                \"value\": \"Women\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821374,\n                \"value\": \"Workout\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821375,\n                \"value\": \"Power Tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821376,\n                \"value\": \"Power Drills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821377,\n                \"value\": \"Drills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821378,\n                \"value\": \"Lithium-Ion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821379,\n                \"value\": \"Cordless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821380,\n                \"value\": \"Air Compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821381,\n                \"value\": \"Tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821382,\n                \"value\": \"Sofa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821383,\n                \"value\": \"chair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821384,\n                \"value\": \"Leather\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821385,\n                \"value\": \"Toys\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821386,\n                \"value\": \"Robot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821387,\n                \"value\": \"Spec Sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821388,\n                \"value\": \"Sell Sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821389,\n                \"value\": \"Lifestyle Image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821390,\n                \"value\": \"remote controlled\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821391,\n                \"value\": \"Sell s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821392,\n                \"value\": \"furniture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821393,\n                \"value\": \"highline\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821394,\n                \"value\": \"Clothing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821395,\n                \"value\": \"womens\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821396,\n                \"value\": \"shirt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821397,\n                \"value\": \"dryfit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821398,\n                \"value\": \"sphere air\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821399,\n                \"value\": \"saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821400,\n                \"value\": \"hand saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821401,\n                \"value\": \"Radiance Hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821402,\n                \"value\": \"tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821403,\n                \"value\": \"power saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821404,\n                \"value\": \"30 Gallon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821405,\n                \"value\": \"power toos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821406,\n                \"value\": \"drills'\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821407,\n                \"value\": \"power dirlls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821408,\n                \"value\": \"winter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821409,\n                \"value\": \"coat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821410,\n                \"value\": \"dragon fly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821411,\n                \"value\": \"winter'\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821412,\n                \"value\": \"Portable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821413,\n                \"value\": \"Electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821414,\n                \"value\": \"Main Image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3054167,\n                \"value\": \"bedroom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3169874,\n                \"value\": \"titanium blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3237211,\n                \"value\": \"3d\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3237212,\n                \"value\": \"metal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3672638,\n                \"value\": \"high speed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3757961,\n                \"value\": \"bulk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3758929,\n                \"value\": \"convection\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852408,\n                \"value\": \"yellow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852409,\n                \"value\": \"spe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852410,\n                \"value\": \"spec\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3911454,\n                \"value\": \"pins\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071803,\n                \"value\": \"DSN12c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071808,\n                \"value\": \"planter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071807,\n                \"value\": \"plants\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071810,\n                \"value\": \"succulents\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071806,\n                \"value\": \"cactus crazy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071812,\n                \"value\": \"table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071805,\n                \"value\": \"end table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071811,\n                \"value\": \"industrial but not like that\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071809,\n                \"value\": \"living room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071804,\n                \"value\": \"side table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4219039,\n                \"value\": \"oak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4256504,\n                \"value\": \"handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4278725,\n                \"value\": \"red handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4432327,\n                \"value\": \"full set\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4449860,\n                \"value\": \"boom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4634269,\n                \"value\": \"Barrington\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4853264,\n                \"value\": \"test\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4853265,\n                \"value\": \"tagged\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4867248,\n                \"value\": \"reciprocating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4867265,\n                \"value\": \"piston\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4875421,\n                \"value\": \"new\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4877884,\n                \"value\": \"movable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4882043,\n                \"value\": \"office chair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4924703,\n                \"value\": \"cast iron\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5089048,\n                \"value\": \"compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5092813,\n                \"value\": \"moss green\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5092895,\n                \"value\": \"chemical free\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5197572,\n                \"value\": \"comp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5343701,\n                \"value\": \"Paris\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5382816,\n                \"value\": \"close up\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5609955,\n                \"value\": \"hi viz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5610086,\n                \"value\": \"Draft Inducer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5610087,\n                \"value\": \"toaster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5712116,\n                \"value\": \"18v\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5723592,\n                \"value\": \"Cordless Drill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5723693,\n                \"value\": \"reddot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5726709,\n                \"value\": \"gas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5747253,\n                \"value\": \"green\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5751749,\n                \"value\": \"20V MAX\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5889989,\n                \"value\": \"rubber grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5912188,\n                \"value\": \"bluestone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6356417,\n                \"value\": \"top mount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6356469,\n                \"value\": \"black handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6357227,\n                \"value\": \"woodpecker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6358825,\n                \"value\": \"summer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6509063,\n                \"value\": \"in review\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6627932,\n                \"value\": \"yello\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6627952,\n                \"value\": \"industrial grade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6966601,\n                \"value\": \"rubber wheels\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7122548,\n                \"value\": \"jar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7122549,\n                \"value\": \"honey\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7262928,\n                \"value\": \"metal handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8103938,\n                \"value\": \"steel case\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8125847,\n                \"value\": \"sleveless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8131120,\n                \"value\": \"neon blue\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879677,\n                \"value\": \"art\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879678,\n                \"value\": \"porcelain\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879679,\n                \"value\": \"pottery\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879680,\n                \"value\": \"dessert\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879681,\n                \"value\": \"food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879682,\n                \"value\": \"yogurt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879683,\n                \"value\": \"dia:10.41 cm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879684,\n                \"value\": \"h:1.9 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879685,\n                \"value\": \"capacity:8.5 oz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879686,\n                \"value\": \"h:4.83 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879687,\n                \"value\": \"dia:4.13 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879688,\n                \"value\": \"grey\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117205,\n                \"value\": \"device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117206,\n                \"value\": \"pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117207,\n                \"value\": \"blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117208,\n                \"value\": \"razor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117209,\n                \"value\": \"weapon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117210,\n                \"value\": \"esd safe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117211,\n                \"value\": \"2838fcmp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117212,\n                \"value\": \"irwin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117213,\n                \"value\": \"blue\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117214,\n                \"value\": \"insulatoz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9147143,\n                \"value\": \"jacket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9249874,\n                \"value\": \"water pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9252174,\n                \"value\": \"power drill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9252176,\n                \"value\": \"ois\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9294508,\n                \"value\": \"black\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525070,\n                \"value\": \"adapter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525071,\n                \"value\": \"electronics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525072,\n                \"value\": \"plug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530850,\n                \"value\": \"ra27\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530851,\n                \"value\": \"ramset\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530852,\n                \"value\": \"electrical device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530853,\n                \"value\": \"microphone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530854,\n                \"value\": \"computer hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530855,\n                \"value\": \"hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530856,\n                \"value\": \"mouse\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530857,\n                \"value\": \"13 15 17 19\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530858,\n                \"value\": \"brushless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530859,\n                \"value\": \"dewalt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530860,\n                \"value\": \"13 15 17 19\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530862,\n                \"value\": \"t\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530863,\n                \"value\": \"fuel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530864,\n                \"value\": \"milwaukee\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530865,\n                \"value\": \"ryobi\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530866,\n                \"value\": \"lithium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530869,\n                \"value\": \"usa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530870,\n                \"value\": \"charger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530871,\n                \"value\": \"fast\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530872,\n                \"value\": \"2.5\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530873,\n                \"value\": \"135 psi\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530874,\n                \"value\": \"flexvolt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530875,\n                \"value\": \"grass\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530876,\n                \"value\": \"lawn\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530877,\n                \"value\": \"wheel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530878,\n                \"value\": \"toy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530879,\n                \"value\": \"aircraft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530880,\n                \"value\": \"airplane\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530881,\n                \"value\": \"transportation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530882,\n                \"value\": \"vehicle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530883,\n                \"value\": \"open\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530884,\n                \"value\": \"klein\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530885,\n                \"value\": \"dagger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530886,\n                \"value\": \"knife\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530887,\n                \"value\": \"glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530888,\n                \"value\": \"baseball\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530889,\n                \"value\": \"baseball glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530890,\n                \"value\": \"sport\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530891,\n                \"value\": \"cut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530892,\n                \"value\": \"pro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530893,\n                \"value\": \"scissors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530894,\n                \"value\": \"brown\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530895,\n                \"value\": \"16-377\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530896,\n                \"value\": \"g-tek\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530897,\n                \"value\": \"9/l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530898,\n                \"value\": \"polykor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530899,\n                \"value\": \"gut 4x42f\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530900,\n                \"value\": \"pen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530901,\n                \"value\": \"screwdriver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530902,\n                \"value\": \"klein tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530903,\n                \"value\": \"glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530904,\n                \"value\": \"baseball\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530905,\n                \"value\": \"baseball glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530906,\n                \"value\": \"sport\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530907,\n                \"value\": \"92793pum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530908,\n                \"value\": \"cut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530909,\n                \"value\": \"mcr safety\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530910,\n                \"value\": \"pro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530911,\n                \"value\": \"core\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530912,\n                \"value\": \"helix.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530916,\n                \"value\": \"wiha\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530918,\n                \"value\": \"screwdriver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530919,\n                \"value\": \"fatmax\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530920,\n                \"value\": \"camera\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530921,\n                \"value\": \"video camera\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530922,\n                \"value\": \"bosch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530923,\n                \"value\": \"gex33-6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530924,\n                \"value\": \"light\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530925,\n                \"value\": \"smoke pipe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530927,\n                \"value\": \"3m\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530928,\n                \"value\": \"we\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530929,\n                \"value\": \"hardhat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530930,\n                \"value\": \"helmet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530931,\n                \"value\": \"hardhat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530932,\n                \"value\": \"helmet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533406,\n                \"value\": \"drill/driver kit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533408,\n                \"value\": \"18v cordless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533409,\n                \"value\": \"page\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533410,\n                \"value\": \"text\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533411,\n                \"value\": \"file\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533412,\n                \"value\": \"accessories\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533413,\n                \"value\": \"document\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533414,\n                \"value\": \"invoice\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533415,\n                \"value\": \"jewelry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533416,\n                \"value\": \"gemstone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533417,\n                \"value\": \"contact configuration\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533418,\n                \"value\": \"meltric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533419,\n                \"value\": \"catalog\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533420,\n                \"value\": \"63-a4001\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533421,\n                \"value\": \"poly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533422,\n                \"value\": \"480 vac/1 30 vdc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533423,\n                \"value\": \"product color\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533424,\n                \"value\": \"dsn12c receptacle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533425,\n                \"value\": \"environmental rating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533426,\n                \"value\": \"specifications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533427,\n                \"value\": \"white\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533428,\n                \"value\": \"cad diagram\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533429,\n                \"value\": \"diagram\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533430,\n                \"value\": \"1.654\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533431,\n                \"value\": \"date\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533432,\n                \"value\": \"5.33\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533433,\n                \"value\": \"entry hole pattern\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533434,\n                \"value\": \"4.13\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533435,\n                \"value\": \"3.29\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533436,\n                \"value\": \"english\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533437,\n                \"value\": \"2.13\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533438,\n                \"value\": \"4.74\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533439,\n                \"value\": \"person\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533440,\n                \"value\": \"worker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533441,\n                \"value\": \"adult\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533442,\n                \"value\": \"female\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533443,\n                \"value\": \"woman\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533444,\n                \"value\": \"vest\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533445,\n                \"value\": \"lifejacket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533446,\n                \"value\": \"orange\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533447,\n                \"value\": \"lawn mower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533448,\n                \"value\": \"gun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533449,\n                \"value\": \"shears\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533450,\n                \"value\": \"bow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533451,\n                \"value\": \"tape\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533453,\n                \"value\": \"e50292\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533454,\n                \"value\": \"listed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533455,\n                \"value\": \"ul\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533457,\n                \"value\": \"lr\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533458,\n                \"value\": \"no.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533460,\n                \"value\": \"purple\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533461,\n                \"value\": \"pink\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533462,\n                \"value\": \"kitchen utensil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533463,\n                \"value\": \"tongs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533464,\n                \"value\": \"sword\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533467,\n                \"value\": \"coil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533468,\n                \"value\": \"spiral\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533469,\n                \"value\": \"wire\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533470,\n                \"value\": \"bottle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533471,\n                \"value\": \"cosmetics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533472,\n                \"value\": \"perfume\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533473,\n                \"value\": \"clamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533474,\n                \"value\": \"aluminium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533475,\n                \"value\": \"i\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533476,\n                \"value\": \"water\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533477,\n                \"value\": \"model vrv-4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533478,\n                \"value\": \"vacuum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533479,\n                \"value\": \"relief\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533480,\n                \"value\": \"valve\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533481,\n                \"value\": \"trowel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533482,\n                \"value\": \"mailbox\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533483,\n                \"value\": \"elite\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533484,\n                \"value\": \"star trowel made\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533486,\n                \"value\": \"five\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533487,\n                \"value\": \"quickest maintenance in the industry.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533488,\n                \"value\": \"key features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533489,\n                \"value\": \"silent air portable electric air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533490,\n                \"value\": \"legendary package design offers multiple option\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533491,\n                \"value\": \"fuel efficient doosan d24 engine extends run time to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533492,\n                \"value\": \"engine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533493,\n                \"value\": \"emissions tier level\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533494,\n                \"value\": \"provides over 8,700 cubic inches for tool and accessory\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533495,\n                \"value\": \"configurations to meet your specific needs.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533496,\n                \"value\": \"air compressor with truck mount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533497,\n                \"value\": \"car\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533498,\n                \"value\": \"number\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533499,\n                \"value\": \"industrial 80 gallon air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533500,\n                \"value\": \"horizontal portable twin tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533501,\n                \"value\": \"portable electric air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533502,\n                \"value\": \"number of\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533504,\n                \"value\": \"quiet flow steel tank air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533505,\n                \"value\": \"hook\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533506,\n                \"value\": \"doc's\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533507,\n                \"value\": \"cat 5e\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533508,\n                \"value\": \"cat 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533509,\n                \"value\": \"box\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533510,\n                \"value\": \"6a\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533511,\n                \"value\": \"ammunition\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533512,\n                \"value\": \"grenade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533513,\n                \"value\": \"cable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533514,\n                \"value\": \"wiring\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533515,\n                \"value\": \"truck mount compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533516,\n                \"value\": \"prevent\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533517,\n                \"value\": \"quick\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533518,\n                \"value\": \"discharge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533519,\n                \"value\": \"tank daily\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533520,\n                \"value\": \"regulator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533521,\n                \"value\": \"warning\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533522,\n                \"value\": \"coupler\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533523,\n                \"value\": \"pressure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533524,\n                \"value\": \"tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533525,\n                \"value\": \"danger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533526,\n                \"value\": \"motorcycle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533527,\n                \"value\": \"gx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533528,\n                \"value\": \"bicycle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533530,\n                \"value\": \"m\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533531,\n                \"value\": \"platinum series horizontal tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533533,\n                \"value\": \"armored\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533534,\n                \"value\": \"military\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533535,\n                \"value\": \"90l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533537,\n                \"value\": \"ompressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533538,\n                \"value\": \"male\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533539,\n                \"value\": \"man\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533540,\n                \"value\": \"pushing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533541,\n                \"value\": \"jeans\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533542,\n                \"value\": \"honda\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533543,\n                \"value\": \"missile\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533544,\n                \"value\": \"made in the usa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533545,\n                \"value\": \"controls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533546,\n                \"value\": \"jcm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533547,\n                \"value\": \"start\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533548,\n                \"value\": \"p/n umsr-50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533549,\n                \"value\": \"run\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533550,\n                \"value\": \"set posts without mixing!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533551,\n                \"value\": \"net wt. 50 lb (22.7 kg)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533552,\n                \"value\": \"to sain and eyes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533553,\n                \"value\": \"mezcla de concreto de fraguado rápido\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533554,\n                \"value\": \"quikrete\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533555,\n                \"value\": \"setting posts floors patios\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533556,\n                \"value\": \"no. 1004\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533557,\n                \"value\": \"fast-setting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533558,\n                \"value\": \"concrete mix\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533559,\n                \"value\": \"white board\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533560,\n                \"value\": \"t-shirt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533561,\n                \"value\": \"bib\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533562,\n                \"value\": \"cyan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533563,\n                \"value\": \"maruti\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533564,\n                \"value\": \"hot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533565,\n                \"value\": \"canine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533566,\n                \"value\": \"dragon prime\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533567,\n                \"value\": \"enterprise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533568,\n                \"value\": \"cobra+\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533569,\n                \"value\": \"firearm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533570,\n                \"value\": \"trigger activated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533571,\n                \"value\": \"professional grade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533572,\n                \"value\": \"agarre cómodo\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533573,\n                \"value\": \"calidad profesional\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533574,\n                \"value\": \"comfortable grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533575,\n                \"value\": \"activada por gatillo\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533576,\n                \"value\": \"reduces noise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533577,\n                \"value\": \"powder actuated tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533578,\n                \"value\": \"reduce el ruido\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533579,\n                \"value\": \"triggershot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533580,\n                \"value\": \"lamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533581,\n                \"value\": \"actuated tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533582,\n                \"value\": \"para sujeción al concreto,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533583,\n                \"value\": \"herramienta por pólvara\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533584,\n                \"value\": \"for fastening to concrete. masonry or steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533585,\n                \"value\": \"powder\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533586,\n                \"value\": \"oil-free air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533587,\n                \"value\": \"alcohol\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533588,\n                \"value\": \"beer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533589,\n                \"value\": \"beverage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533590,\n                \"value\": \"sphere\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533591,\n                \"value\": \"balloon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533592,\n                \"value\": \"advertisement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533593,\n                \"value\": \"poster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533594,\n                \"value\": \"salads\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533595,\n                \"value\": \"stacks\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533596,\n                \"value\": \"nachos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533597,\n                \"value\": \"drinks\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533598,\n                \"value\": \"bowls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533599,\n                \"value\": \"for a reason\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533600,\n                \"value\": \"tacos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533601,\n                \"value\": \"burritos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533602,\n                \"value\": \"our queso\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533603,\n                \"value\": \"make it a meal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533604,\n                \"value\": \"tin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533605,\n                \"value\": \"can\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533606,\n                \"value\": \"charcoal storage dispenser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533607,\n                \"value\": \"kingsford\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533609,\n                \"value\": \"heavy dutt handles\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533610,\n                \"value\": \"blouse\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533611,\n                \"value\": \"fan motor nominal efficiency\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533613,\n                \"value\": \"oil-injected\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533614,\n                \"value\": \"psig\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533615,\n                \"value\": \"rotary compressor: fixed speed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533616,\n                \"value\": \"hp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533617,\n                \"value\": \"drive motor nominal rating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533618,\n                \"value\": \"fan motor nominal rating (if applicable)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533619,\n                \"value\": \"85.5\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533620,\n                \"value\": \"drive motor nominal efficiency\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533621,\n                \"value\": \"pecker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533622,\n                \"value\": \"tm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533623,\n                \"value\": \"wood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533624,\n                \"value\": \"architecture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533625,\n                \"value\": \"building\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533626,\n                \"value\": \"housing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533627,\n                \"value\": \"house\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533628,\n                \"value\": \"roof\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533629,\n                \"value\": \"u\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533630,\n                \"value\": \"channel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533631,\n                \"value\": \"chart\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533632,\n                \"value\": \"plot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533633,\n                \"value\": \"weldable flange beyond the tabs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533634,\n                \"value\": \"edge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533635,\n                \"value\": \"throughwall scupper (center)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533636,\n                \"value\": \"scupper quote form\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533637,\n                \"value\": \"overflow scupper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533639,\n                \"value\": \"job date:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533640,\n                \"value\": \"choose options:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533641,\n                \"value\": \"job name:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533642,\n                \"value\": \"depth:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533643,\n                \"value\": \"indoors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533644,\n                \"value\": \"interior design\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533645,\n                \"value\": \"bathing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533646,\n                \"value\": \"bathtub\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533647,\n                \"value\": \"tub\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533648,\n                \"value\": \"sink\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533649,\n                \"value\": \"sink faucet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533650,\n                \"value\": \"shower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533651,\n                \"value\": \"creating perfect\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533652,\n                \"value\": \"spaces\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533653,\n                \"value\": \"brush\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533654,\n                \"value\": \"2\\\"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533655,\n                \"value\": \"50mm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533656,\n                \"value\": \"shortcut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533657,\n                \"value\": \"wooster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533658,\n                \"value\": \"toutes todas all les las paints peintures pinturas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533659,\n                \"value\": \"adds control\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533660,\n                \"value\": \"mango\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533661,\n                \"value\": \"pusher\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533662,\n                \"value\": \"lock\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533663,\n                \"value\": \"16s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533664,\n                \"value\": \"push\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533665,\n                \"value\": \"screen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533666,\n                \"value\": \"monitor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533667,\n                \"value\": \"p paslode\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533668,\n                \"value\": \"handgun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533670,\n                \"value\": \"appliance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533671,\n                \"value\": \"blow dryer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533674,\n                \"value\": \"straight nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533675,\n                \"value\": \"out\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533676,\n                \"value\": \"pa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533678,\n                \"value\": \"18s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533679,\n                \"value\": \"18 gaune finish nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533680,\n                \"value\": \"paslode\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533682,\n                \"value\": \"18 gauge finish nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533685,\n                \"value\": \"e-scooter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533686,\n                \"value\": \"rifle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533688,\n                \"value\": \"800-634-7373\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533689,\n                \"value\": \"paslode.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533690,\n                \"value\": \"year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533691,\n                \"value\": \"service\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533692,\n                \"value\": \"promise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533694,\n                \"value\": \"free\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533695,\n                \"value\": \"p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533696,\n                \"value\": \"cutlery\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533697,\n                \"value\": \"fork\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533698,\n                \"value\": \"plywood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533699,\n                \"value\": \"lumber\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533700,\n                \"value\": \"construction\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533701,\n                \"value\": \"pryda\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533702,\n                \"value\": \"refrigerator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533703,\n                \"value\": \"cricket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533704,\n                \"value\": \"cricket bat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533705,\n                \"value\": \"bracket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533709,\n                \"value\": \"cpa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533712,\n                \"value\": \"money\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533713,\n                \"value\": \"wallet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533714,\n                \"value\": \"eat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533715,\n                \"value\": \"tablecloth\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533716,\n                \"value\": \"image not included\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533717,\n                \"value\": \"freepik\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533718,\n                \"value\": \"bag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533719,\n                \"value\": \"handbag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533720,\n                \"value\": \"triminator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533721,\n                \"value\": \"mini dry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533722,\n                \"value\": \"washer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533723,\n                \"value\": \"heater\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533724,\n                \"value\": \"scoreboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533725,\n                \"value\": \"the safety you need.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533726,\n                \"value\": \"the power you expect.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533727,\n                \"value\": \"lighting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533728,\n                \"value\": \"coffee table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533729,\n                \"value\": \"painting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533730,\n                \"value\": \"table lamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533731,\n                \"value\": \"dining table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533732,\n                \"value\": \"tabletop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533733,\n                \"value\": \"tower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533734,\n                \"value\": \"water tower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533735,\n                \"value\": \"15-1/2\\\" (39. 5cm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533736,\n                \"value\": \"50 lbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533737,\n                \"value\": \"18\\\" (45. 7cm)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533738,\n                \"value\": \"75 lbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533739,\n                \"value\": \"plantoys\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533740,\n                \"value\": \"symbol\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533742,\n                \"value\": \"hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533743,\n                \"value\": \"cowboy hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533744,\n                \"value\": \"sun hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533746,\n                \"value\": \"belt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533747,\n                \"value\": \"rattle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533748,\n                \"value\": \"reel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533749,\n                \"value\": \"calibrated draft control\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533750,\n                \"value\": \"above\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533751,\n                \"value\": \"fieldcontrols\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533752,\n                \"value\": \"type \\\"rc\\\"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533753,\n                \"value\": \"the venting solutions company\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533754,\n                \"value\": \"24/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533756,\n                \"value\": \"led\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533758,\n                \"value\": \"winner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533759,\n                \"value\": \"plantoys balancing tree\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533760,\n                \"value\": \"good toy award 2017\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533761,\n                \"value\": \"good\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533762,\n                \"value\": \"desk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533763,\n                \"value\": \"home decor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533764,\n                \"value\": \"amana\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533765,\n                \"value\": \"carrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533766,\n                \"value\": \"stack\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533767,\n                \"value\": \"blowers oem replacements\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533768,\n                \"value\": \"automatic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533769,\n                \"value\": \"1/25 0.70 115 3450\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533770,\n                \"value\": \"type\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533771,\n                \"value\": \"aladdin steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533772,\n                \"value\": \"amps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533773,\n                \"value\": \"hertz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533774,\n                \"value\": \"cwle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533775,\n                \"value\": \"enclosure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533776,\n                \"value\": \"208-230\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533777,\n                \"value\": \"rotation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533779,\n                \"value\": \"speeds\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533780,\n                \"value\": \"rpm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533781,\n                \"value\": \"couch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533782,\n                \"value\": \"photocell receptacle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533783,\n                \"value\": \"and shorting cap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533784,\n                \"value\": \"hole\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533785,\n                \"value\": \"cond\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533786,\n                \"value\": \"lightsource\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533787,\n                \"value\": \"kitchen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533788,\n                \"value\": \"tap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533789,\n                \"value\": \"bread\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533790,\n                \"value\": \"bathroom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533791,\n                \"value\": \"room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533792,\n                \"value\": \"shower faucet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533793,\n                \"value\": \"domestic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533794,\n                \"value\": \"hatco\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533795,\n                \"value\": \"foodservice equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533796,\n                \"value\": \"february i, 2022\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533797,\n                \"value\": \"price list\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533798,\n                \"value\": \"drawer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533799,\n                \"value\": \"the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533800,\n                \"value\": \"multi contact grill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533801,\n                \"value\": \"mcg series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533802,\n                \"value\": \"parts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533803,\n                \"value\": \"model name\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533804,\n                \"value\": \"common parts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533805,\n                \"value\": \"caution\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533806,\n                \"value\": \"replacement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533807,\n                \"value\": \"replacement parts list\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533808,\n                \"value\": \"register online!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533809,\n                \"value\": \"s'inscrire en ligne!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533810,\n                \"value\": \"installation and operating manual\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533811,\n                \"value\": \"mcg series série mcg\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533812,\n                \"value\": \"grills multi-contact\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533813,\n                \"value\": \"advertencia\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533814,\n                \"value\": \"avertissement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533815,\n                \"value\": \"manuel d'installation et d'utilisation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533816,\n                \"value\": \"multi contact grills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533817,\n                \"value\": \"distribution over the entire\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533818,\n                \"value\": \"that gives you the flexibility to grill paninis, sandwiches\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533819,\n                \"value\": \"a new addition to our light cooking line of equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533820,\n                \"value\": \"quantity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533821,\n                \"value\": \"patented heating element pack provides exceptional heat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533822,\n                \"value\": \"standard features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533823,\n                \"value\": \"name a few, all on the same piece of equipment!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533824,\n                \"value\": \"project\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533825,\n                \"value\": \"item #\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533826,\n                \"value\": \"burger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533827,\n                \"value\": \"cooktop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533828,\n                \"value\": \"multi-contact grill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533829,\n                \"value\": \"bbq\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533830,\n                \"value\": \"cooking\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533831,\n                \"value\": \"grilling\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533832,\n                \"value\": \"to this warranty, the equipment must be registered on-line at www.hennypenny.com within ten (10)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533833,\n                \"value\": \"the original purchaser from an authorized distributor) only for henny penny equipment and replacement parts:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533834,\n                \"value\": \"this limited warranty will not be honored by henny penny unless the on-line\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533835,\n                \"value\": \"registration is completed within that time period.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533836,\n                \"value\": \"any part of 3 new equipment, except baskets, lamps, fuses, and door gaskets for combi ovens\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533837,\n                \"value\": \"subject to the following conditions, henny penny corporation makes the following limited warranties to the original purchase (or to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533838,\n                \"value\": \"limited warranty for henny penny equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533839,\n                \"value\": \"child\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533840,\n                \"value\": \"girl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533841,\n                \"value\": \"face\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533842,\n                \"value\": \"head\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533843,\n                \"value\": \"faster cook times, more flavor and nutrition\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533844,\n                \"value\": \"oil performs better, lasts longer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533845,\n                \"value\": \"operators around the world earn billions ever since.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533846,\n                \"value\": \"henny penny introduced commercial pressure frying\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533847,\n                \"value\": \"ago. and we've been helping restaurants and deli\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533848,\n                \"value\": \"pressure fryers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533849,\n                \"value\": \"frying under pressure-around 12 psi-enables faster cooking at lower oil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533850,\n                \"value\": \"temperatures than conventional openfrying. pressure frying also seals in the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533851,\n                \"value\": \"faster cooking, longer oil life, consistent taste and texture, load after load\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533852,\n                \"value\": \"to the foodservice industry more than 50 years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533853,\n                \"value\": \"fm05-011s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533854,\n                \"value\": \"model 500, 561 1 & 6 600\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533855,\n                \"value\": \"henny penny pressure fryers have\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533856,\n                \"value\": \"pfe 561 electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533857,\n                \"value\": \"pressure also seals in food's natural\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533858,\n                \"value\": \"henny penny first introduced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533859,\n                \"value\": \"perfect pressure seal every time.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533860,\n                \"value\": \"juices and reduces the amount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533861,\n                \"value\": \"separate pumps and pans, no\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533862,\n                \"value\": \"foodservice industry more than 50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533863,\n                \"value\": \"fountain\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533864,\n                \"value\": \"gas pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533865,\n                \"value\": \"pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533866,\n                \"value\": \"p.1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533867,\n                \"value\": \"assembly instructions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533868,\n                \"value\": \"armchair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533869,\n                \"value\": \"cushion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533870,\n                \"value\": \"size minus 1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533871,\n                \"value\": \"size plus 1-1/4 for 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533872,\n                \"value\": \"size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533873,\n                \"value\": \"listed size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533874,\n                \"value\": \"2-11/16 for 4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533875,\n                \"value\": \"size plus 1-1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533876,\n                \"value\": \"for 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533877,\n                \"value\": \"size plus 1-1/2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533878,\n                \"value\": \"2-5/8 for 2-1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533879,\n                \"value\": \"crib\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533880,\n                \"value\": \"infant bed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533881,\n                \"value\": \"grille\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533882,\n                \"value\": \"plan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533883,\n                \"value\": \"area\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533884,\n                \"value\": \"3-3/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533885,\n                \"value\": \"5-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533886,\n                \"value\": \"2-5/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533887,\n                \"value\": \"submittal drawing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533888,\n                \"value\": \"multi-angled fins are individually welded\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533889,\n                \"value\": \"15-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533890,\n                \"value\": \"13-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533891,\n                \"value\": \"knot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533892,\n                \"value\": \"3d filaments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533893,\n                \"value\": \"skilcraft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533894,\n                \"value\": \"make/model\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533895,\n                \"value\": \"premium and intuitive control interface for ease of use.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533896,\n                \"value\": \"comfortable operation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533897,\n                \"value\": \"platinum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533898,\n                \"value\": \"5-in-1 fiber optic stripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533899,\n                \"value\": \"adjustments are required\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533900,\n                \"value\": \"cushioned grip handles\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533901,\n                \"value\": \"scissors are designed to be versatile and economical without\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533902,\n                \"value\": \"pre-set design ensures all cavites are precision set and no\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533903,\n                \"value\": \"five cavity design allows for use with a multitude of fiber\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533904,\n                \"value\": \"fiber optic stripper and scissors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533905,\n                \"value\": \"strips\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533906,\n                \"value\": \"and stranded,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533907,\n                \"value\": \"comfort grip,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533908,\n                \"value\": \"wire strippers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533909,\n                \"value\": \"strip solid\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533910,\n                \"value\": \"expectations of professionals, the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533911,\n                \"value\": \"right handed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533912,\n                \"value\": \"use left or\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533913,\n                \"value\": \"new prostrip wire strippers deliver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533914,\n                \"value\": \"designed to meet the demanding\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533915,\n                \"value\": \"feel the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533916,\n                \"value\": \"replacing the blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533917,\n                \"value\": \"instruction sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533918,\n                \"value\": \"select\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533919,\n                \"value\": \"on the underside of the stripper, push down and forward on the cartridge (b) to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533921,\n                \"value\": \"p/n 15028\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533922,\n                \"value\": \"pro strip 25r\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533923,\n                \"value\": \"proper cable stripper location per\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533924,\n                \"value\": \"cartridge p/n 15029c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533925,\n                \"value\": \"sideboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533926,\n                \"value\": \"rug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533927,\n                \"value\": \"stainless steel rollers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533928,\n                \"value\": \"standard 1/4\\\" cable preparation eliminating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533929,\n                \"value\": \"coaxial cable stripper designed for the pro-\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533930,\n                \"value\": \"the need for tedious, time consuming blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533931,\n                \"value\": \"description\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533932,\n                \"value\": \"quick change blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533933,\n                \"value\": \"perfect for 25 awg\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533934,\n                \"value\": \"cartridges are factory pre -set for industry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533935,\n                \"value\": \"fax: 800.749.5784\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533936,\n                \"value\": \"over\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533937,\n                \"value\": \"in business\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533938,\n                \"value\": \"industries\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533939,\n                \"value\": \"we make connections ez!™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533940,\n                \"value\": \"years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533942,\n                \"value\": \"2 amp current interrupting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533943,\n                \"value\": \"2a/7.5a, 480vac or 130vdc max\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533944,\n                \"value\": \"meltric dsn12c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533946,\n                \"value\": \"multipin, ip66/67/69\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533947,\n                \"value\": \"7.5 amp non-current interrupting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533948,\n                \"value\": \"receptacle/connector\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533949,\n                \"value\": \"bed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533950,\n                \"value\": \"bed sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533951,\n                \"value\": \"blanket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533952,\n                \"value\": \"book\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533953,\n                \"value\": \"publication\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533954,\n                \"value\": \"oem replacements blowers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533955,\n                \"value\": \"venting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533956,\n                \"value\": \"contractor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533957,\n                \"value\": \"combustion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533958,\n                \"value\": \"improving indoor environments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533959,\n                \"value\": \"draft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533960,\n                \"value\": \"reference guide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533961,\n                \"value\": \"note: for burner inputs up to 2.0 gph at\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533962,\n                \"value\": \"installer supplied items:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533963,\n                \"value\": \"this product is designed for use on the following bumers, for the purpose of routing combustion air directly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533964,\n                \"value\": \"for routing oil line\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533965,\n                \"value\": \"1- flow restrictor pan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533966,\n                \"value\": \"duct piping and elbows\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533967,\n                \"value\": \"items included inkit:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533968,\n                \"value\": \"1-4\\\" vrv\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533969,\n                \"value\": \"combustion air system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533970,\n                \"value\": \"to the burner, with the added safety feature of the reliefvalve.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533971,\n                \"value\": \"conveyor toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533972,\n                \"value\": \"power saving thermostat for energy savings during non-peak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533973,\n                \"value\": \"the hatco toast king conveyorized toaster combines\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533974,\n                \"value\": \"serving times\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533975,\n                \"value\": \"performance to handle peak serving periods.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533976,\n                \"value\": \"toast storage area keeps bread warm and dry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533977,\n                \"value\": \"citrus fruit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533978,\n                \"value\": \"fruit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533979,\n                \"value\": \"produce\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533980,\n                \"value\": \"caution hot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533982,\n                \"value\": \"attention chaud\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533983,\n                \"value\": \"toast king® electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533984,\n                \"value\": \"bucket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533985,\n                \"value\": \"shaker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533986,\n                \"value\": \"business card\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533987,\n                \"value\": \"paper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533988,\n                \"value\": \"package use and static dehumidification\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533989,\n                \"value\": \"contents\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533990,\n                \"value\": \"chicago atlanta dallas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533991,\n                \"value\": \"los angeles minneapolis nyc/phila\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533993,\n                \"value\": \"uline\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533994,\n                \"value\": \"do not eat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533995,\n                \"value\": \"desiccant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533996,\n                \"value\": \"2 unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533997,\n                \"value\": \"contents 2 unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533998,\n                \"value\": \"tightly packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533999,\n                \"value\": \"oxygen absorber charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534000,\n                \"value\": \"get a quote today: 1-800-446-6650 customerservice@ desiccare.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534001,\n                \"value\": \"tightly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534002,\n                \"value\": \"ft-50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534003,\n                \"value\": \"loosely packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534004,\n                \"value\": \"packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534005,\n                \"value\": \"ft-30\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534006,\n                \"value\": \"ft-20\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534007,\n                \"value\": \"note for burner inputs up to 1.5 gph at 100 psi input pressure or equivalent.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534008,\n                \"value\": \"model: cas-2b-90e furnace boot™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534009,\n                \"value\": \"the furnace boot™ model cas-2b-90e is for use only on the designated burner(s) as described in these\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534010,\n                \"value\": \"instructions only when the specific bumer includes this fumace boot™ when shipped from the burner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534011,\n                \"value\": \"us\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534012,\n                \"value\": \"directly to the burner, with the added safety feature of the vacuum relief valve.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534013,\n                \"value\": \"furnace boot™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534014,\n                \"value\": \"this product is designed for use on the beckett afg burners for the purpose ofrouting combustion air\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534015,\n                \"value\": \"proximates\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534016,\n                \"value\": \"31.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534017,\n                \"value\": \"33.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534019,\n                \"value\": \"nutrient profile\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534020,\n                \"value\": \"ingredients\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534021,\n                \"value\": \"grass-fed beef dry dog food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534022,\n                \"value\": \"36.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534023,\n                \"value\": \"calories from\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534024,\n                \"value\": \"energy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534025,\n                \"value\": \"dog\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534026,\n                \"value\": \"mammal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534027,\n                \"value\": \"pet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534028,\n                \"value\": \"bowl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534029,\n                \"value\": \"suitable for all breeds.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534030,\n                \"value\": \"small kibble size,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534031,\n                \"value\": \"cup\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534032,\n                \"value\": \"at open farm® we believe that great nutrition is rooted in the integrity of our ingredients. our mission\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534033,\n                \"value\": \"produced in a way that respects animal welfare and the environment. by working exclusively with farmers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534034,\n                \"value\": \"fruits\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534035,\n                \"value\": \"natural superfoods\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534036,\n                \"value\": \"locally sourced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534037,\n                \"value\": \"who share our commitment to exceptional quality and sustainable practices, we can make better food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534039,\n                \"value\": \"grass-fed beef,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534040,\n                \"value\": \"our farm to bowl ingredients\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534041,\n                \"value\": \"for your pets, while also doing some good for family farms, farm animals and the environment.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534042,\n                \"value\": \"locally\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534043,\n                \"value\": \"ingredient back to the source.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534044,\n                \"value\": \"use the lot code to trace every\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534045,\n                \"value\": \"do some go\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534046,\n                \"value\": \"our farm to bowl ingredien\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534047,\n                \"value\": \"raised at pasture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534048,\n                \"value\": \"full ingredient transparency.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534049,\n                \"value\": \"fruits & vegetables\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534050,\n                \"value\": \"without antibiotics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534051,\n                \"value\": \"herbal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534052,\n                \"value\": \"herbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534053,\n                \"value\": \"100%\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534054,\n                \"value\": \"diet, free from antibiotics &\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534055,\n                \"value\": \"sourced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534056,\n                \"value\": \"humanely\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534057,\n                \"value\": \"farm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534058,\n                \"value\": \"beef raised on a grass-fed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534059,\n                \"value\": \"beef\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534060,\n                \"value\": \"grass-fed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534061,\n                \"value\": \"ethically sourced from farm to bowl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534062,\n                \"value\": \"waste stream to get started\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534063,\n                \"value\": \"2. search the open farm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534064,\n                \"value\": \"1. join at terracycle.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534065,\n                \"value\": \"brunch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534066,\n                \"value\": \"coffee\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534067,\n                \"value\": \"coffee cup\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534068,\n                \"value\": \"meal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534069,\n                \"value\": \"pizza\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534070,\n                \"value\": \"bra\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534071,\n                \"value\": \"super\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534072,\n                \"value\": \"flakes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534073,\n                \"value\": \"corn\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534074,\n                \"value\": \"alpha\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534075,\n                \"value\": \"ice\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534076,\n                \"value\": \"qua\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534077,\n                \"value\": \"toasties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534078,\n                \"value\": \"sugar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534079,\n                \"value\": \"toasted\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534080,\n                \"value\": \"toast-king®\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534081,\n                \"value\": \"use of replacement parts other than those supplied\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534082,\n                \"value\": \"important note:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534083,\n                \"value\": \"best in class\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534084,\n                \"value\": \"dealers, consultants\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534085,\n                \"value\": \"hot food holding equipment, also voted #1 by operators.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534086,\n                \"value\": \"voted #1 by\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534087,\n                \"value\": \"overall best in class by category\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534088,\n                \"value\": \"see the back for our overall best in class in the heavy equipment cate gory for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534089,\n                \"value\": \"hatco won overall bestin class in the light equipment category for conveyor toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534090,\n                \"value\": \"and operators\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534091,\n                \"value\": \"operator's unique foodservice needs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534092,\n                \"value\": \"designer warm red and designer black\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534093,\n                \"value\": \"to match your décor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534094,\n                \"value\": \"toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534095,\n                \"value\": \"the king of toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534096,\n                \"value\": \"production capabilities\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534097,\n                \"value\": \"toast and other bread products every\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534098,\n                \"value\": \"customized solutions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534099,\n                \"value\": \"fresh appearance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534100,\n                \"value\": \"benefits\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534101,\n                \"value\": \"features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534102,\n                \"value\": \"per hour\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534104,\n                \"value\": \"trh-60\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534105,\n                \"value\": \"multiple metal sheathed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534106,\n                \"value\": \"temperature\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534107,\n                \"value\": \"toasting ability\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534108,\n                \"value\": \"bottom heating elements, a multi-speed two-directional\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534109,\n                \"value\": \"there's only one #1 tm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534110,\n                \"value\": \"on the conveyor and activates the unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534111,\n                \"value\": \"ensure toast color uniformity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534112,\n                \"value\": \"footwear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534113,\n                \"value\": \"shoe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534114,\n                \"value\": \"sneaker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534115,\n                \"value\": \"mat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534116,\n                \"value\": \"vase\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534117,\n                \"value\": \"potted plant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534118,\n                \"value\": \"computer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534119,\n                \"value\": \"laptop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534120,\n                \"value\": \"pc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534121,\n                \"value\": \"dining room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534122,\n                \"value\": \"scale 1:1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534123,\n                \"value\": \"proudy designed and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534124,\n                \"value\": \"hot spot conference\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534125,\n                \"value\": \"l:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534126,\n                \"value\": \"video conferencing & teamwork strategies\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534127,\n                \"value\": \"telemeet moon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534128,\n                \"value\": \"telemeet kayak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534129,\n                \"value\": \"telemeet connect\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534130,\n                \"value\": \"cafeteria\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534131,\n                \"value\": \"restaurant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534132,\n                \"value\": \"diaper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534133,\n                \"value\": \"khaki\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534135,\n                \"value\": \"toothbrush\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534136,\n                \"value\": \"platinumtools.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534137,\n                \"value\": \"fla\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534138,\n                \"value\": \"mobile phone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534139,\n                \"value\": \"phone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534140,\n                \"value\": \"no pd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534141,\n                \"value\": \"simulate poe device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534142,\n                \"value\": \"poe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534143,\n                \"value\": \"tps200 poe++ tester\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534144,\n                \"value\": \"active\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534145,\n                \"value\": \"power in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534146,\n                \"value\": \"power out\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534147,\n                \"value\": \"off\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534148,\n                \"value\": \"dc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534149,\n                \"value\": \"on\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534150,\n                \"value\": \"first aid\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534151,\n                \"value\": \"net chaser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534153,\n                \"value\": \"calendar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534154,\n                \"value\": \"velcro ties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534155,\n                \"value\": \"color\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534156,\n                \"value\": \"v series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534157,\n                \"value\": \"v850\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534158,\n                \"value\": \"cable ties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534159,\n                \"value\": \"max saze\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534160,\n                \"value\": \"with\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534161,\n                \"value\": \"brightness\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534162,\n                \"value\": \"estimated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534163,\n                \"value\": \"energy cost\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534165,\n                \"value\": \"per year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534166,\n                \"value\": \"60w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534167,\n                \"value\": \"9w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534168,\n                \"value\": \"dimmable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534169,\n                \"value\": \"limitless options for the following applications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534170,\n                \"value\": \"led a-lamps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534171,\n                \"value\": \"enhances colors of focal point while\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534172,\n                \"value\": \"general lighting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534173,\n                \"value\": \"very low heat generation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534174,\n                \"value\": \"tcp.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534175,\n                \"value\": \"maintenance costs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534176,\n                \"value\": \"minimizes replacement and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534177,\n                \"value\": \"milk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534178,\n                \"value\": \"lightbulb\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534179,\n                \"value\": \"strap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534180,\n                \"value\": \"material specifications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534181,\n                \"value\": \"super anchor safety®\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534182,\n                \"value\": \"tie-off straps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534183,\n                \"value\": \"fig.2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534184,\n                \"value\": \"cinch method\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534185,\n                \"value\": \"version\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534186,\n                \"value\": \"d-ring\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534187,\n                \"value\": \"instruction/specification manual 02-2020\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534188,\n                \"value\": \"necklace\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534189,\n                \"value\": \"screw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534190,\n                \"value\": \"cross\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534191,\n                \"value\": \"lab coat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534192,\n                \"value\": \"lightweight protection for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534193,\n                \"value\": \"particulates in non-hazardous environments.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534194,\n                \"value\": \"workers against dirt and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534195,\n                \"value\": \"guard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534196,\n                \"value\": \"enviro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534197,\n                \"value\": \"available garments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534198,\n                \"value\": \"polypropylene\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534199,\n                \"value\": \"international\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534200,\n                \"value\": \"low-cost solution for protecting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534201,\n                \"value\": \"economical protection against dirt, grime and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534202,\n                \"value\": \"paint container\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534203,\n                \"value\": \"roll-on moisture barrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534204,\n                \"value\": \"to 100% rh and 14 ph\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534205,\n                \"value\": \"liquishield 100\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534206,\n                \"value\": \"on m isture barrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534207,\n                \"value\": \"traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534208,\n                \"value\": \"s moisture vapor emissions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534209,\n                \"value\": \"up to 100% rh and 14 ph\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534210,\n                \"value\": \"controls moisture vapor emissions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534211,\n                \"value\": \"by traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534212,\n                \"value\": \"nailing can be eliminated and tedous board replacement is made\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534213,\n                \"value\": \"then use the kool glide pro-w to activate the tape right through\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534214,\n                \"value\": \"now kool glide® technology for hard surfaces\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534215,\n                \"value\": \"green!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534216,\n                \"value\": \"kool glide to reactivate the adhesive and redo the job\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534217,\n                \"value\": \"the board. this system uses patented technology to remotely\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534218,\n                \"value\": \"no odor. no mess. no kidding.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534219,\n                \"value\": \"kool glide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534220,\n                \"value\": \"easy just put the board in place over the kool glide utility tape.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534221,\n                \"value\": \"the standard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534222,\n                \"value\": \"warranted to be free from defects in material or\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534223,\n                \"value\": \"warranty & exchange policy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534224,\n                \"value\": \"warranty:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534225,\n                \"value\": \"kool glide® tools may be sent to traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534226,\n                \"value\": \"workmanship for one year from date of purchase.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534227,\n                \"value\": \"for exchange. an rmf (return merchandise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534228,\n                \"value\": \"upon receipt of the tool, a factory reconditioned,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534229,\n                \"value\": \"form) may be obtained on-line at\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534230,\n                \"value\": \"an rmf must accompany all returns.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534231,\n                \"value\": \"fully-upgraded tool will be sent to you.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534232,\n                \"value\": \"lower internal operating temp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534233,\n                \"value\": \"no burning or damaging carpets\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534234,\n                \"value\": \"carpet seaming tool and system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534235,\n                \"value\": \"great for repairs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534236,\n                \"value\": \"simple, safe,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534237,\n                \"value\": \"heatless carpet seaming tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534238,\n                \"value\": \"seam tapes and accessories\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534239,\n                \"value\": \"no heat distortion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534240,\n                \"value\": \"seam tapes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534241,\n                \"value\": \"weaving\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534242,\n                \"value\": \"mxu-2132-9p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534243,\n                \"value\": \"mxu-2120-6p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534244,\n                \"value\": \"mxu-2132-6p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534245,\n                \"value\": \"virtually impervious to moisture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534246,\n                \"value\": \"resists swelling and delamination\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534247,\n                \"value\": \"engineered underlayment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534248,\n                \"value\": \"exterior grade glue lamination\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534249,\n                \"value\": \"part no.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534250,\n                \"value\": \"dimensionally accurate to 1/32 of an inch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534251,\n                \"value\": \"ensure the absence of hidden voids.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534252,\n                \"value\": \"meet or exceeds cr-104 and cr-105 standards\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534253,\n                \"value\": \"commercial\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534254,\n                \"value\": \"residential\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534255,\n                \"value\": \"light traffic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534256,\n                \"value\": \"application guidelines\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534257,\n                \"value\": \"duty\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534258,\n                \"value\": \"engineered carpet gripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534259,\n                \"value\": \"medium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534260,\n                \"value\": \"more pins per four feet of strip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534261,\n                \"value\": \"true size wood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534262,\n                \"value\": \"dynamite\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534263,\n                \"value\": \"maxximus® engineered carpet-gripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534264,\n                \"value\": \"air conditioner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534265,\n                \"value\": \"energy star\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534266,\n                \"value\": \"intelligence\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534267,\n                \"value\": \"boy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534268,\n                \"value\": \"un to 98.5% effic ient\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534269,\n                \"value\": \"savings without sacrificing.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534270,\n                \"value\": \"teen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534271,\n                \"value\": \"a carrier gas furnace\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534272,\n                \"value\": \"warm your home with\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534273,\n                \"value\": \"carrier offers real choices for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534274,\n                \"value\": \"efficient and reliable home comfort\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534275,\n                \"value\": \"turn to the experts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534276,\n                \"value\": \"rpc plate\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534277,\n                \"value\": \"rcc cartridge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534278,\n                \"value\": \"insert\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534279,\n                \"value\": \"rak arbor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534280,\n                \"value\": \"cn08\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534281,\n                \"value\": \"фd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534282,\n                \"value\": \"zmac-v unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534283,\n                \"value\": \"zmac-v cartridge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534284,\n                \"value\": \"insert 6mp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534285,\n                \"value\": \"l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534286,\n                \"value\": \"фс\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534287,\n                \"value\": \"insert 10mp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534288,\n                \"value\": \"rotor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534289,\n                \"value\": \"cat.no.9922\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534290,\n                \"value\": \"e\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534291,\n                \"value\": \"zmac-v emac dj rac вас\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534292,\n                \"value\": \"nikken\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534293,\n                \"value\": \"nikken boring system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534294,\n                \"value\": \"nikken kosakusho works, ltd.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534295,\n                \"value\": \"gold\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534296,\n                \"value\": \"nc total tooling system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534297,\n                \"value\": \"cat.no.303k\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534298,\n                \"value\": \"foam\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534299,\n                \"value\": \"brick\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534300,\n                \"value\": \"rubber eraser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534301,\n                \"value\": \"bench\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534302,\n                \"value\": \"chain saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534303,\n                \"value\": \"adjustable automatic chain oiler\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534304,\n                \"value\": \"interlocking safety trigger and hand guard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534305,\n                \"value\": \"power cutter hand saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534306,\n                \"value\": \"bucking cleat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534307,\n                \"value\": \"cut capacity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534308,\n                \"value\": \"radiance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534310,\n                \"value\": \"large assist handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534314,\n                \"value\": \"REMOVE\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534379,\n                \"value\": \"slim\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534380,\n                \"value\": \"spin-on oil separation system allows for the easiest and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534381,\n                \"value\": \"the industry's largest and deepest, full-length toolbox\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534382,\n                \"value\": \"blackboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534383,\n                \"value\": \"spf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534385,\n                \"value\": \"ning your new\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609500,\n                \"value\": \"ne\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609501,\n                \"value\": \"w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609502,\n                \"value\": \"w2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689428,\n                \"value\": \"select attributes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689429,\n                \"value\": \"accessory size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689430,\n                \"value\": \"arm height (from floor)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689431,\n                \"value\": \"update date\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689432,\n                \"value\": \"product completeness\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689433,\n                \"value\": \"name\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689434,\n                \"value\": \"save\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689435,\n                \"value\": \"action shot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10016148,\n                \"value\": \"snips\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10016157,\n                \"value\": \"sharp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10017834,\n                \"value\": \"steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10017860,\n                \"value\": \"shelf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10018768,\n                \"value\": \"carbide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10927405,\n                \"value\": \"shrink fit unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11165107,\n                \"value\": \"plastic grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193681,\n                \"value\": \"lasts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193682,\n                \"value\": \"world's\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193683,\n                \"value\": \"best\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193684,\n                \"value\": \"poop fighter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226132,\n                \"value\": \"measurements\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226133,\n                \"value\": \"xl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226134,\n                \"value\": \"2xl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226135,\n                \"value\": \"lakeland\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226136,\n                \"value\": \"disposable and chemical clothing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226137,\n                \"value\": \"sizing charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226138,\n                \"value\": \"lakeland.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226139,\n                \"value\": \"sizing charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226140,\n                \"value\": \"waist\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226141,\n                \"value\": \"turnout gear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226239,\n                \"value\": \"carbide steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11274260,\n                \"value\": \"lyon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11276406,\n                \"value\": \"chrome\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11321785,\n                \"value\": \"leaf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11327723,\n                \"value\": \"grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11586864,\n                \"value\": \"outdoor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11586865,\n                \"value\": \"new image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11816612,\n                \"value\": \"child proof\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11859672,\n                \"value\": \"esd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11882762,\n                \"value\": \"proto\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904595,\n                \"value\": \"be the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904596,\n                \"value\": \"1jn.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904597,\n                \"value\": \"god called\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960380,\n                \"value\": \"13.7 years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960381,\n                \"value\": \"warm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960382,\n                \"value\": \"life\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12167539,\n                \"value\": \"top mount handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12248206,\n                \"value\": \"extra light\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12320652,\n                \"value\": \"insulated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12340069,\n                \"value\": \"new tag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12383815,\n                \"value\": \"diy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405882,\n                \"value\": \"nst prime\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405883,\n                \"value\": \"poolife\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12476267,\n                \"value\": \"application shot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953135,\n                \"value\": \"brad nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953136,\n                \"value\": \"senco\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953175,\n                \"value\": \"pin nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953176,\n                \"value\": \"tn21l1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953177,\n                \"value\": \"finish pro 30xp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953178,\n                \"value\": \"23\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953179,\n                \"value\": \"neverlube oil free tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953180,\n                \"value\": \"f-18xp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953181,\n                \"value\": \"18v li-ion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953182,\n                \"value\": \"18 brad nails\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953455,\n                \"value\": \"crescent\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953456,\n                \"value\": \"axe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953457,\n                \"value\": \"rt410\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966519,\n                \"value\": \"Nail gun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966520,\n                \"value\": \"pneumatic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966526,\n                \"value\": \"red compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966527,\n                \"value\": \"industrial tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966528,\n                \"value\": \"garage equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966529,\n                \"value\": \"portable air pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966530,\n                \"value\": \"high-pressure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966531,\n                \"value\": \"pneumatic tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966532,\n                \"value\": \"workshop gear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966533,\n                \"value\": \"hand tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966534,\n                \"value\": \"grip tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966535,\n                \"value\": \"industrial pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966536,\n                \"value\": \"metalworking\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966537,\n                \"value\": \"red pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966538,\n                \"value\": \"cutting tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966539,\n                \"value\": \"hardware tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905665,\n                \"value\": \"pink lily\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905877,\n                \"value\": \"18.\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20780611,\n        \"name\": \"Grade\",\n        \"key\": \"grade\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1639604479044,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"def count_words(Object value) {\\n    return value.length() - value.replace(\\\" \\\", \\\"\\\").length()\\n}\\n\\ndef imageScore = ((product.main_image ? 1 : 0) + (product.image_2 ? 1 : 0) + (product.image_3 ? 1 : 0) + (product.lifestyle_image ? 1 : 0) + (product.side_image ? 1 : 0)) / 5\\ndef titleScore = product.name.length >= 60 && product.name.length <= 120\\ndef descriptionScore = count_words(product.long_description) >= 100 && count_words(product.long_description) <= 400 ? 1 : 0\\ndef bulletScore = (product.benefit_1 && product.benefit_2 && product.benefit_3) ? 1 : 0\\ndef tagScore = product.keyword_tags.length() >= 3 ? 1 : 0\\ndef categoryScore = product.category ? 1 : 0\\n\\ndef score = (imageScore + titleScore + descriptionScore + bulletScore + tagScore + categoryScore) / 6\\n\\ndef grade\\nif (score > 97) {\\n\\tgrade = 'A+'\\n} else if (score > 93) {\\n\\tgrade = 'A'\\n} else if (score > 90) {\\n\\tgrade = 'A-'\\n} else if (score > 80) {\\n\\tgrade = 'B'\\n} else if (score > 70) {\\n\\tgrade = 'C'\\n} else {\\n\\tgrade = 'D'\\n}\\ngrade\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"def count_words(Object value) {\\n    return value.length() - value.replace(\\\" \\\", \\\"\\\").length()\\n}\\n\\ndef imageScore = ((product.main_image ? 1 : 0) + (product.image_2 ? 1 : 0) + (product.image_3 ? 1 : 0) + (product.lifestyle_image ? 1 : 0) + (product.side_image ? 1 : 0)) / 5\\ndef titleScore = product.name.length >= 60 && product.name.length <= 120\\ndef descriptionScore = count_words(product.long_description) >= 100 && count_words(product.long_description) <= 400 ? 1 : 0\\ndef bulletScore = (product.benefit_1 && product.benefit_2 && product.benefit_3) ? 1 : 0\\ndef tagScore = product.keyword_tags.length() >= 3 ? 1 : 0\\ndef categoryScore = product.category ? 1 : 0\\n\\ndef score = (imageScore + titleScore + descriptionScore + bulletScore + tagScore + categoryScore) / 6\\n\\ndef grade\\nif (score > 97) {\\n\\tgrade = 'A+'\\n} else if (score > 93) {\\n\\tgrade = 'A'\\n} else if (score > 90) {\\n\\tgrade = 'A-'\\n} else if (score > 80) {\\n\\tgrade = 'B'\\n} else if (score > 70) {\\n\\tgrade = 'C'\\n} else {\\n\\tgrade = 'D'\\n}\\ngrade\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"keyword_tags\",\n                \"side_image\",\n                \"benefit_2\",\n                \"benefit_3\",\n                \"main_image\",\n                \"benefit_1\",\n                \"name\",\n                \"image_3\",\n                \"image_2\",\n                \"lifestyle_image\",\n                \"long_description\",\n                \"category\"\n            ]\n        },\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586312,\n        \"name\": \"Grainger Part Number\",\n        \"key\": \"grainger_part_number\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613746,\n        \"name\": \"Grip Length\",\n        \"key\": \"grip_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614004117861,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640251,\n        \"name\": \"Hand\",\n        \"key\": \"hand\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420135,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20822173,\n        \"name\": \"Handle\",\n        \"key\": \"handle\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1645652990241,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 91977,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 4911153,\n                \"value\": \"33 Series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4911152,\n                \"value\": \"35 Series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4911151,\n                \"value\": \"40 Series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4911150,\n                \"value\": \"42 Series\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20734469,\n        \"name\": \"Handle Length\",\n        \"key\": \"handle_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1632947955025,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20734467,\n        \"name\": \"Handle Material\",\n        \"key\": \"handle_material\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1632947954292,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925891,\n        \"name\": \"Hazardous\",\n        \"key\": \"hazardous\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659369746771,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 106576,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5608114,\n                \"value\": \"Yes\",\n                \"abbreviation\": \"\",\n                \"description\": \"Fill additional attributes.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5608113,\n                \"value\": \"No\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640295,\n        \"name\": \"Head Length\",\n        \"key\": \"head_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620224108010,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613778,\n        \"name\": \"Heat Capacity\",\n        \"key\": \"heat_capacity\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614017576058,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626053,\n        \"name\": \"Height\",\n        \"key\": \"height\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617148327492,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348726,\n        \"name\": \"Height 1 - Sales Unit\",\n        \"key\": \"height_1_sales_unit\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693080430,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693080430,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586319,\n        \"name\": \"Hero Image\",\n        \"key\": \"main_image\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1716641773830,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20934505,\n        \"name\": \"High Visibility\",\n        \"key\": \"high_visibility\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660482389614,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 107921,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5693013,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693012,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586313,\n        \"name\": \"Horse Power\",\n        \"key\": \"horse_power\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"Horse Power\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20661622,\n        \"name\": \"IIC\",\n        \"key\": \"iic\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622730160229,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20661624,\n        \"name\": \"IIC Approvals\",\n        \"key\": \"iic_approvals\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622730343876,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 71381,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 3599240,\n                \"value\": \"Small Footsteps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3599241,\n                \"value\": \"Heavy Equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3599242,\n                \"value\": \"Loud\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3599243,\n                \"value\": \"Super Sound Resistent\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3599244,\n                \"value\": \"Single guys partying\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20661630,\n        \"name\": \"IIC Multiple Approvals\",\n        \"key\": \"iic_multiple_approvals\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622730426899,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 71382,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 3599245,\n                \"value\": \"Small footsteps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3599246,\n                \"value\": \"heavy equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3599247,\n                \"value\": \"loud noise\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348729,\n        \"name\": \"Image 1- Product Shot\",\n        \"key\": \"image_1_product_shot\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693178995,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693178995,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348730,\n        \"name\": \"Image 2- Package Shot\",\n        \"key\": \"image_2_package_shot\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693179651,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693179651,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348731,\n        \"name\": \"Image 3- Get The Look\",\n        \"key\": \"image_3_get_the_look\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693180316,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693180316,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348732,\n        \"name\": \"Image 4- Color Temp\",\n        \"key\": \"image_4_color_temp\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693180952,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693180952,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348733,\n        \"name\": \"Image 5- Ideal For\",\n        \"key\": \"image_5_ideal_for\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693181595,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693181595,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348734,\n        \"name\": \"Image 6- Lighting Facts JPG\",\n        \"key\": \"image_6_lighting_facts_jpg\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693182428,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693182428,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348736,\n        \"name\": \"Image 7- Will it fit\",\n        \"key\": \"image_7_will_it_fit\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693183794,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693183794,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660328,\n        \"name\": \"Image Sensor\",\n        \"key\": \"image_sensor\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146087,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20841840,\n        \"name\": \"Image URL\",\n        \"key\": \"image_url\",\n        \"data_type\": \"URL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1647302476335,\n        \"create_user_name\": \"Alex Kam\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007204,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684361,\n        \"name\": \"Impact Rating\",\n        \"key\": \"impact_rating\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881355954,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508313,\n        \"name\": \"Impedence\",\n        \"key\": \"impedence\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742678750423,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742678750423,\n        \"picklist_id\": 214792,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823071,\n                \"value\": \"200 ohms\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823072,\n                \"value\": \"600 ohms\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823073,\n                \"value\": \"50 ohms\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586315,\n        \"name\": \"In Use\",\n        \"key\": \"image_3\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21321792,\n        \"name\": \"Ingredients\",\n        \"key\": \"ingredients\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1723663739470,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1723663739470,\n        \"picklist_id\": 192711,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11861117,\n                \"value\": \"Lead\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861118,\n                \"value\": \"Silica\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861119,\n                \"value\": \"Diesel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861120,\n                \"value\": \"Chalk\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626146,\n        \"name\": \"Inner Pack Height\",\n        \"key\": \"inner_pack_height\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617189745412,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626144,\n        \"name\": \"Inner Pack Length\",\n        \"key\": \"inner_pack_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617189745289,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626140,\n        \"name\": \"Inner Pack Weight\",\n        \"key\": \"inner_pack_weight\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617189745244,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626142,\n        \"name\": \"Inner Pack Width\",\n        \"key\": \"inner_pack_width\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617189745262,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20734475,\n        \"name\": \"Input Voltage\",\n        \"key\": \"input_voltage\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1632948805785,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640255,\n        \"name\": \"Insert Holding Method\",\n        \"key\": \"insert_holding_method\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420347,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640307,\n        \"name\": \"Insert Style\",\n        \"key\": \"insert_style\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620224135361,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20743098,\n        \"name\": \"Inside Diameter\",\n        \"key\": \"inside_diameter\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1635334958843,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925881,\n        \"name\": \"Installation Partners\",\n        \"key\": \"installation_partners\",\n        \"data_type\": \"PARTNER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659356753046,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508441,\n        \"name\": \"Installation Type\",\n        \"key\": \"installation_type\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742828184962,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742828184962,\n        \"picklist_id\": 214809,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823393,\n                \"value\": \"Wall Mount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823394,\n                \"value\": \"Flush Mount\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20957482,\n        \"name\": \"Interface\",\n        \"key\": \"interface\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1665586206186,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20735826,\n        \"name\": \"Jaw Capacity\",\n        \"key\": \"jaw_capacity\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1633441164442,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21502111,\n        \"name\": \"Jaw Type\",\n        \"key\": \"jaw_type\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Jarod Waters\",\n        \"create_date\": 1741880935600,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_date\": 1741880935600,\n        \"create_user_id\": 4018014823,\n        \"update_user_id\": 4018014823\n    },\n    {\n        \"id\": 20626039,\n        \"name\": \"Keyword Tags\",\n        \"key\": \"keyword_tags\",\n        \"data_type\": \"TAG\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617147193212,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57207,\n        \"picklist_type\": \"TAG\",\n        \"picklist_values\": [\n            {\n                \"id\": 2821359,\n                \"value\": \"Cactus\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821360,\n                \"value\": \"Flora\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821361,\n                \"value\": \"Plant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821362,\n                \"value\": \"Animal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821363,\n                \"value\": \"Green Snake\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821364,\n                \"value\": \"Machine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821365,\n                \"value\": \"Motor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821367,\n                \"value\": \"red plug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821368,\n                \"value\": \"red\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821370,\n                \"value\": \"green handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821371,\n                \"value\": \"gpi silver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821372,\n                \"value\": \"Clothes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821373,\n                \"value\": \"Women\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821374,\n                \"value\": \"Workout\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821375,\n                \"value\": \"Power Tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821376,\n                \"value\": \"Power Drills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821377,\n                \"value\": \"Drills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821378,\n                \"value\": \"Lithium-Ion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821379,\n                \"value\": \"Cordless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821380,\n                \"value\": \"Air Compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821381,\n                \"value\": \"Tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821382,\n                \"value\": \"Sofa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821383,\n                \"value\": \"chair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821384,\n                \"value\": \"Leather\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821385,\n                \"value\": \"Toys\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821386,\n                \"value\": \"Robot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821387,\n                \"value\": \"Spec Sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821388,\n                \"value\": \"Sell Sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821389,\n                \"value\": \"Lifestyle Image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821390,\n                \"value\": \"remote controlled\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821391,\n                \"value\": \"Sell s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821392,\n                \"value\": \"furniture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821393,\n                \"value\": \"highline\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821394,\n                \"value\": \"Clothing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821395,\n                \"value\": \"womens\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821396,\n                \"value\": \"shirt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821397,\n                \"value\": \"dryfit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821398,\n                \"value\": \"sphere air\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821399,\n                \"value\": \"saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821400,\n                \"value\": \"hand saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821401,\n                \"value\": \"Radiance Hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821402,\n                \"value\": \"tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821403,\n                \"value\": \"power saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821404,\n                \"value\": \"30 Gallon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821405,\n                \"value\": \"power toos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821406,\n                \"value\": \"drills'\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821407,\n                \"value\": \"power dirlls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821408,\n                \"value\": \"winter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821409,\n                \"value\": \"coat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821410,\n                \"value\": \"dragon fly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821411,\n                \"value\": \"winter'\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821412,\n                \"value\": \"Portable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821413,\n                \"value\": \"Electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821414,\n                \"value\": \"Main Image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3054167,\n                \"value\": \"bedroom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3169874,\n                \"value\": \"titanium blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3237211,\n                \"value\": \"3d\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3237212,\n                \"value\": \"metal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3672638,\n                \"value\": \"high speed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3757961,\n                \"value\": \"bulk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3758929,\n                \"value\": \"convection\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852408,\n                \"value\": \"yellow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852409,\n                \"value\": \"spe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852410,\n                \"value\": \"spec\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3911454,\n                \"value\": \"pins\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071803,\n                \"value\": \"DSN12c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071808,\n                \"value\": \"planter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071807,\n                \"value\": \"plants\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071810,\n                \"value\": \"succulents\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071806,\n                \"value\": \"cactus crazy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071812,\n                \"value\": \"table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071805,\n                \"value\": \"end table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071811,\n                \"value\": \"industrial but not like that\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071809,\n                \"value\": \"living room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071804,\n                \"value\": \"side table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4219039,\n                \"value\": \"oak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4256504,\n                \"value\": \"handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4278725,\n                \"value\": \"red handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4432327,\n                \"value\": \"full set\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4449860,\n                \"value\": \"boom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4634269,\n                \"value\": \"Barrington\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4853264,\n                \"value\": \"test\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4853265,\n                \"value\": \"tagged\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4867248,\n                \"value\": \"reciprocating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4867265,\n                \"value\": \"piston\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4875421,\n                \"value\": \"new\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4877884,\n                \"value\": \"movable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4882043,\n                \"value\": \"office chair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4924703,\n                \"value\": \"cast iron\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5089048,\n                \"value\": \"compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5092813,\n                \"value\": \"moss green\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5092895,\n                \"value\": \"chemical free\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5197572,\n                \"value\": \"comp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5343701,\n                \"value\": \"Paris\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5382816,\n                \"value\": \"close up\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5609955,\n                \"value\": \"hi viz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5610086,\n                \"value\": \"Draft Inducer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5610087,\n                \"value\": \"toaster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5712116,\n                \"value\": \"18v\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5723592,\n                \"value\": \"Cordless Drill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5723693,\n                \"value\": \"reddot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5726709,\n                \"value\": \"gas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5747253,\n                \"value\": \"green\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5751749,\n                \"value\": \"20V MAX\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5889989,\n                \"value\": \"rubber grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5912188,\n                \"value\": \"bluestone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6356417,\n                \"value\": \"top mount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6356469,\n                \"value\": \"black handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6357227,\n                \"value\": \"woodpecker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6358825,\n                \"value\": \"summer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6509063,\n                \"value\": \"in review\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6627932,\n                \"value\": \"yello\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6627952,\n                \"value\": \"industrial grade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6966601,\n                \"value\": \"rubber wheels\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7122548,\n                \"value\": \"jar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7122549,\n                \"value\": \"honey\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7262928,\n                \"value\": \"metal handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8103938,\n                \"value\": \"steel case\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8125847,\n                \"value\": \"sleveless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8131120,\n                \"value\": \"neon blue\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879677,\n                \"value\": \"art\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879678,\n                \"value\": \"porcelain\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879679,\n                \"value\": \"pottery\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879680,\n                \"value\": \"dessert\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879681,\n                \"value\": \"food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879682,\n                \"value\": \"yogurt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879683,\n                \"value\": \"dia:10.41 cm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879684,\n                \"value\": \"h:1.9 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879685,\n                \"value\": \"capacity:8.5 oz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879686,\n                \"value\": \"h:4.83 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879687,\n                \"value\": \"dia:4.13 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879688,\n                \"value\": \"grey\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117205,\n                \"value\": \"device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117206,\n                \"value\": \"pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117207,\n                \"value\": \"blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117208,\n                \"value\": \"razor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117209,\n                \"value\": \"weapon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117210,\n                \"value\": \"esd safe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117211,\n                \"value\": \"2838fcmp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117212,\n                \"value\": \"irwin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117213,\n                \"value\": \"blue\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117214,\n                \"value\": \"insulatoz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9147143,\n                \"value\": \"jacket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9249874,\n                \"value\": \"water pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9252174,\n                \"value\": \"power drill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9252176,\n                \"value\": \"ois\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9294508,\n                \"value\": \"black\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525070,\n                \"value\": \"adapter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525071,\n                \"value\": \"electronics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525072,\n                \"value\": \"plug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530850,\n                \"value\": \"ra27\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530851,\n                \"value\": \"ramset\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530852,\n                \"value\": \"electrical device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530853,\n                \"value\": \"microphone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530854,\n                \"value\": \"computer hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530855,\n                \"value\": \"hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530856,\n                \"value\": \"mouse\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530857,\n                \"value\": \"13 15 17 19\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530858,\n                \"value\": \"brushless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530859,\n                \"value\": \"dewalt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530860,\n                \"value\": \"13 15 17 19\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530862,\n                \"value\": \"t\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530863,\n                \"value\": \"fuel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530864,\n                \"value\": \"milwaukee\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530865,\n                \"value\": \"ryobi\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530866,\n                \"value\": \"lithium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530869,\n                \"value\": \"usa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530870,\n                \"value\": \"charger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530871,\n                \"value\": \"fast\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530872,\n                \"value\": \"2.5\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530873,\n                \"value\": \"135 psi\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530874,\n                \"value\": \"flexvolt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530875,\n                \"value\": \"grass\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530876,\n                \"value\": \"lawn\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530877,\n                \"value\": \"wheel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530878,\n                \"value\": \"toy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530879,\n                \"value\": \"aircraft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530880,\n                \"value\": \"airplane\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530881,\n                \"value\": \"transportation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530882,\n                \"value\": \"vehicle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530883,\n                \"value\": \"open\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530884,\n                \"value\": \"klein\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530885,\n                \"value\": \"dagger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530886,\n                \"value\": \"knife\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530887,\n                \"value\": \"glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530888,\n                \"value\": \"baseball\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530889,\n                \"value\": \"baseball glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530890,\n                \"value\": \"sport\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530891,\n                \"value\": \"cut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530892,\n                \"value\": \"pro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530893,\n                \"value\": \"scissors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530894,\n                \"value\": \"brown\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530895,\n                \"value\": \"16-377\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530896,\n                \"value\": \"g-tek\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530897,\n                \"value\": \"9/l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530898,\n                \"value\": \"polykor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530899,\n                \"value\": \"gut 4x42f\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530900,\n                \"value\": \"pen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530901,\n                \"value\": \"screwdriver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530902,\n                \"value\": \"klein tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530903,\n                \"value\": \"glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530904,\n                \"value\": \"baseball\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530905,\n                \"value\": \"baseball glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530906,\n                \"value\": \"sport\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530907,\n                \"value\": \"92793pum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530908,\n                \"value\": \"cut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530909,\n                \"value\": \"mcr safety\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530910,\n                \"value\": \"pro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530911,\n                \"value\": \"core\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530912,\n                \"value\": \"helix.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530916,\n                \"value\": \"wiha\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530918,\n                \"value\": \"screwdriver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530919,\n                \"value\": \"fatmax\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530920,\n                \"value\": \"camera\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530921,\n                \"value\": \"video camera\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530922,\n                \"value\": \"bosch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530923,\n                \"value\": \"gex33-6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530924,\n                \"value\": \"light\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530925,\n                \"value\": \"smoke pipe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530927,\n                \"value\": \"3m\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530928,\n                \"value\": \"we\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530929,\n                \"value\": \"hardhat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530930,\n                \"value\": \"helmet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530931,\n                \"value\": \"hardhat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530932,\n                \"value\": \"helmet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533406,\n                \"value\": \"drill/driver kit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533408,\n                \"value\": \"18v cordless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533409,\n                \"value\": \"page\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533410,\n                \"value\": \"text\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533411,\n                \"value\": \"file\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533412,\n                \"value\": \"accessories\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533413,\n                \"value\": \"document\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533414,\n                \"value\": \"invoice\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533415,\n                \"value\": \"jewelry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533416,\n                \"value\": \"gemstone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533417,\n                \"value\": \"contact configuration\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533418,\n                \"value\": \"meltric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533419,\n                \"value\": \"catalog\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533420,\n                \"value\": \"63-a4001\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533421,\n                \"value\": \"poly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533422,\n                \"value\": \"480 vac/1 30 vdc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533423,\n                \"value\": \"product color\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533424,\n                \"value\": \"dsn12c receptacle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533425,\n                \"value\": \"environmental rating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533426,\n                \"value\": \"specifications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533427,\n                \"value\": \"white\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533428,\n                \"value\": \"cad diagram\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533429,\n                \"value\": \"diagram\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533430,\n                \"value\": \"1.654\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533431,\n                \"value\": \"date\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533432,\n                \"value\": \"5.33\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533433,\n                \"value\": \"entry hole pattern\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533434,\n                \"value\": \"4.13\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533435,\n                \"value\": \"3.29\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533436,\n                \"value\": \"english\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533437,\n                \"value\": \"2.13\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533438,\n                \"value\": \"4.74\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533439,\n                \"value\": \"person\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533440,\n                \"value\": \"worker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533441,\n                \"value\": \"adult\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533442,\n                \"value\": \"female\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533443,\n                \"value\": \"woman\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533444,\n                \"value\": \"vest\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533445,\n                \"value\": \"lifejacket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533446,\n                \"value\": \"orange\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533447,\n                \"value\": \"lawn mower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533448,\n                \"value\": \"gun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533449,\n                \"value\": \"shears\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533450,\n                \"value\": \"bow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533451,\n                \"value\": \"tape\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533453,\n                \"value\": \"e50292\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533454,\n                \"value\": \"listed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533455,\n                \"value\": \"ul\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533457,\n                \"value\": \"lr\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533458,\n                \"value\": \"no.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533460,\n                \"value\": \"purple\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533461,\n                \"value\": \"pink\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533462,\n                \"value\": \"kitchen utensil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533463,\n                \"value\": \"tongs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533464,\n                \"value\": \"sword\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533467,\n                \"value\": \"coil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533468,\n                \"value\": \"spiral\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533469,\n                \"value\": \"wire\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533470,\n                \"value\": \"bottle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533471,\n                \"value\": \"cosmetics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533472,\n                \"value\": \"perfume\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533473,\n                \"value\": \"clamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533474,\n                \"value\": \"aluminium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533475,\n                \"value\": \"i\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533476,\n                \"value\": \"water\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533477,\n                \"value\": \"model vrv-4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533478,\n                \"value\": \"vacuum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533479,\n                \"value\": \"relief\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533480,\n                \"value\": \"valve\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533481,\n                \"value\": \"trowel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533482,\n                \"value\": \"mailbox\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533483,\n                \"value\": \"elite\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533484,\n                \"value\": \"star trowel made\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533486,\n                \"value\": \"five\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533487,\n                \"value\": \"quickest maintenance in the industry.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533488,\n                \"value\": \"key features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533489,\n                \"value\": \"silent air portable electric air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533490,\n                \"value\": \"legendary package design offers multiple option\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533491,\n                \"value\": \"fuel efficient doosan d24 engine extends run time to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533492,\n                \"value\": \"engine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533493,\n                \"value\": \"emissions tier level\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533494,\n                \"value\": \"provides over 8,700 cubic inches for tool and accessory\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533495,\n                \"value\": \"configurations to meet your specific needs.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533496,\n                \"value\": \"air compressor with truck mount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533497,\n                \"value\": \"car\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533498,\n                \"value\": \"number\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533499,\n                \"value\": \"industrial 80 gallon air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533500,\n                \"value\": \"horizontal portable twin tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533501,\n                \"value\": \"portable electric air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533502,\n                \"value\": \"number of\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533504,\n                \"value\": \"quiet flow steel tank air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533505,\n                \"value\": \"hook\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533506,\n                \"value\": \"doc's\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533507,\n                \"value\": \"cat 5e\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533508,\n                \"value\": \"cat 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533509,\n                \"value\": \"box\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533510,\n                \"value\": \"6a\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533511,\n                \"value\": \"ammunition\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533512,\n                \"value\": \"grenade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533513,\n                \"value\": \"cable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533514,\n                \"value\": \"wiring\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533515,\n                \"value\": \"truck mount compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533516,\n                \"value\": \"prevent\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533517,\n                \"value\": \"quick\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533518,\n                \"value\": \"discharge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533519,\n                \"value\": \"tank daily\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533520,\n                \"value\": \"regulator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533521,\n                \"value\": \"warning\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533522,\n                \"value\": \"coupler\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533523,\n                \"value\": \"pressure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533524,\n                \"value\": \"tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533525,\n                \"value\": \"danger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533526,\n                \"value\": \"motorcycle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533527,\n                \"value\": \"gx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533528,\n                \"value\": \"bicycle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533530,\n                \"value\": \"m\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533531,\n                \"value\": \"platinum series horizontal tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533533,\n                \"value\": \"armored\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533534,\n                \"value\": \"military\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533535,\n                \"value\": \"90l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533537,\n                \"value\": \"ompressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533538,\n                \"value\": \"male\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533539,\n                \"value\": \"man\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533540,\n                \"value\": \"pushing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533541,\n                \"value\": \"jeans\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533542,\n                \"value\": \"honda\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533543,\n                \"value\": \"missile\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533544,\n                \"value\": \"made in the usa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533545,\n                \"value\": \"controls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533546,\n                \"value\": \"jcm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533547,\n                \"value\": \"start\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533548,\n                \"value\": \"p/n umsr-50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533549,\n                \"value\": \"run\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533550,\n                \"value\": \"set posts without mixing!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533551,\n                \"value\": \"net wt. 50 lb (22.7 kg)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533552,\n                \"value\": \"to sain and eyes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533553,\n                \"value\": \"mezcla de concreto de fraguado rápido\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533554,\n                \"value\": \"quikrete\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533555,\n                \"value\": \"setting posts floors patios\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533556,\n                \"value\": \"no. 1004\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533557,\n                \"value\": \"fast-setting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533558,\n                \"value\": \"concrete mix\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533559,\n                \"value\": \"white board\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533560,\n                \"value\": \"t-shirt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533561,\n                \"value\": \"bib\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533562,\n                \"value\": \"cyan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533563,\n                \"value\": \"maruti\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533564,\n                \"value\": \"hot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533565,\n                \"value\": \"canine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533566,\n                \"value\": \"dragon prime\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533567,\n                \"value\": \"enterprise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533568,\n                \"value\": \"cobra+\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533569,\n                \"value\": \"firearm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533570,\n                \"value\": \"trigger activated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533571,\n                \"value\": \"professional grade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533572,\n                \"value\": \"agarre cómodo\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533573,\n                \"value\": \"calidad profesional\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533574,\n                \"value\": \"comfortable grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533575,\n                \"value\": \"activada por gatillo\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533576,\n                \"value\": \"reduces noise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533577,\n                \"value\": \"powder actuated tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533578,\n                \"value\": \"reduce el ruido\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533579,\n                \"value\": \"triggershot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533580,\n                \"value\": \"lamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533581,\n                \"value\": \"actuated tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533582,\n                \"value\": \"para sujeción al concreto,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533583,\n                \"value\": \"herramienta por pólvara\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533584,\n                \"value\": \"for fastening to concrete. masonry or steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533585,\n                \"value\": \"powder\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533586,\n                \"value\": \"oil-free air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533587,\n                \"value\": \"alcohol\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533588,\n                \"value\": \"beer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533589,\n                \"value\": \"beverage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533590,\n                \"value\": \"sphere\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533591,\n                \"value\": \"balloon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533592,\n                \"value\": \"advertisement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533593,\n                \"value\": \"poster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533594,\n                \"value\": \"salads\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533595,\n                \"value\": \"stacks\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533596,\n                \"value\": \"nachos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533597,\n                \"value\": \"drinks\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533598,\n                \"value\": \"bowls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533599,\n                \"value\": \"for a reason\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533600,\n                \"value\": \"tacos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533601,\n                \"value\": \"burritos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533602,\n                \"value\": \"our queso\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533603,\n                \"value\": \"make it a meal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533604,\n                \"value\": \"tin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533605,\n                \"value\": \"can\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533606,\n                \"value\": \"charcoal storage dispenser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533607,\n                \"value\": \"kingsford\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533609,\n                \"value\": \"heavy dutt handles\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533610,\n                \"value\": \"blouse\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533611,\n                \"value\": \"fan motor nominal efficiency\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533613,\n                \"value\": \"oil-injected\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533614,\n                \"value\": \"psig\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533615,\n                \"value\": \"rotary compressor: fixed speed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533616,\n                \"value\": \"hp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533617,\n                \"value\": \"drive motor nominal rating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533618,\n                \"value\": \"fan motor nominal rating (if applicable)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533619,\n                \"value\": \"85.5\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533620,\n                \"value\": \"drive motor nominal efficiency\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533621,\n                \"value\": \"pecker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533622,\n                \"value\": \"tm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533623,\n                \"value\": \"wood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533624,\n                \"value\": \"architecture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533625,\n                \"value\": \"building\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533626,\n                \"value\": \"housing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533627,\n                \"value\": \"house\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533628,\n                \"value\": \"roof\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533629,\n                \"value\": \"u\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533630,\n                \"value\": \"channel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533631,\n                \"value\": \"chart\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533632,\n                \"value\": \"plot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533633,\n                \"value\": \"weldable flange beyond the tabs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533634,\n                \"value\": \"edge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533635,\n                \"value\": \"throughwall scupper (center)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533636,\n                \"value\": \"scupper quote form\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533637,\n                \"value\": \"overflow scupper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533639,\n                \"value\": \"job date:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533640,\n                \"value\": \"choose options:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533641,\n                \"value\": \"job name:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533642,\n                \"value\": \"depth:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533643,\n                \"value\": \"indoors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533644,\n                \"value\": \"interior design\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533645,\n                \"value\": \"bathing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533646,\n                \"value\": \"bathtub\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533647,\n                \"value\": \"tub\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533648,\n                \"value\": \"sink\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533649,\n                \"value\": \"sink faucet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533650,\n                \"value\": \"shower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533651,\n                \"value\": \"creating perfect\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533652,\n                \"value\": \"spaces\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533653,\n                \"value\": \"brush\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533654,\n                \"value\": \"2\\\"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533655,\n                \"value\": \"50mm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533656,\n                \"value\": \"shortcut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533657,\n                \"value\": \"wooster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533658,\n                \"value\": \"toutes todas all les las paints peintures pinturas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533659,\n                \"value\": \"adds control\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533660,\n                \"value\": \"mango\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533661,\n                \"value\": \"pusher\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533662,\n                \"value\": \"lock\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533663,\n                \"value\": \"16s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533664,\n                \"value\": \"push\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533665,\n                \"value\": \"screen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533666,\n                \"value\": \"monitor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533667,\n                \"value\": \"p paslode\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533668,\n                \"value\": \"handgun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533670,\n                \"value\": \"appliance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533671,\n                \"value\": \"blow dryer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533674,\n                \"value\": \"straight nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533675,\n                \"value\": \"out\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533676,\n                \"value\": \"pa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533678,\n                \"value\": \"18s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533679,\n                \"value\": \"18 gaune finish nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533680,\n                \"value\": \"paslode\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533682,\n                \"value\": \"18 gauge finish nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533685,\n                \"value\": \"e-scooter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533686,\n                \"value\": \"rifle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533688,\n                \"value\": \"800-634-7373\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533689,\n                \"value\": \"paslode.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533690,\n                \"value\": \"year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533691,\n                \"value\": \"service\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533692,\n                \"value\": \"promise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533694,\n                \"value\": \"free\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533695,\n                \"value\": \"p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533696,\n                \"value\": \"cutlery\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533697,\n                \"value\": \"fork\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533698,\n                \"value\": \"plywood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533699,\n                \"value\": \"lumber\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533700,\n                \"value\": \"construction\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533701,\n                \"value\": \"pryda\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533702,\n                \"value\": \"refrigerator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533703,\n                \"value\": \"cricket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533704,\n                \"value\": \"cricket bat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533705,\n                \"value\": \"bracket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533709,\n                \"value\": \"cpa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533712,\n                \"value\": \"money\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533713,\n                \"value\": \"wallet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533714,\n                \"value\": \"eat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533715,\n                \"value\": \"tablecloth\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533716,\n                \"value\": \"image not included\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533717,\n                \"value\": \"freepik\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533718,\n                \"value\": \"bag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533719,\n                \"value\": \"handbag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533720,\n                \"value\": \"triminator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533721,\n                \"value\": \"mini dry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533722,\n                \"value\": \"washer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533723,\n                \"value\": \"heater\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533724,\n                \"value\": \"scoreboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533725,\n                \"value\": \"the safety you need.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533726,\n                \"value\": \"the power you expect.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533727,\n                \"value\": \"lighting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533728,\n                \"value\": \"coffee table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533729,\n                \"value\": \"painting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533730,\n                \"value\": \"table lamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533731,\n                \"value\": \"dining table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533732,\n                \"value\": \"tabletop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533733,\n                \"value\": \"tower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533734,\n                \"value\": \"water tower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533735,\n                \"value\": \"15-1/2\\\" (39. 5cm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533736,\n                \"value\": \"50 lbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533737,\n                \"value\": \"18\\\" (45. 7cm)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533738,\n                \"value\": \"75 lbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533739,\n                \"value\": \"plantoys\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533740,\n                \"value\": \"symbol\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533742,\n                \"value\": \"hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533743,\n                \"value\": \"cowboy hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533744,\n                \"value\": \"sun hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533746,\n                \"value\": \"belt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533747,\n                \"value\": \"rattle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533748,\n                \"value\": \"reel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533749,\n                \"value\": \"calibrated draft control\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533750,\n                \"value\": \"above\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533751,\n                \"value\": \"fieldcontrols\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533752,\n                \"value\": \"type \\\"rc\\\"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533753,\n                \"value\": \"the venting solutions company\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533754,\n                \"value\": \"24/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533756,\n                \"value\": \"led\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533758,\n                \"value\": \"winner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533759,\n                \"value\": \"plantoys balancing tree\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533760,\n                \"value\": \"good toy award 2017\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533761,\n                \"value\": \"good\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533762,\n                \"value\": \"desk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533763,\n                \"value\": \"home decor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533764,\n                \"value\": \"amana\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533765,\n                \"value\": \"carrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533766,\n                \"value\": \"stack\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533767,\n                \"value\": \"blowers oem replacements\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533768,\n                \"value\": \"automatic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533769,\n                \"value\": \"1/25 0.70 115 3450\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533770,\n                \"value\": \"type\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533771,\n                \"value\": \"aladdin steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533772,\n                \"value\": \"amps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533773,\n                \"value\": \"hertz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533774,\n                \"value\": \"cwle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533775,\n                \"value\": \"enclosure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533776,\n                \"value\": \"208-230\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533777,\n                \"value\": \"rotation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533779,\n                \"value\": \"speeds\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533780,\n                \"value\": \"rpm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533781,\n                \"value\": \"couch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533782,\n                \"value\": \"photocell receptacle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533783,\n                \"value\": \"and shorting cap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533784,\n                \"value\": \"hole\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533785,\n                \"value\": \"cond\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533786,\n                \"value\": \"lightsource\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533787,\n                \"value\": \"kitchen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533788,\n                \"value\": \"tap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533789,\n                \"value\": \"bread\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533790,\n                \"value\": \"bathroom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533791,\n                \"value\": \"room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533792,\n                \"value\": \"shower faucet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533793,\n                \"value\": \"domestic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533794,\n                \"value\": \"hatco\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533795,\n                \"value\": \"foodservice equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533796,\n                \"value\": \"february i, 2022\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533797,\n                \"value\": \"price list\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533798,\n                \"value\": \"drawer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533799,\n                \"value\": \"the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533800,\n                \"value\": \"multi contact grill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533801,\n                \"value\": \"mcg series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533802,\n                \"value\": \"parts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533803,\n                \"value\": \"model name\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533804,\n                \"value\": \"common parts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533805,\n                \"value\": \"caution\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533806,\n                \"value\": \"replacement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533807,\n                \"value\": \"replacement parts list\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533808,\n                \"value\": \"register online!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533809,\n                \"value\": \"s'inscrire en ligne!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533810,\n                \"value\": \"installation and operating manual\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533811,\n                \"value\": \"mcg series série mcg\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533812,\n                \"value\": \"grills multi-contact\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533813,\n                \"value\": \"advertencia\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533814,\n                \"value\": \"avertissement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533815,\n                \"value\": \"manuel d'installation et d'utilisation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533816,\n                \"value\": \"multi contact grills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533817,\n                \"value\": \"distribution over the entire\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533818,\n                \"value\": \"that gives you the flexibility to grill paninis, sandwiches\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533819,\n                \"value\": \"a new addition to our light cooking line of equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533820,\n                \"value\": \"quantity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533821,\n                \"value\": \"patented heating element pack provides exceptional heat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533822,\n                \"value\": \"standard features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533823,\n                \"value\": \"name a few, all on the same piece of equipment!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533824,\n                \"value\": \"project\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533825,\n                \"value\": \"item #\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533826,\n                \"value\": \"burger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533827,\n                \"value\": \"cooktop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533828,\n                \"value\": \"multi-contact grill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533829,\n                \"value\": \"bbq\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533830,\n                \"value\": \"cooking\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533831,\n                \"value\": \"grilling\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533832,\n                \"value\": \"to this warranty, the equipment must be registered on-line at www.hennypenny.com within ten (10)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533833,\n                \"value\": \"the original purchaser from an authorized distributor) only for henny penny equipment and replacement parts:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533834,\n                \"value\": \"this limited warranty will not be honored by henny penny unless the on-line\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533835,\n                \"value\": \"registration is completed within that time period.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533836,\n                \"value\": \"any part of 3 new equipment, except baskets, lamps, fuses, and door gaskets for combi ovens\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533837,\n                \"value\": \"subject to the following conditions, henny penny corporation makes the following limited warranties to the original purchase (or to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533838,\n                \"value\": \"limited warranty for henny penny equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533839,\n                \"value\": \"child\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533840,\n                \"value\": \"girl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533841,\n                \"value\": \"face\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533842,\n                \"value\": \"head\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533843,\n                \"value\": \"faster cook times, more flavor and nutrition\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533844,\n                \"value\": \"oil performs better, lasts longer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533845,\n                \"value\": \"operators around the world earn billions ever since.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533846,\n                \"value\": \"henny penny introduced commercial pressure frying\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533847,\n                \"value\": \"ago. and we've been helping restaurants and deli\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533848,\n                \"value\": \"pressure fryers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533849,\n                \"value\": \"frying under pressure-around 12 psi-enables faster cooking at lower oil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533850,\n                \"value\": \"temperatures than conventional openfrying. pressure frying also seals in the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533851,\n                \"value\": \"faster cooking, longer oil life, consistent taste and texture, load after load\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533852,\n                \"value\": \"to the foodservice industry more than 50 years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533853,\n                \"value\": \"fm05-011s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533854,\n                \"value\": \"model 500, 561 1 & 6 600\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533855,\n                \"value\": \"henny penny pressure fryers have\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533856,\n                \"value\": \"pfe 561 electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533857,\n                \"value\": \"pressure also seals in food's natural\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533858,\n                \"value\": \"henny penny first introduced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533859,\n                \"value\": \"perfect pressure seal every time.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533860,\n                \"value\": \"juices and reduces the amount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533861,\n                \"value\": \"separate pumps and pans, no\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533862,\n                \"value\": \"foodservice industry more than 50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533863,\n                \"value\": \"fountain\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533864,\n                \"value\": \"gas pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533865,\n                \"value\": \"pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533866,\n                \"value\": \"p.1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533867,\n                \"value\": \"assembly instructions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533868,\n                \"value\": \"armchair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533869,\n                \"value\": \"cushion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533870,\n                \"value\": \"size minus 1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533871,\n                \"value\": \"size plus 1-1/4 for 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533872,\n                \"value\": \"size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533873,\n                \"value\": \"listed size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533874,\n                \"value\": \"2-11/16 for 4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533875,\n                \"value\": \"size plus 1-1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533876,\n                \"value\": \"for 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533877,\n                \"value\": \"size plus 1-1/2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533878,\n                \"value\": \"2-5/8 for 2-1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533879,\n                \"value\": \"crib\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533880,\n                \"value\": \"infant bed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533881,\n                \"value\": \"grille\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533882,\n                \"value\": \"plan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533883,\n                \"value\": \"area\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533884,\n                \"value\": \"3-3/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533885,\n                \"value\": \"5-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533886,\n                \"value\": \"2-5/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533887,\n                \"value\": \"submittal drawing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533888,\n                \"value\": \"multi-angled fins are individually welded\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533889,\n                \"value\": \"15-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533890,\n                \"value\": \"13-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533891,\n                \"value\": \"knot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533892,\n                \"value\": \"3d filaments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533893,\n                \"value\": \"skilcraft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533894,\n                \"value\": \"make/model\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533895,\n                \"value\": \"premium and intuitive control interface for ease of use.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533896,\n                \"value\": \"comfortable operation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533897,\n                \"value\": \"platinum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533898,\n                \"value\": \"5-in-1 fiber optic stripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533899,\n                \"value\": \"adjustments are required\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533900,\n                \"value\": \"cushioned grip handles\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533901,\n                \"value\": \"scissors are designed to be versatile and economical without\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533902,\n                \"value\": \"pre-set design ensures all cavites are precision set and no\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533903,\n                \"value\": \"five cavity design allows for use with a multitude of fiber\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533904,\n                \"value\": \"fiber optic stripper and scissors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533905,\n                \"value\": \"strips\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533906,\n                \"value\": \"and stranded,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533907,\n                \"value\": \"comfort grip,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533908,\n                \"value\": \"wire strippers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533909,\n                \"value\": \"strip solid\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533910,\n                \"value\": \"expectations of professionals, the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533911,\n                \"value\": \"right handed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533912,\n                \"value\": \"use left or\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533913,\n                \"value\": \"new prostrip wire strippers deliver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533914,\n                \"value\": \"designed to meet the demanding\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533915,\n                \"value\": \"feel the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533916,\n                \"value\": \"replacing the blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533917,\n                \"value\": \"instruction sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533918,\n                \"value\": \"select\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533919,\n                \"value\": \"on the underside of the stripper, push down and forward on the cartridge (b) to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533921,\n                \"value\": \"p/n 15028\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533922,\n                \"value\": \"pro strip 25r\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533923,\n                \"value\": \"proper cable stripper location per\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533924,\n                \"value\": \"cartridge p/n 15029c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533925,\n                \"value\": \"sideboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533926,\n                \"value\": \"rug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533927,\n                \"value\": \"stainless steel rollers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533928,\n                \"value\": \"standard 1/4\\\" cable preparation eliminating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533929,\n                \"value\": \"coaxial cable stripper designed for the pro-\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533930,\n                \"value\": \"the need for tedious, time consuming blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533931,\n                \"value\": \"description\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533932,\n                \"value\": \"quick change blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533933,\n                \"value\": \"perfect for 25 awg\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533934,\n                \"value\": \"cartridges are factory pre -set for industry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533935,\n                \"value\": \"fax: 800.749.5784\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533936,\n                \"value\": \"over\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533937,\n                \"value\": \"in business\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533938,\n                \"value\": \"industries\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533939,\n                \"value\": \"we make connections ez!™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533940,\n                \"value\": \"years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533942,\n                \"value\": \"2 amp current interrupting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533943,\n                \"value\": \"2a/7.5a, 480vac or 130vdc max\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533944,\n                \"value\": \"meltric dsn12c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533946,\n                \"value\": \"multipin, ip66/67/69\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533947,\n                \"value\": \"7.5 amp non-current interrupting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533948,\n                \"value\": \"receptacle/connector\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533949,\n                \"value\": \"bed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533950,\n                \"value\": \"bed sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533951,\n                \"value\": \"blanket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533952,\n                \"value\": \"book\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533953,\n                \"value\": \"publication\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533954,\n                \"value\": \"oem replacements blowers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533955,\n                \"value\": \"venting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533956,\n                \"value\": \"contractor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533957,\n                \"value\": \"combustion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533958,\n                \"value\": \"improving indoor environments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533959,\n                \"value\": \"draft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533960,\n                \"value\": \"reference guide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533961,\n                \"value\": \"note: for burner inputs up to 2.0 gph at\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533962,\n                \"value\": \"installer supplied items:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533963,\n                \"value\": \"this product is designed for use on the following bumers, for the purpose of routing combustion air directly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533964,\n                \"value\": \"for routing oil line\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533965,\n                \"value\": \"1- flow restrictor pan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533966,\n                \"value\": \"duct piping and elbows\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533967,\n                \"value\": \"items included inkit:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533968,\n                \"value\": \"1-4\\\" vrv\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533969,\n                \"value\": \"combustion air system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533970,\n                \"value\": \"to the burner, with the added safety feature of the reliefvalve.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533971,\n                \"value\": \"conveyor toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533972,\n                \"value\": \"power saving thermostat for energy savings during non-peak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533973,\n                \"value\": \"the hatco toast king conveyorized toaster combines\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533974,\n                \"value\": \"serving times\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533975,\n                \"value\": \"performance to handle peak serving periods.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533976,\n                \"value\": \"toast storage area keeps bread warm and dry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533977,\n                \"value\": \"citrus fruit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533978,\n                \"value\": \"fruit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533979,\n                \"value\": \"produce\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533980,\n                \"value\": \"caution hot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533982,\n                \"value\": \"attention chaud\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533983,\n                \"value\": \"toast king® electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533984,\n                \"value\": \"bucket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533985,\n                \"value\": \"shaker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533986,\n                \"value\": \"business card\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533987,\n                \"value\": \"paper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533988,\n                \"value\": \"package use and static dehumidification\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533989,\n                \"value\": \"contents\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533990,\n                \"value\": \"chicago atlanta dallas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533991,\n                \"value\": \"los angeles minneapolis nyc/phila\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533993,\n                \"value\": \"uline\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533994,\n                \"value\": \"do not eat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533995,\n                \"value\": \"desiccant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533996,\n                \"value\": \"2 unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533997,\n                \"value\": \"contents 2 unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533998,\n                \"value\": \"tightly packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533999,\n                \"value\": \"oxygen absorber charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534000,\n                \"value\": \"get a quote today: 1-800-446-6650 customerservice@ desiccare.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534001,\n                \"value\": \"tightly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534002,\n                \"value\": \"ft-50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534003,\n                \"value\": \"loosely packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534004,\n                \"value\": \"packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534005,\n                \"value\": \"ft-30\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534006,\n                \"value\": \"ft-20\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534007,\n                \"value\": \"note for burner inputs up to 1.5 gph at 100 psi input pressure or equivalent.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534008,\n                \"value\": \"model: cas-2b-90e furnace boot™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534009,\n                \"value\": \"the furnace boot™ model cas-2b-90e is for use only on the designated burner(s) as described in these\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534010,\n                \"value\": \"instructions only when the specific bumer includes this fumace boot™ when shipped from the burner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534011,\n                \"value\": \"us\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534012,\n                \"value\": \"directly to the burner, with the added safety feature of the vacuum relief valve.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534013,\n                \"value\": \"furnace boot™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534014,\n                \"value\": \"this product is designed for use on the beckett afg burners for the purpose ofrouting combustion air\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534015,\n                \"value\": \"proximates\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534016,\n                \"value\": \"31.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534017,\n                \"value\": \"33.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534019,\n                \"value\": \"nutrient profile\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534020,\n                \"value\": \"ingredients\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534021,\n                \"value\": \"grass-fed beef dry dog food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534022,\n                \"value\": \"36.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534023,\n                \"value\": \"calories from\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534024,\n                \"value\": \"energy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534025,\n                \"value\": \"dog\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534026,\n                \"value\": \"mammal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534027,\n                \"value\": \"pet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534028,\n                \"value\": \"bowl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534029,\n                \"value\": \"suitable for all breeds.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534030,\n                \"value\": \"small kibble size,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534031,\n                \"value\": \"cup\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534032,\n                \"value\": \"at open farm® we believe that great nutrition is rooted in the integrity of our ingredients. our mission\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534033,\n                \"value\": \"produced in a way that respects animal welfare and the environment. by working exclusively with farmers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534034,\n                \"value\": \"fruits\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534035,\n                \"value\": \"natural superfoods\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534036,\n                \"value\": \"locally sourced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534037,\n                \"value\": \"who share our commitment to exceptional quality and sustainable practices, we can make better food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534039,\n                \"value\": \"grass-fed beef,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534040,\n                \"value\": \"our farm to bowl ingredients\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534041,\n                \"value\": \"for your pets, while also doing some good for family farms, farm animals and the environment.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534042,\n                \"value\": \"locally\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534043,\n                \"value\": \"ingredient back to the source.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534044,\n                \"value\": \"use the lot code to trace every\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534045,\n                \"value\": \"do some go\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534046,\n                \"value\": \"our farm to bowl ingredien\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534047,\n                \"value\": \"raised at pasture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534048,\n                \"value\": \"full ingredient transparency.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534049,\n                \"value\": \"fruits & vegetables\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534050,\n                \"value\": \"without antibiotics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534051,\n                \"value\": \"herbal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534052,\n                \"value\": \"herbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534053,\n                \"value\": \"100%\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534054,\n                \"value\": \"diet, free from antibiotics &\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534055,\n                \"value\": \"sourced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534056,\n                \"value\": \"humanely\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534057,\n                \"value\": \"farm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534058,\n                \"value\": \"beef raised on a grass-fed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534059,\n                \"value\": \"beef\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534060,\n                \"value\": \"grass-fed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534061,\n                \"value\": \"ethically sourced from farm to bowl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534062,\n                \"value\": \"waste stream to get started\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534063,\n                \"value\": \"2. search the open farm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534064,\n                \"value\": \"1. join at terracycle.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534065,\n                \"value\": \"brunch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534066,\n                \"value\": \"coffee\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534067,\n                \"value\": \"coffee cup\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534068,\n                \"value\": \"meal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534069,\n                \"value\": \"pizza\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534070,\n                \"value\": \"bra\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534071,\n                \"value\": \"super\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534072,\n                \"value\": \"flakes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534073,\n                \"value\": \"corn\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534074,\n                \"value\": \"alpha\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534075,\n                \"value\": \"ice\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534076,\n                \"value\": \"qua\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534077,\n                \"value\": \"toasties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534078,\n                \"value\": \"sugar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534079,\n                \"value\": \"toasted\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534080,\n                \"value\": \"toast-king®\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534081,\n                \"value\": \"use of replacement parts other than those supplied\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534082,\n                \"value\": \"important note:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534083,\n                \"value\": \"best in class\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534084,\n                \"value\": \"dealers, consultants\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534085,\n                \"value\": \"hot food holding equipment, also voted #1 by operators.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534086,\n                \"value\": \"voted #1 by\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534087,\n                \"value\": \"overall best in class by category\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534088,\n                \"value\": \"see the back for our overall best in class in the heavy equipment cate gory for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534089,\n                \"value\": \"hatco won overall bestin class in the light equipment category for conveyor toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534090,\n                \"value\": \"and operators\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534091,\n                \"value\": \"operator's unique foodservice needs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534092,\n                \"value\": \"designer warm red and designer black\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534093,\n                \"value\": \"to match your décor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534094,\n                \"value\": \"toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534095,\n                \"value\": \"the king of toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534096,\n                \"value\": \"production capabilities\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534097,\n                \"value\": \"toast and other bread products every\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534098,\n                \"value\": \"customized solutions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534099,\n                \"value\": \"fresh appearance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534100,\n                \"value\": \"benefits\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534101,\n                \"value\": \"features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534102,\n                \"value\": \"per hour\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534104,\n                \"value\": \"trh-60\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534105,\n                \"value\": \"multiple metal sheathed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534106,\n                \"value\": \"temperature\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534107,\n                \"value\": \"toasting ability\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534108,\n                \"value\": \"bottom heating elements, a multi-speed two-directional\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534109,\n                \"value\": \"there's only one #1 tm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534110,\n                \"value\": \"on the conveyor and activates the unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534111,\n                \"value\": \"ensure toast color uniformity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534112,\n                \"value\": \"footwear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534113,\n                \"value\": \"shoe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534114,\n                \"value\": \"sneaker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534115,\n                \"value\": \"mat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534116,\n                \"value\": \"vase\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534117,\n                \"value\": \"potted plant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534118,\n                \"value\": \"computer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534119,\n                \"value\": \"laptop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534120,\n                \"value\": \"pc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534121,\n                \"value\": \"dining room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534122,\n                \"value\": \"scale 1:1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534123,\n                \"value\": \"proudy designed and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534124,\n                \"value\": \"hot spot conference\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534125,\n                \"value\": \"l:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534126,\n                \"value\": \"video conferencing & teamwork strategies\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534127,\n                \"value\": \"telemeet moon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534128,\n                \"value\": \"telemeet kayak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534129,\n                \"value\": \"telemeet connect\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534130,\n                \"value\": \"cafeteria\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534131,\n                \"value\": \"restaurant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534132,\n                \"value\": \"diaper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534133,\n                \"value\": \"khaki\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534135,\n                \"value\": \"toothbrush\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534136,\n                \"value\": \"platinumtools.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534137,\n                \"value\": \"fla\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534138,\n                \"value\": \"mobile phone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534139,\n                \"value\": \"phone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534140,\n                \"value\": \"no pd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534141,\n                \"value\": \"simulate poe device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534142,\n                \"value\": \"poe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534143,\n                \"value\": \"tps200 poe++ tester\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534144,\n                \"value\": \"active\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534145,\n                \"value\": \"power in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534146,\n                \"value\": \"power out\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534147,\n                \"value\": \"off\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534148,\n                \"value\": \"dc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534149,\n                \"value\": \"on\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534150,\n                \"value\": \"first aid\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534151,\n                \"value\": \"net chaser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534153,\n                \"value\": \"calendar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534154,\n                \"value\": \"velcro ties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534155,\n                \"value\": \"color\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534156,\n                \"value\": \"v series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534157,\n                \"value\": \"v850\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534158,\n                \"value\": \"cable ties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534159,\n                \"value\": \"max saze\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534160,\n                \"value\": \"with\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534161,\n                \"value\": \"brightness\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534162,\n                \"value\": \"estimated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534163,\n                \"value\": \"energy cost\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534165,\n                \"value\": \"per year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534166,\n                \"value\": \"60w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534167,\n                \"value\": \"9w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534168,\n                \"value\": \"dimmable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534169,\n                \"value\": \"limitless options for the following applications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534170,\n                \"value\": \"led a-lamps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534171,\n                \"value\": \"enhances colors of focal point while\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534172,\n                \"value\": \"general lighting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534173,\n                \"value\": \"very low heat generation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534174,\n                \"value\": \"tcp.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534175,\n                \"value\": \"maintenance costs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534176,\n                \"value\": \"minimizes replacement and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534177,\n                \"value\": \"milk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534178,\n                \"value\": \"lightbulb\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534179,\n                \"value\": \"strap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534180,\n                \"value\": \"material specifications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534181,\n                \"value\": \"super anchor safety®\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534182,\n                \"value\": \"tie-off straps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534183,\n                \"value\": \"fig.2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534184,\n                \"value\": \"cinch method\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534185,\n                \"value\": \"version\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534186,\n                \"value\": \"d-ring\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534187,\n                \"value\": \"instruction/specification manual 02-2020\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534188,\n                \"value\": \"necklace\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534189,\n                \"value\": \"screw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534190,\n                \"value\": \"cross\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534191,\n                \"value\": \"lab coat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534192,\n                \"value\": \"lightweight protection for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534193,\n                \"value\": \"particulates in non-hazardous environments.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534194,\n                \"value\": \"workers against dirt and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534195,\n                \"value\": \"guard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534196,\n                \"value\": \"enviro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534197,\n                \"value\": \"available garments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534198,\n                \"value\": \"polypropylene\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534199,\n                \"value\": \"international\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534200,\n                \"value\": \"low-cost solution for protecting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534201,\n                \"value\": \"economical protection against dirt, grime and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534202,\n                \"value\": \"paint container\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534203,\n                \"value\": \"roll-on moisture barrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534204,\n                \"value\": \"to 100% rh and 14 ph\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534205,\n                \"value\": \"liquishield 100\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534206,\n                \"value\": \"on m isture barrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534207,\n                \"value\": \"traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534208,\n                \"value\": \"s moisture vapor emissions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534209,\n                \"value\": \"up to 100% rh and 14 ph\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534210,\n                \"value\": \"controls moisture vapor emissions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534211,\n                \"value\": \"by traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534212,\n                \"value\": \"nailing can be eliminated and tedous board replacement is made\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534213,\n                \"value\": \"then use the kool glide pro-w to activate the tape right through\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534214,\n                \"value\": \"now kool glide® technology for hard surfaces\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534215,\n                \"value\": \"green!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534216,\n                \"value\": \"kool glide to reactivate the adhesive and redo the job\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534217,\n                \"value\": \"the board. this system uses patented technology to remotely\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534218,\n                \"value\": \"no odor. no mess. no kidding.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534219,\n                \"value\": \"kool glide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534220,\n                \"value\": \"easy just put the board in place over the kool glide utility tape.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534221,\n                \"value\": \"the standard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534222,\n                \"value\": \"warranted to be free from defects in material or\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534223,\n                \"value\": \"warranty & exchange policy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534224,\n                \"value\": \"warranty:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534225,\n                \"value\": \"kool glide® tools may be sent to traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534226,\n                \"value\": \"workmanship for one year from date of purchase.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534227,\n                \"value\": \"for exchange. an rmf (return merchandise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534228,\n                \"value\": \"upon receipt of the tool, a factory reconditioned,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534229,\n                \"value\": \"form) may be obtained on-line at\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534230,\n                \"value\": \"an rmf must accompany all returns.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534231,\n                \"value\": \"fully-upgraded tool will be sent to you.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534232,\n                \"value\": \"lower internal operating temp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534233,\n                \"value\": \"no burning or damaging carpets\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534234,\n                \"value\": \"carpet seaming tool and system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534235,\n                \"value\": \"great for repairs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534236,\n                \"value\": \"simple, safe,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534237,\n                \"value\": \"heatless carpet seaming tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534238,\n                \"value\": \"seam tapes and accessories\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534239,\n                \"value\": \"no heat distortion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534240,\n                \"value\": \"seam tapes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534241,\n                \"value\": \"weaving\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534242,\n                \"value\": \"mxu-2132-9p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534243,\n                \"value\": \"mxu-2120-6p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534244,\n                \"value\": \"mxu-2132-6p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534245,\n                \"value\": \"virtually impervious to moisture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534246,\n                \"value\": \"resists swelling and delamination\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534247,\n                \"value\": \"engineered underlayment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534248,\n                \"value\": \"exterior grade glue lamination\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534249,\n                \"value\": \"part no.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534250,\n                \"value\": \"dimensionally accurate to 1/32 of an inch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534251,\n                \"value\": \"ensure the absence of hidden voids.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534252,\n                \"value\": \"meet or exceeds cr-104 and cr-105 standards\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534253,\n                \"value\": \"commercial\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534254,\n                \"value\": \"residential\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534255,\n                \"value\": \"light traffic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534256,\n                \"value\": \"application guidelines\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534257,\n                \"value\": \"duty\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534258,\n                \"value\": \"engineered carpet gripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534259,\n                \"value\": \"medium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534260,\n                \"value\": \"more pins per four feet of strip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534261,\n                \"value\": \"true size wood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534262,\n                \"value\": \"dynamite\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534263,\n                \"value\": \"maxximus® engineered carpet-gripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534264,\n                \"value\": \"air conditioner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534265,\n                \"value\": \"energy star\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534266,\n                \"value\": \"intelligence\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534267,\n                \"value\": \"boy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534268,\n                \"value\": \"un to 98.5% effic ient\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534269,\n                \"value\": \"savings without sacrificing.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534270,\n                \"value\": \"teen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534271,\n                \"value\": \"a carrier gas furnace\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534272,\n                \"value\": \"warm your home with\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534273,\n                \"value\": \"carrier offers real choices for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534274,\n                \"value\": \"efficient and reliable home comfort\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534275,\n                \"value\": \"turn to the experts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534276,\n                \"value\": \"rpc plate\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534277,\n                \"value\": \"rcc cartridge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534278,\n                \"value\": \"insert\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534279,\n                \"value\": \"rak arbor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534280,\n                \"value\": \"cn08\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534281,\n                \"value\": \"фd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534282,\n                \"value\": \"zmac-v unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534283,\n                \"value\": \"zmac-v cartridge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534284,\n                \"value\": \"insert 6mp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534285,\n                \"value\": \"l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534286,\n                \"value\": \"фс\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534287,\n                \"value\": \"insert 10mp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534288,\n                \"value\": \"rotor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534289,\n                \"value\": \"cat.no.9922\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534290,\n                \"value\": \"e\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534291,\n                \"value\": \"zmac-v emac dj rac вас\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534292,\n                \"value\": \"nikken\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534293,\n                \"value\": \"nikken boring system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534294,\n                \"value\": \"nikken kosakusho works, ltd.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534295,\n                \"value\": \"gold\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534296,\n                \"value\": \"nc total tooling system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534297,\n                \"value\": \"cat.no.303k\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534298,\n                \"value\": \"foam\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534299,\n                \"value\": \"brick\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534300,\n                \"value\": \"rubber eraser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534301,\n                \"value\": \"bench\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534302,\n                \"value\": \"chain saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534303,\n                \"value\": \"adjustable automatic chain oiler\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534304,\n                \"value\": \"interlocking safety trigger and hand guard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534305,\n                \"value\": \"power cutter hand saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534306,\n                \"value\": \"bucking cleat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534307,\n                \"value\": \"cut capacity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534308,\n                \"value\": \"radiance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534310,\n                \"value\": \"large assist handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534314,\n                \"value\": \"REMOVE\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534379,\n                \"value\": \"slim\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534380,\n                \"value\": \"spin-on oil separation system allows for the easiest and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534381,\n                \"value\": \"the industry's largest and deepest, full-length toolbox\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534382,\n                \"value\": \"blackboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534383,\n                \"value\": \"spf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534385,\n                \"value\": \"ning your new\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609500,\n                \"value\": \"ne\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609501,\n                \"value\": \"w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609502,\n                \"value\": \"w2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689428,\n                \"value\": \"select attributes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689429,\n                \"value\": \"accessory size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689430,\n                \"value\": \"arm height (from floor)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689431,\n                \"value\": \"update date\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689432,\n                \"value\": \"product completeness\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689433,\n                \"value\": \"name\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689434,\n                \"value\": \"save\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689435,\n                \"value\": \"action shot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10016148,\n                \"value\": \"snips\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10016157,\n                \"value\": \"sharp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10017834,\n                \"value\": \"steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10017860,\n                \"value\": \"shelf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10018768,\n                \"value\": \"carbide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10927405,\n                \"value\": \"shrink fit unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11165107,\n                \"value\": \"plastic grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193681,\n                \"value\": \"lasts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193682,\n                \"value\": \"world's\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193683,\n                \"value\": \"best\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193684,\n                \"value\": \"poop fighter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226132,\n                \"value\": \"measurements\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226133,\n                \"value\": \"xl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226134,\n                \"value\": \"2xl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226135,\n                \"value\": \"lakeland\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226136,\n                \"value\": \"disposable and chemical clothing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226137,\n                \"value\": \"sizing charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226138,\n                \"value\": \"lakeland.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226139,\n                \"value\": \"sizing charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226140,\n                \"value\": \"waist\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226141,\n                \"value\": \"turnout gear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226239,\n                \"value\": \"carbide steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11274260,\n                \"value\": \"lyon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11276406,\n                \"value\": \"chrome\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11321785,\n                \"value\": \"leaf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11327723,\n                \"value\": \"grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11586864,\n                \"value\": \"outdoor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11586865,\n                \"value\": \"new image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11816612,\n                \"value\": \"child proof\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11859672,\n                \"value\": \"esd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11882762,\n                \"value\": \"proto\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904595,\n                \"value\": \"be the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904596,\n                \"value\": \"1jn.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904597,\n                \"value\": \"god called\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960380,\n                \"value\": \"13.7 years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960381,\n                \"value\": \"warm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960382,\n                \"value\": \"life\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12167539,\n                \"value\": \"top mount handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12248206,\n                \"value\": \"extra light\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12320652,\n                \"value\": \"insulated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12340069,\n                \"value\": \"new tag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12383815,\n                \"value\": \"diy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405882,\n                \"value\": \"nst prime\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405883,\n                \"value\": \"poolife\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12476267,\n                \"value\": \"application shot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953135,\n                \"value\": \"brad nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953136,\n                \"value\": \"senco\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953175,\n                \"value\": \"pin nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953176,\n                \"value\": \"tn21l1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953177,\n                \"value\": \"finish pro 30xp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953178,\n                \"value\": \"23\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953179,\n                \"value\": \"neverlube oil free tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953180,\n                \"value\": \"f-18xp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953181,\n                \"value\": \"18v li-ion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953182,\n                \"value\": \"18 brad nails\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953455,\n                \"value\": \"crescent\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953456,\n                \"value\": \"axe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953457,\n                \"value\": \"rt410\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966519,\n                \"value\": \"Nail gun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966520,\n                \"value\": \"pneumatic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966526,\n                \"value\": \"red compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966527,\n                \"value\": \"industrial tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966528,\n                \"value\": \"garage equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966529,\n                \"value\": \"portable air pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966530,\n                \"value\": \"high-pressure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966531,\n                \"value\": \"pneumatic tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966532,\n                \"value\": \"workshop gear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966533,\n                \"value\": \"hand tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966534,\n                \"value\": \"grip tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966535,\n                \"value\": \"industrial pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966536,\n                \"value\": \"metalworking\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966537,\n                \"value\": \"red pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966538,\n                \"value\": \"cutting tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966539,\n                \"value\": \"hardware tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905665,\n                \"value\": \"pink lily\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905877,\n                \"value\": \"18.\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925308,\n        \"name\": \"Landed Cost\",\n        \"key\": \"computed_price\",\n        \"data_type\": \"PRICE\",\n        \"currency\": \"USD\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1658930976487,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729774740289,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"product.cost * (1 + catsy.lookupCustomEntity(\\\"tarriffs\\\", product.country_of_origin, product.product_type_1, product.main_material).tarriff_custom)\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"product.cost * (1 + catsy.lookupCustomEntity(\\\"tarriffs\\\", product.country_of_origin, product.product_type_1, product.main_material).tarriff_custom)\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"main_material\",\n                \"product_type_1\",\n                \"cost\",\n                \"country_of_origin\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613749,\n        \"name\": \"Length\",\n        \"key\": \"length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614004117902,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348725,\n        \"name\": \"Length 1 - Sales Unit\",\n        \"key\": \"length_1_sales_unit\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693079667,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693079667,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21376002,\n        \"name\": \"Length 3\",\n        \"key\": \"length_3\",\n        \"data_type\": \"MEASUREMENT_V2\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1737037187291,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1737037187291,\n        \"measurement\": {\n            \"family_id\": 1,\n            \"family_name\": \"Length\",\n            \"system\": \"IMPERIAL\",\n            \"locale\": \"en\",\n            \"units\": [\n                {\n                    \"id\": 3,\n                    \"name\": \"Foot\",\n                    \"abbreviation\": \"ft\"\n                },\n                {\n                    \"id\": 4,\n                    \"name\": \"Inch\",\n                    \"abbreviation\": \"in\"\n                }\n            ],\n            \"default_unit_id\": 3,\n            \"attribute_link\": null\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20735830,\n        \"name\": \"Length of Cut\",\n        \"key\": \"length_of_cut\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1633441293874,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626043,\n        \"name\": \"Lens\",\n        \"key\": \"lens\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617148327300,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1688994469650,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660356,\n        \"name\": \"Lens Type\",\n        \"key\": \"lens_type\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456147318,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20872026,\n        \"name\": \"Life Stage\",\n        \"key\": \"life_stage\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1650472506894,\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018008642,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20707368,\n        \"name\": \"Life Stage 2\",\n        \"key\": \"life_stage_2\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1629834254350,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586316,\n        \"name\": \"Lifestyle Image\",\n        \"key\": \"lifestyle_image\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690356,\n        \"name\": \"Lighted\",\n        \"key\": \"lighted\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402069955,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348735,\n        \"name\": \"Lighting Facts PDF\",\n        \"key\": \"lighting_facts_pdf\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693183105,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693183105,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586317,\n        \"name\": \"List Price\",\n        \"key\": \"list_price\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"List Price\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586318,\n        \"name\": \"Long Description\",\n        \"key\": \"long_description\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1709846069922,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_words\": 10,\n            \"max_words\": 1000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626054,\n        \"name\": \"Lumens\",\n        \"key\": \"lumens\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617148327496,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348724,\n        \"name\": \"M.O.D. (Diameter in Inches)\",\n        \"key\": \"mod_diameter_in_inches\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693078837,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693078837,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348723,\n        \"name\": \"M.O.L. (Length in Inches)\",\n        \"key\": \"mol_length_in_inches\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693077697,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693077697,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20615472,\n        \"name\": \"MAP Price\",\n        \"key\": \"map_price\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614104190421,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"list_price*0.9\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"list_price*0.9\",\n            \"mapped_key\": null,\n            \"referenced_keys\": []\n        },\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586322,\n        \"name\": \"MSRP\",\n        \"key\": \"msrp\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21285951,\n        \"name\": \"Main Body Material\",\n        \"key\": \"main_body_material\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1716210051512,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1741617346130,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20924926,\n        \"name\": \"Main Material\",\n        \"key\": \"main_material\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1658850645164,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1712960798506,\n        \"picklist_id\": 106490,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5605259,\n                \"value\": \"Aluminum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605261,\n                \"value\": \"Rattan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605260,\n                \"value\": \"Brass\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605262,\n                \"value\": \"Glass\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605263,\n                \"value\": \"Iron\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605264,\n                \"value\": \"Metal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605265,\n                \"value\": \"Cotton\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605266,\n                \"value\": \"Stone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605267,\n                \"value\": \"Straw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605268,\n                \"value\": \"Plastic Beads\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605269,\n                \"value\": \"Porcelain\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605270,\n                \"value\": \"Raffia\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605271,\n                \"value\": \"Styrofoam\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605272,\n                \"value\": \"Palm Tree Leaf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605274,\n                \"value\": \"MDF/Wood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605273,\n                \"value\": \"Shells/Capiz/MOP\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605275,\n                \"value\": \"Feather\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605276,\n                \"value\": \"Acrylic/Plastic/Polyester/Resin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605277,\n                \"value\": \"Polyester\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605278,\n                \"value\": \"Wood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605279,\n                \"value\": \"Rhinestones\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605280,\n                \"value\": \"Steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605282,\n                \"value\": \"Wheat Straw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605281,\n                \"value\": \"Tin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605284,\n                \"value\": \"Paper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605283,\n                \"value\": \"Ceramic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605287,\n                \"value\": \"Linen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605286,\n                \"value\": \"Rock Quartz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605285,\n                \"value\": \"Bamboo / Silver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605289,\n                \"value\": \"Zinc alloy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605288,\n                \"value\": \"Bamboo\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605290,\n                \"value\": \"Glass Beads\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605291,\n                \"value\": \"Crystal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6679771,\n                \"value\": \"Zinc\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6981579,\n                \"value\": \"Titanium\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11818524,\n                \"value\": \"Bronze\",\n                \"abbreviation\": \"Brz\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21109834,\n        \"name\": \"Manufacturer List\",\n        \"key\": \"manufacturer_list\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1686142291710,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1686142291710,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"total_digits\": 6\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20989706,\n        \"name\": \"Marketing Completeness\",\n        \"key\": \"mkt_comp\",\n        \"data_type\": \"INTEGER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1670293055495,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1696598267350,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"def result = 0\\nif (product.accessory_product.isEmpty()) {\\n                    result += 0 } else {\\n                    result += 33.33\\n                }\\nif (product.accessory_size.isEmpty()) {\\n                    result += 0 } else {\\n                    result += 33.33\\n                }\\nif (product.action_photo.isEmpty()) {\\n                    result += 0 } else {\\n                    result += 33.33\\n                }\\nresult\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"def result = 0\\nif (product.accessory_product.isEmpty()) {\\n                    result += 0 } else {\\n                    result += 33.33\\n                }\\nif (product.accessory_size.isEmpty()) {\\n                    result += 0 } else {\\n                    result += 33.33\\n                }\\nif (product.action_photo.isEmpty()) {\\n                    result += 0 } else {\\n                    result += 33.33\\n                }\\nresult\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"action_photo\",\n                \"accessory_product\",\n                \"accessory_size\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21339359,\n        \"name\": \"Marketplace Category\",\n        \"key\": \"marketplace_category\",\n        \"data_type\": \"CATEGORY\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1727789874808,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1727789874808,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640178,\n        \"name\": \"Marking Code\",\n        \"key\": \"marking_code\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620212842729,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20621589,\n        \"name\": \"Master Code\",\n        \"key\": \"master_code\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1616151475311,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640177,\n        \"name\": \"Master Pack Desc\",\n        \"key\": \"master_pack_desc\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620212842721,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586289,\n        \"name\": \"Master Pack Height\",\n        \"key\": \"masterpack_height\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586290,\n        \"name\": \"Master Pack Length\",\n        \"key\": \"masterpack_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640187,\n        \"name\": \"Master Pack Qty\",\n        \"key\": \"master_pack_qty\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620212843037,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586291,\n        \"name\": \"Master Pack Weight\",\n        \"key\": \"masterpack_weight\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586292,\n        \"name\": \"Master Pack Width\",\n        \"key\": \"masterpack_width\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586320,\n        \"name\": \"Material\",\n        \"key\": \"material\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1712960791242,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20872028,\n        \"name\": \"Material\",\n        \"key\": \"material_type\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1650472587483,\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 96456,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5083298,\n                \"value\": \"Wood\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5085996,\n                \"value\": \"Rubber\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5602318,\n                \"value\": \"Chrome\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5602319,\n                \"value\": \"Zinc\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5602320,\n                \"value\": \"Steel\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018008642,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21268741,\n        \"name\": \"Material\",\n        \"key\": \"zhz_material\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1711485201017,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1711485201017,\n        \"picklist_id\": 178379,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 10926960,\n                \"value\": \"Mesh\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10926961,\n                \"value\": \"Polyester\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10926962,\n                \"value\": \"Nylon\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586321,\n        \"name\": \"Max Pressure\",\n        \"key\": \"max_pressure\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640280,\n        \"name\": \"Max Screw Diameter Compatibility (Decimal Inch)\",\n        \"key\": \"max_screw_diameter_compatibility_decimal_inch\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420818,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640271,\n        \"name\": \"Max Screw Diameter Compatibility (mm)\",\n        \"key\": \"max_screw_diameter_compatibility_mm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420608,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660346,\n        \"name\": \"Max. Resolution\",\n        \"key\": \"max_resolution\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146900,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684381,\n        \"name\": \"Maximum Operating Temperature\",\n        \"key\": \"maximum_operating_temperature\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881461238,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640247,\n        \"name\": \"Min Screw Diameter Compatibility (Decimal Inch)\",\n        \"key\": \"min_screw_diameter_compatibility_decimal_inch\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420130,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640248,\n        \"name\": \"Min Screw Diameter Compatibility (mm)\",\n        \"key\": \"min_screw_diameter_compatibility_mm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420131,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660353,\n        \"name\": \"Minimum Illumination\",\n        \"key\": \"minimum_illumination\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146914,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684375,\n        \"name\": \"Minimum Operating Temperature\",\n        \"key\": \"minimum_operating_temperature\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356656,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20676513,\n        \"name\": \"Model\",\n        \"key\": \"model\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626273694994,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21390654,\n        \"name\": \"Multi Category\",\n        \"key\": \"multi_category\",\n        \"data_type\": \"CATEGORY\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1739295814845,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1739295814845,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21502109,\n        \"name\": \"Nail Capacity\",\n        \"key\": \"nail_capacity\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Jarod Waters\",\n        \"create_date\": 1741879846827,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_date\": 1741879846827,\n        \"create_user_id\": 4018014823,\n        \"update_user_id\": 4018014823\n    },\n    {\n        \"id\": 20586323,\n        \"name\": \"Name\",\n        \"key\": \"name\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21290988,\n        \"name\": \"Net Price\",\n        \"key\": \"net_price\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1717078988927,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1717078988927,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20735834,\n        \"name\": \"Net Wt.\",\n        \"key\": \"net_wt\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1633441294898,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20926107,\n        \"name\": \"No. Of Stages\",\n        \"key\": \"no_of_stages\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659538853649,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 106587,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5609954,\n                \"value\": \"2 Stage\",\n                \"abbreviation\": \"ABCD\",\n                \"asset\": {\n                    \"id\": 4070863022,\n                    \"size\": 121103,\n                    \"width\": 800,\n                    \"height\": 800,\n                    \"filename\": \"8052-Main.jpeg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/8052-Main.jpeg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1745586451505,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863022/comp-1.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpeg\",\n                    \"transformations\": {\n                        \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863022/8052-Main.jpg\",\n                        \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863022/8052-Main.jpg\",\n                        \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863022/8052-Main.png\",\n                        \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863022/8052-Main.png\",\n                        \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863022/8052-Main.png\",\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                        \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863022/8052-Main.png\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                        \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863022/8052-Main.png\"\n                    },\n                    \"personna\": \"DIY\",\n                    \"marketing_campaigns\": \"YouTube|Twitter|Facebook\",\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": \"Compressor 101\",\n                    \"application_notes\": \"1000PSI\",\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"vehicle\",\n                        \"compressor\",\n                        \"top mount handle\",\n                        \"car\",\n                        \"black\",\n                        \"handle\",\n                        \"rubber grip\",\n                        \"extra light\",\n                        \"rubber wheels\",\n                        \"diy\",\n                        \"commercial\",\n                        \"residential\",\n                        \"new tag\"\n                    ],\n                    \"storemediaid\": null,\n                    \"b2bindustrialpreliminarydemo804_alt_text\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"T2yO5Q.wdnZvcz7i3CKNoeXTnF4sCHn_\",\n                    \"publish_date\": null,\n                    \"b2bindustrialpreliminarydemo804_url\": null\n                },\n                \"default_option\": false,\n                \"asset_thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\"\n            },\n            {\n                \"id\": 5609953,\n                \"value\": \"4 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5726659,\n                \"value\": \"3 Stage\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096589,\n                \"value\": \"5 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096590,\n                \"value\": \"6 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096591,\n                \"value\": \"7 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096592,\n                \"value\": \"8 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096593,\n                \"value\": \"9 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096594,\n                \"value\": \"10 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096595,\n                \"value\": \"11 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096596,\n                \"value\": \"12 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096597,\n                \"value\": \"13 Stage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096598,\n                \"value\": \"14 Stage\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21086966,\n        \"name\": \"Number Hole Sizes\",\n        \"key\": \"number_hole_sizes\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1684758261219,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 144913,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 7685732,\n                \"value\": \"2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685733,\n                \"value\": \"6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7685734,\n                \"value\": \"12\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640273,\n        \"name\": \"Number of Flutes\",\n        \"key\": \"number_of_flutes\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420621,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640243,\n        \"name\": \"Number of Inserts\",\n        \"key\": \"number_of_inserts\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223419894,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20864520,\n        \"name\": \"Number of Passengers\",\n        \"key\": \"number_of_passengers\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1649849632441,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20934507,\n        \"name\": \"Number of Pockets\",\n        \"key\": \"number_of_pockets\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660482460746,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 107923,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5693016,\n                \"value\": \"0\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693017,\n                \"value\": \"2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693018,\n                \"value\": \"4\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690352,\n        \"name\": \"Number of Shelves\",\n        \"key\": \"number_of_shelves\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402069225,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613741,\n        \"name\": \"Nut / Nose Dia\",\n        \"key\": \"nut_nose_dia\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614004117778,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20957485,\n        \"name\": \"OS Compatibility \",\n        \"key\": \"os_compatibility\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1665586208558,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21285948,\n        \"name\": \"Op. Pressure\",\n        \"key\": \"op_pressure\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1716210047489,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1716210047489,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348698,\n        \"name\": \"Ordering Code\",\n        \"key\": \"ordering_code\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692208251,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692208251,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21251894,\n        \"name\": \"Orientation\",\n        \"key\": \"orientation\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1709929011481,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1709929011481,\n        \"picklist_id\": 176691,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 10862956,\n                \"value\": \"Horizontal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10862957,\n                \"value\": \"Vertical\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10862958,\n                \"value\": \"Pancake\",\n                \"asset\": {\n                    \"id\": 4070863022,\n                    \"size\": 121103,\n                    \"width\": 800,\n                    \"height\": 800,\n                    \"filename\": \"8052-Main.jpeg\",\n                    \"url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/8052-Main.jpeg\",\n                    \"create_user_id\": 4018007131,\n                    \"create_date\": 1705529945511,\n                    \"create_user_name\": \"Super Admin\",\n                    \"update_user_id\": 4018007131,\n                    \"update_date\": 1745586451505,\n                    \"update_user_name\": \"Super Admin\",\n                    \"lightbox_ids\": [],\n                    \"thumbnail_filename\": \"4070863022/comp-1.jpg\",\n                    \"asset_type\": \"IMAGE\",\n                    \"aspect_ratio\": null,\n                    \"thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                    \"large_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                    \"linked_products\": [],\n                    \"private\": false,\n                    \"extension\": \"jpeg\",\n                    \"transformations\": {\n                        \"_bc\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_bc/4070863022/8052-Main.jpg\",\n                        \"_xl\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_xl/4070863022/8052-Main.jpg\",\n                        \"_elpr\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elpr/4070863022/8052-Main.png\",\n                        \"_elicon\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elicon/4070863022/8052-Main.png\",\n                        \"_eldet\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_eldet/4070863022/8052-Main.png\",\n                        \"_tn\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\",\n                        \"_elorig\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_elorig/4070863022/8052-Main.png\",\n                        \"_lg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_lg/4070863022/comp-1.jpg\",\n                        \"_ellg\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_ellg/4070863022/8052-Main.png\"\n                    },\n                    \"personna\": \"DIY\",\n                    \"marketing_campaigns\": \"YouTube|Twitter|Facebook\",\n                    \"source\": null,\n                    \"expiration_date\": null,\n                    \"version\": \"1\",\n                    \"title_a\": \"Compressor 101\",\n                    \"application_notes\": \"1000PSI\",\n                    \"tags\": [\n                        \"Machine\",\n                        \"wheel\",\n                        \"vehicle\",\n                        \"compressor\",\n                        \"top mount handle\",\n                        \"car\",\n                        \"black\",\n                        \"handle\",\n                        \"rubber grip\",\n                        \"extra light\",\n                        \"rubber wheels\",\n                        \"diy\",\n                        \"commercial\",\n                        \"residential\",\n                        \"new tag\"\n                    ],\n                    \"storemediaid\": null,\n                    \"b2bindustrialpreliminarydemo804_alt_text\": null,\n                    \"category\": \"Tools > Power Tools > Compressors\",\n                    \"s3_version\": \"T2yO5Q.wdnZvcz7i3CKNoeXTnF4sCHn_\",\n                    \"publish_date\": null,\n                    \"b2bindustrialpreliminarydemo804_url\": null\n                },\n                \"default_option\": false,\n                \"asset_thumbnail_url\": \"https://s3-us-west-2.amazonaws.com/catsy.804/_tn/4070863022/comp-1.jpg\"\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20735828,\n        \"name\": \"Overall Length\",\n        \"key\": \"overall_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1633441165309,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586328,\n        \"name\": \"PSI\",\n        \"key\": \"psi\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"PSI\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348700,\n        \"name\": \"Pack Qty\",\n        \"key\": \"pack_qty\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692271724,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692271724,\n        \"picklist_id\": 195403,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960003,\n                \"value\": \"4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960004,\n                \"value\": \"2\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20624144,\n        \"name\": \"Packaged Asset\",\n        \"key\": \"packaged_asset\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617111646974,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660338,\n        \"name\": \"Pan Range\",\n        \"key\": \"pan_range\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146515,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660334,\n        \"name\": \"Pan Speed\",\n        \"key\": \"pan_speed\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146513,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660347,\n        \"name\": \"Pan/Tilt/Zoom Functionalities\",\n        \"key\": \"pantiltzoom_functionalities\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146900,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586325,\n        \"name\": \"Parent SKU\",\n        \"key\": \"parent_sku\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20661620,\n        \"name\": \"Peak Decibels\",\n        \"key\": \"peak_decibels\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622730160205,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20957483,\n        \"name\": \"Physical Security\",\n        \"key\": \"physical_security\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1665586206946,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640267,\n        \"name\": \"Pilot Diameter (Decimal Inch)\",\n        \"key\": \"pilot_diameter_decimal_inch\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420601,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640264,\n        \"name\": \"Pilot Diameter (mm)\",\n        \"key\": \"pilot_diameter_mm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420378,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925892,\n        \"name\": \"Poisonous\",\n        \"key\": \"poisonous\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"conditional_attribute_keys\": [],\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659369747218,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"conditions\": {\n            \"all\": [],\n            \"any\": [\n                {\n                    \"all\": [],\n                    \"any\": [],\n                    \"elements\": [\n                        {\n                            \"attribute_key\": \"category\",\n                            \"min_occurs\": 1\n                        }\n                    ]\n                }\n            ],\n            \"elements\": []\n        },\n        \"picklist_id\": 106577,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5608116,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5608115,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20882682,\n        \"name\": \"Ports\",\n        \"key\": \"ports\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1651781379953,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21511560,\n        \"name\": \"Power Drills JSON Schema\",\n        \"key\": \"power_drills_json\",\n        \"data_type\": \"JSON\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1743263882983,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1744120633759,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21322259,\n        \"name\": \"Power Source\",\n        \"key\": \"_9dr_power_source\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1723738960898,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1723738960898,\n        \"picklist_id\": 192714,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11861233,\n                \"value\": \"Corded Electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861234,\n                \"value\": \"Battery Powered\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861235,\n                \"value\": \"Gas Powered\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21501950,\n        \"name\": \"Power Type\",\n        \"key\": \"power_type\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Jarod Waters\",\n        \"create_date\": 1741877367375,\n        \"create_user_name\": \"Jarod Waters\",\n        \"update_date\": 1741877367375,\n        \"create_user_id\": 4018014823,\n        \"update_user_id\": 4018014823\n    },\n    {\n        \"id\": 21529371,\n        \"name\": \"Priority Accessories\",\n        \"key\": \"priority_accessories\",\n        \"data_type\": \"PRODUCT\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1744399765371,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1744399765371,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684366,\n        \"name\": \"Product Color\",\n        \"key\": \"product_color\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356311,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21504428,\n        \"name\": \"Product Description\",\n        \"key\": \"product_description\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742414492927,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742414492927,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20755006,\n        \"name\": \"Product Dimensions (W\\\" X D\\\" X H\\\")\",\n        \"key\": \"product_dimensions_w_x_d_x_h\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1636988796820,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20724759,\n        \"name\": \"Product Type\",\n        \"key\": \"product_type\",\n        \"data_type\": \"ATTRIBUTE_GROUP\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1631904738129,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1709311939274,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20924924,\n        \"name\": \"Product Type\",\n        \"key\": \"product_type_1\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1658850644221,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1709311927895,\n        \"picklist_id\": 106489,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5605232,\n                \"value\": \"Napkin Ring\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605234,\n                \"value\": \"Decorative Pillow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605233,\n                \"value\": \"Runner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605235,\n                \"value\": \"Flatware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605236,\n                \"value\": \"Tree Skirt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605237,\n                \"value\": \"Tabletop Décor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605238,\n                \"value\": \"Christmas Ornaments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605240,\n                \"value\": \"Stocking\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605239,\n                \"value\": \"Zipper Case\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605241,\n                \"value\": \"Tissue Box\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605243,\n                \"value\": \"Napkin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605242,\n                \"value\": \"Dinnerware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605245,\n                \"value\": \"Charger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605244,\n                \"value\": \"Coaster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605246,\n                \"value\": \"Waste Basket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605247,\n                \"value\": \"Salt Cellar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605248,\n                \"value\": \"Glassware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605249,\n                \"value\": \"Candle Holder\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605250,\n                \"value\": \"Box\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605251,\n                \"value\": \"Tray\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605253,\n                \"value\": \"Vase\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605252,\n                \"value\": \"Holiday\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605254,\n                \"value\": \"Tablecloth\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605255,\n                \"value\": \"Cocktail Napkin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605256,\n                \"value\": \"Soap Dispenser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605257,\n                \"value\": \"Pitcher\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5605258,\n                \"value\": \"Placemat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5609948,\n                \"value\": \"Brackets\",\n                \"abbreviation\": \"brackets\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5609957,\n                \"value\": \"Grills\",\n                \"abbreviation\": \"Grills\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586326,\n        \"name\": \"Prop 65 Compliant\",\n        \"key\": \"prop_65_compliant\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586327,\n        \"name\": \"Prop 65 Warning\",\n        \"key\": \"prop_65_warning\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20707366,\n        \"name\": \"Protein\",\n        \"key\": \"protein\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1629834254027,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21111659,\n        \"name\": \"Publish To B2B Website\",\n        \"key\": \"publish_to_b2b_website\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1686747573866,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1686747573866,\n        \"picklist_id\": 154616,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 8088026,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8088027,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20734473,\n        \"name\": \"Pump Location\",\n        \"key\": \"pump_location\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1632948805499,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21055536,\n        \"name\": \"Purchasing Completeness\",\n        \"key\": \"purchasing_completeness\",\n        \"data_type\": \"INTEGER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1682290051184,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1689955979742,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"def validCount = 0\\ndef totalCount = 0\\nif (product.package_depth.isEmpty()) {\\n                        validCount += 0\\n                    } else {\\n                        validCount += 1\\n                    }\\n                    totalCount += 1\\nif (product.map_price.isEmpty()) {\\n                        validCount += 0\\n                    } else {\\n                        validCount += 1\\n                    }\\n                    totalCount += 1\\nif (product.regular_price.isEmpty()) {\\n                        validCount += 0\\n                    } else {\\n                        validCount += 1\\n                    }\\n                    totalCount += 1\\nif (product.sale_active.isEmpty()) {\\n                        validCount += 0\\n                    } else {\\n                        validCount += 1\\n                    }\\n                    totalCount += 1\\ntotalCount == 0 ? 0 : 100 * validCount / totalCount\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"def validCount = 0\\ndef totalCount = 0\\nif (product.package_depth.isEmpty()) {\\n                        validCount += 0\\n                    } else {\\n                        validCount += 1\\n                    }\\n                    totalCount += 1\\nif (product.map_price.isEmpty()) {\\n                        validCount += 0\\n                    } else {\\n                        validCount += 1\\n                    }\\n                    totalCount += 1\\nif (product.regular_price.isEmpty()) {\\n                        validCount += 0\\n                    } else {\\n                        validCount += 1\\n                    }\\n                    totalCount += 1\\nif (product.sale_active.isEmpty()) {\\n                        validCount += 0\\n                    } else {\\n                        validCount += 1\\n                    }\\n                    totalCount += 1\\ntotalCount == 0 ? 0 : 100 * validCount / totalCount\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"regular_price\",\n                \"package_depth\",\n                \"sale_active\",\n                \"map_price\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20926105,\n        \"name\": \"Quantity\",\n        \"key\": \"quantity\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659527946907,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21238794,\n        \"name\": \"RPM\",\n        \"key\": \"rpm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1708990340484,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1708990340484,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684374,\n        \"name\": \"Rated Current (A)\",\n        \"key\": \"rated_current_a\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356673,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684369,\n        \"name\": \"Rated Voltage (V)\",\n        \"key\": \"rated_voltage_v\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356314,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684378,\n        \"name\": \"Ratings Information\",\n        \"key\": \"ratings_information\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356980,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20635091,\n        \"name\": \"Recommended Products\",\n        \"key\": \"recommended_products\",\n        \"data_type\": \"PRODUCT\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1619461774341,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348699,\n        \"name\": \"Reference SKU\",\n        \"key\": \"reference_sku\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692208950,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692208950,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20934506,\n        \"name\": \"Reflective Stripes\",\n        \"key\": \"reflective_stripes\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660482390497,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 107922,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5693015,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693014,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20856571,\n        \"name\": \"Regular price\",\n        \"key\": \"regular_price\",\n        \"data_type\": \"PRICE\",\n        \"currency\": \"USD\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1648826424399,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586329,\n        \"name\": \"Remote Control\",\n        \"key\": \"remote_control\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57086,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 2812543,\n                \"value\": \"Bluetooth\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812544,\n                \"value\": \"Corded\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4111652,\n                \"value\": \"Infrared\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20615468,\n        \"name\": \"Repair Policy\",\n        \"key\": \"repair_policy\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614099255104,\n        \"create_user_name\": \"Alex Kam\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007204,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586330,\n        \"name\": \"Rich Description\",\n        \"key\": \"rich_description\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"RICH\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348701,\n        \"name\": \"Romance Copy\",\n        \"key\": \"romance_copy\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692335447,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692335447,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640257,\n        \"name\": \"SHCS Size\",\n        \"key\": \"shcs_size\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420351,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586324,\n        \"name\": \"SKU\",\n        \"key\": \"number\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"uniqueness\": true,\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20661618,\n        \"name\": \"STC\",\n        \"key\": \"stc\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622730160173,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348719,\n        \"name\": \"Safety Certificate Org\",\n        \"key\": \"safety_certificate_org\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692823454,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692823454,\n        \"picklist_id\": 195410,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960029,\n                \"value\": \"UL\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348718,\n        \"name\": \"Safety Certificate Type\",\n        \"key\": \"safety_certificate_type\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692800547,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692800547,\n        \"picklist_id\": 195409,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960031,\n                \"value\": \"Damp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960032,\n                \"value\": \"WET\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960033,\n                \"value\": \"DAMP\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960034,\n                \"value\": \"Wet\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20905995,\n        \"name\": \"Safety Data Sheet\",\n        \"key\": \"safety_data_sheet\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1655237530269,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20856552,\n        \"name\": \"Sale Active?\",\n        \"key\": \"sale_active\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1648822997227,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 95708,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5051766,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5051765,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20856569,\n        \"name\": \"Sale Price\",\n        \"key\": \"sale_price\",\n        \"data_type\": \"PRICE\",\n        \"currency\": \"USD\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1648826380175,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"(product.cost.integerValue())1.4\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"(product.cost.integerValue())1.4\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"cost\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925403,\n        \"name\": \"Salesforce ID\",\n        \"key\": \"salesforce_id\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659018452639,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21238795,\n        \"name\": \"Saw Teeth Size\",\n        \"key\": \"saw_teeth_size\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1708990341347,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1708990341347,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508439,\n        \"name\": \"Screen Included\",\n        \"key\": \"screen_included\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742828183153,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742828183153,\n        \"picklist_id\": 214807,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823389,\n                \"value\": \"yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823390,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640279,\n        \"name\": \"Screw Type Compatibility\",\n        \"key\": \"screw_type_compatibility\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420817,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20755010,\n        \"name\": \"Seat Dimensions\",\n        \"key\": \"seat_dimensions\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1636988797720,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20755014,\n        \"name\": \"Seat Height (From Floor)\",\n        \"key\": \"seat_height_from_floor\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1636988798567,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586331,\n        \"name\": \"Seat Number\",\n        \"key\": \"seat_number\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57076,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 2812218,\n                \"value\": \"1 Seat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812219,\n                \"value\": \"2 Seat\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20864912,\n        \"name\": \"Secondary Category\",\n        \"key\": \"secondary_category\",\n        \"data_type\": \"CATEGORY\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1649947004132,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586314,\n        \"name\": \"Secondary Image\",\n        \"key\": \"image_2\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640184,\n        \"name\": \"Sell Pack Desc\",\n        \"key\": \"sell_pack_desc\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620212842817,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586333,\n        \"name\": \"Sell Pack Height\",\n        \"key\": \"sellpack_height\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586334,\n        \"name\": \"Sell Pack Length\",\n        \"key\": \"selling_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640180,\n        \"name\": \"Sell Pack Qty\",\n        \"key\": \"sell_pack_qty\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620212842768,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586335,\n        \"name\": \"Sell Pack Weight\",\n        \"key\": \"selling_weight\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586336,\n        \"name\": \"Sell Pack Width\",\n        \"key\": \"sellpack_width\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586332,\n        \"name\": \"Sell Sheet\",\n        \"key\": \"sell_sheet\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508311,\n        \"name\": \"Sensitivity\",\n        \"key\": \"sensitivity\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742678748888,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742678748888,\n        \"picklist_id\": 214790,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823065,\n                \"value\": \"-40 dBV/Pa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823066,\n                \"value\": \"-54 dBV/Pa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823067,\n                \"value\": \"-38 dBV/Pa\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21285955,\n        \"name\": \"Series\",\n        \"key\": \"series\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1716212728100,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1716212728100,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640309,\n        \"name\": \"Shank Diameter\",\n        \"key\": \"shank_diameter\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620224315811,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20613743,\n        \"name\": \"Shank Size\",\n        \"key\": \"shank_size\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1614004117803,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21086957,\n        \"name\": \"Shank Type - Machining\",\n        \"key\": \"shank_type_machining\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1684756673045,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 144912,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 7685711,\n                \"value\": \"Straight\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690350,\n        \"name\": \"Shelves Included\",\n        \"key\": \"shelves_included\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402068872,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640176,\n        \"name\": \"Ship Pack Desc\",\n        \"key\": \"ship_pack_desc\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620212842728,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626154,\n        \"name\": \"Ship Pack Height\",\n        \"key\": \"ship_pack_height\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617189764387,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626153,\n        \"name\": \"Ship Pack Length\",\n        \"key\": \"ship_pack_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617189764387,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640188,\n        \"name\": \"Ship Pack Qty\",\n        \"key\": \"ship_pack_qty\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620212843039,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626148,\n        \"name\": \"Ship Pack Weight\",\n        \"key\": \"ship_pack_weight\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617189764223,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626152,\n        \"name\": \"Ship Pack Width\",\n        \"key\": \"ship_pack_width\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617189764387,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20925890,\n        \"name\": \"Short Description\",\n        \"key\": \"short_description\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"edit_lines\": 1,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659369410134,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 20,\n            \"max_length\": 120\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21215524,\n        \"name\": \"Short Title\",\n        \"key\": \"short_name\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1706624245566,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1706624332128,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_words\": 1,\n            \"max_words\": 25\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21215525,\n        \"name\": \"Short Title Ebay\",\n        \"key\": \"long_name_for_ebay\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1706624246608,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1706624276956,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21215526,\n        \"name\": \"Short Title Website\",\n        \"key\": \"extra_long_name_for_website\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1706624248116,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1706624285978,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660336,\n        \"name\": \"Shutter Time\",\n        \"key\": \"shutter_time\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146514,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20755041,\n        \"name\": \"Side Image\",\n        \"key\": \"side_image\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1636990740096,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21268742,\n        \"name\": \"Size\",\n        \"key\": \"k0m_size\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1711485202074,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1711485202074,\n        \"picklist_id\": 178380,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 10926963,\n                \"value\": \"Small\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10926964,\n                \"value\": \"Medium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10926965,\n                \"value\": \"Large\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10926966,\n                \"value\": \"X-Large\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586338,\n        \"name\": \"Size\",\n        \"key\": \"size_option\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57078,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 2812222,\n                \"value\": \"Small\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812223,\n                \"value\": \"Medium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2812224,\n                \"value\": \"Large\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5608092,\n                \"value\": \"XL\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5608093,\n                \"value\": \"2XL\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5608094,\n                \"value\": \"3XL\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21086968,\n        \"name\": \"Size Range\",\n        \"key\": \"size_range\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1684758286709,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21331900,\n        \"name\": \"Sleeve Color\",\n        \"key\": \"sleeve_color\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1726238383671,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1726238383671,\n        \"picklist_id\": 193551,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11905033,\n                \"value\": \"red\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11905034,\n                \"value\": \"black\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21331901,\n        \"name\": \"Sleeve Material\",\n        \"key\": \"sleeve_material\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1726238384038,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1726238384038,\n        \"picklist_id\": 193552,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11905035,\n                \"value\": \"plastic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11905036,\n                \"value\": \"glass\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21504433,\n        \"name\": \"Speaker Size\",\n        \"key\": \"speaker_size\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742415640316,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742415640316,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640282,\n        \"name\": \"Spec Pilot Type\",\n        \"key\": \"pilot_type\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420818,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640289,\n        \"name\": \"Spec Shank Type\",\n        \"key\": \"shank_type\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223421564,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586339,\n        \"name\": \"Spec Sheet\",\n        \"key\": \"spec_sheet\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20882680,\n        \"name\": \"Speed\",\n        \"key\": \"speed\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1651781378854,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20735838,\n        \"name\": \"Stainless Steel 28 Gauge\",\n        \"key\": \"stainless_steel_28_gauge\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1633441295694,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20957484,\n        \"name\": \"Standards and Certification \",\n        \"key\": \"standards_and_certification\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1665586207739,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348721,\n        \"name\": \"State (CA) Compliant T20\",\n        \"key\": \"state_ca_compliant_t20\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692869665,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692869665,\n        \"picklist_id\": 195412,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960035,\n                \"value\": \"U\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960036,\n                \"value\": \"Y\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348720,\n        \"name\": \"State (CA) Compliant T24\",\n        \"key\": \"state_ca_compliant_t24\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692868826,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692868826,\n        \"picklist_id\": 195411,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960027,\n                \"value\": \"N\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960028,\n                \"value\": \"Y\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20927615,\n        \"name\": \"Status\",\n        \"key\": \"status\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660049868222,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1739292925923,\n        \"picklist_id\": 107794,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5674672,\n                \"value\": \"Active\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5674674,\n                \"value\": \"Dis-Continued\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5674673,\n                \"value\": \"Replaced\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20926102,\n        \"name\": \"Steel\",\n        \"key\": \"steel\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1659527943110,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660330,\n        \"name\": \"Storage\",\n        \"key\": \"storage\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146157,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20621591,\n        \"name\": \"Supplier\",\n        \"key\": \"supplier\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1616151578134,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 63859,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 3151636,\n                \"value\": \"TTS\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3151637,\n                \"value\": \"KCS\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3151638,\n                \"value\": \"Findel\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690360,\n        \"name\": \"Supplier Intended and Approved Use\",\n        \"key\": \"supplier_intended_and_approved_use\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402071519,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640190,\n        \"name\": \"Supplier Stock No\",\n        \"key\": \"supplier_stock_no\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620213320803,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21322261,\n        \"name\": \"Table Size\",\n        \"key\": \"fgw_table_size\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1723738961780,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1723738961780,\n        \"picklist_id\": 192716,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11861239,\n                \"value\": \"20 x 27 inches\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861240,\n                \"value\": \"22 x 30 inches\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11861241,\n                \"value\": \"24 x 32 inches\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21238819,\n        \"name\": \"Tank Capacity\",\n        \"key\": \"tank_capacity\",\n        \"data_type\": \"MEASUREMENT_V2\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1708994656729,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1734540155192,\n        \"measurement\": {\n            \"family_id\": 3,\n            \"family_name\": \"Volume\",\n            \"system\": \"IMPERIAL\",\n            \"locale\": \"en\",\n            \"units\": [\n                {\n                    \"id\": 11,\n                    \"name\": \"Ounce\",\n                    \"abbreviation\": \"oz\"\n                },\n                {\n                    \"id\": 12,\n                    \"name\": \"Gallon\",\n                    \"abbreviation\": \"gal\"\n                },\n                {\n                    \"id\": 13,\n                    \"name\": \"Quart\",\n                    \"abbreviation\": \"Q\"\n                },\n                {\n                    \"id\": 22,\n                    \"name\": \"Pint\",\n                    \"abbreviation\": \"pt\"\n                }\n            ],\n            \"default_unit_id\": 12,\n            \"attribute_link\": null\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21086964,\n        \"name\": \"Taper Length\",\n        \"key\": \"taper_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1684757870127,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20924931,\n        \"name\": \"Tarriff\",\n        \"key\": \"tarriff\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1658850647937,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"evaluation\": {\n            \"specificity\": \"ATTRIBUTE\",\n            \"engine\": \"GROOVY\",\n            \"editor\": \"CALCULATED\",\n            \"formula\": \"catsy.lookupCustomEntity(\\\"tarriffs\\\", product.country_of_origin, product.product_type, product.main_material).tarriff\",\n            \"enhanced_content_template_id\": null,\n            \"display\": \"catsy.lookupCustomEntity(\\\"tarriffs\\\", product.country_of_origin, product.product_type, product.main_material).tarriff\",\n            \"mapped_key\": null,\n            \"referenced_keys\": [\n                \"main_material\",\n                \"product_type\",\n                \"country_of_origin\"\n            ]\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21309467,\n        \"name\": \"Temperature\",\n        \"key\": \"temperature2\",\n        \"data_type\": \"MEASUREMENT_V2\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1721603877430,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1721603877430,\n        \"measurement\": {\n            \"family_id\": 5,\n            \"family_name\": \"Temperature\",\n            \"system\": \"METRIC\",\n            \"locale\": \"en\",\n            \"units\": [\n                {\n                    \"id\": 37,\n                    \"name\": \"Celsius\",\n                    \"abbreviation\": \"C\"\n                }\n            ],\n            \"default_unit_id\": 37,\n            \"attribute_link\": \"temp2\"\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20734463,\n        \"name\": \"Thickness\",\n        \"key\": \"thickness\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1632947951249,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660340,\n        \"name\": \"Tilt Range\",\n        \"key\": \"tilt_range\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146524,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20660339,\n        \"name\": \"Tilt Speed\",\n        \"key\": \"tilt_speed\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1622456146519,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20735832,\n        \"name\": \"Tool Length\",\n        \"key\": \"tool_length\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1633441294406,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640249,\n        \"name\": \"Toolholder Style\",\n        \"key\": \"toolholder_style\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420129,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20864522,\n        \"name\": \"Top Attachment\",\n        \"key\": \"top_attachment\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1649849756924,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 96182,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5075121,\n                \"value\": \"Track Style\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690342,\n        \"name\": \"Top Manufactured Wood Type\",\n        \"key\": \"top_manufactured_wood_type\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402067723,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690338,\n        \"name\": \"Top Material\",\n        \"key\": \"top_material\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402066767,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690344,\n        \"name\": \"Top Materials Details\",\n        \"key\": \"top_materials_details\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402067999,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690340,\n        \"name\": \"Top Metal Finish Application\",\n        \"key\": \"top_metal_finish_application\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402067111,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586343,\n        \"name\": \"Toy Color\",\n        \"key\": \"toy_color\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57173,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 2818241,\n                \"value\": \"Red\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2818242,\n                \"value\": \"Teal\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20957811,\n        \"name\": \"Transfer Speeds\",\n        \"key\": \"transfer_speeds\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1665586407305,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21285947,\n        \"name\": \"Trigger\",\n        \"key\": \"trigger\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1716210033478,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1716210033478,\n        \"picklist_id\": 184423,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11324295,\n                \"value\": \"Full Sequential\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11324296,\n                \"value\": \"Single Sequential\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11324297,\n                \"value\": \"Single Actuation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11324298,\n                \"value\": \"Contact Firing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953137,\n                \"value\": \"Selectable Actuation\",\n                \"abbreviation\": \"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953169,\n                \"value\": \"Sequential Dual Trigger\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640193,\n        \"name\": \"UPC\",\n        \"key\": \"upc\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620215975102,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640285,\n        \"name\": \"Unit (inch/mm)\",\n        \"key\": \"unit_inchmm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420829,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20946570,\n        \"name\": \"Used With\",\n        \"key\": \"used_with\",\n        \"data_type\": \"PRODUCT\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1663943639050,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21292990,\n        \"name\": \"User Manual\",\n        \"key\": \"user_manual\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1717680531236,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1717680531236,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21290989,\n        \"name\": \"Variant Price\",\n        \"key\": \"variant_price\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1717079295259,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1717079295259,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20950803,\n        \"name\": \"Vendor\",\n        \"key\": \"vendor\",\n        \"data_type\": \"PARTNER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1664563587314,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508437,\n        \"name\": \"Vent Type\",\n        \"key\": \"vent_type\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742828180676,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742828180676,\n        \"picklist_id\": 214805,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823385,\n                \"value\": \"Round\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823386,\n                \"value\": \"Rectan\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21293001,\n        \"name\": \"Video\",\n        \"key\": \"video\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1717681226167,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1717681226167,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21293002,\n        \"name\": \"Video 2\",\n        \"key\": \"video_2\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1717681351107,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1717681351107,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586345,\n        \"name\": \"Voltage\",\n        \"key\": \"voltage\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 57180,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 2819155,\n                \"value\": \"12V\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2819156,\n                \"value\": \"18V\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2819157,\n                \"value\": \"20V\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2819158,\n                \"value\": \"24V\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960025,\n                \"value\": \"12\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960026,\n                \"value\": \"120\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690362,\n        \"name\": \"Warp Resistent\",\n        \"key\": \"warp_resistent\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402071906,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20934501,\n        \"name\": \"Warranty\",\n        \"key\": \"warranty\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1660480383822,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 107918,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 5693003,\n                \"value\": \"30 Days\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693006,\n                \"value\": \"90 Days\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693004,\n                \"value\": \"1 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693005,\n                \"value\": \"3 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5693002,\n                \"value\": \"Lifetime\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096599,\n                \"value\": \"2 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096600,\n                \"value\": \"4 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096601,\n                \"value\": \"5 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096602,\n                \"value\": \"6 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096603,\n                \"value\": \"7 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096604,\n                \"value\": \"8 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096605,\n                \"value\": \"9 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096606,\n                \"value\": \"10 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096607,\n                \"value\": \"11 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096608,\n                \"value\": \"12 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096609,\n                \"value\": \"13 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096610,\n                \"value\": \"14 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096611,\n                \"value\": \"15 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096612,\n                \"value\": \"16 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096613,\n                \"value\": \"17 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096614,\n                \"value\": \"18 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096615,\n                \"value\": \"19 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096616,\n                \"value\": \"20 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096617,\n                \"value\": \"21 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096618,\n                \"value\": \"22 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096619,\n                \"value\": \"23 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096620,\n                \"value\": \"24 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096621,\n                \"value\": \"25 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096622,\n                \"value\": \"26 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096623,\n                \"value\": \"27 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096624,\n                \"value\": \"28 Year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8096625,\n                \"value\": \"29 Year\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348717,\n        \"name\": \"Warranty (In Years)\",\n        \"key\": \"warranty_in_years\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692737740,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692737740,\n        \"picklist_id\": 195408,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 11960030,\n                \"value\": \"5\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20586347,\n        \"name\": \"Warranty Language\",\n        \"key\": \"warranty_language\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"documentation\": \"String attribute.\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1611153367919,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"element\": {\n            \"min_occurs\": 1,\n            \"min_length\": 1,\n            \"max_length\": 4000\n        },\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348711,\n        \"name\": \"Watt Equivalent\",\n        \"key\": \"watt_equivalent\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729692513252,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729692513252,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626045,\n        \"name\": \"Wattage\",\n        \"key\": \"wattage\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"search_facet\": true,\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617148327325,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1688994925276,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21508440,\n        \"name\": \"Weatherproof\",\n        \"key\": \"weatherproof\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1742828183927,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1742828183927,\n        \"picklist_id\": 214808,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15823391,\n                \"value\": \"Yes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15823392,\n                \"value\": \"No\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20937829,\n        \"name\": \"Website Product Link\",\n        \"key\": \"website\",\n        \"data_type\": \"URL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1662150869850,\n        \"create_user_name\": \"Peter V\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007783,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20755008,\n        \"name\": \"Weight\",\n        \"key\": \"weight\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1636988797247,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348728,\n        \"name\": \"Weight 1 - Sales Unit\",\n        \"key\": \"weight_1_sales_unit\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693081717,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693081717,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20690358,\n        \"name\": \"Weight Capacity\",\n        \"key\": \"weight_capacity\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1627402070261,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640283,\n        \"name\": \"Weldon Flat\",\n        \"key\": \"weldon_flat\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420817,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20626052,\n        \"name\": \"Width\",\n        \"key\": \"width\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1617148327490,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21348727,\n        \"name\": \"Width 1 - Sales Unit\",\n        \"key\": \"width_1_sales_unit\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1729693081084,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1729693081084,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20684368,\n        \"name\": \"Wiring Capacity - Phase Contacts\",\n        \"key\": \"wiring_capacity_phase_contacts\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1626881356439,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640262,\n        \"name\": \"[DCON] Connection Diameter (Decimal Inch)\",\n        \"key\": \"dcon_connection_diameter_decimal_inch\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420348,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640235,\n        \"name\": \"[DCON] Connection Diameter (mm)\",\n        \"key\": \"dcon_connection_diameter_mm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223419655,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640270,\n        \"name\": \"[DC] Cutting Diameter (Decimal Inch)\",\n        \"key\": \"dc_cutting_diameter_decimal_inch\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420609,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640241,\n        \"name\": \"[DC] Cutting Diameter (mm)\",\n        \"key\": \"dc_cutting_diameter_mm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223419892,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640237,\n        \"name\": \"[LF] Functional Length (mm)\",\n        \"key\": \"lf_functional_length_mm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223419680,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640259,\n        \"name\": \"[LU] Maximum Counterbore Depth (Decimal Inch)\",\n        \"key\": \"lu_maximum_counterbore_depth_decimal_inch\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223420348,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20640287,\n        \"name\": \"[LU] Maximum Counterbore Depth (mm)\",\n        \"key\": \"lu_maximum_counterbore_depth_mm\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1620223421201,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536862,\n        \"name\": \"b2bindustrialpreliminarydemo804 Barcode\",\n        \"key\": \"b2bindustrialpreliminarydemo804_barcode\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536858,\n        \"name\": \"b2bindustrialpreliminarydemo804 Body HTML\",\n        \"key\": \"b2bindustrialpreliminarydemo804_body_html\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536849,\n        \"name\": \"b2bindustrialpreliminarydemo804 Combined Listings Role\",\n        \"key\": \"b2bindustrialpreliminarydemo804_combined_listings_role\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"picklist_id\": 216270,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15905868,\n                \"value\": \"CHILD\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905869,\n                \"value\": \"PARENT\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536857,\n        \"name\": \"b2bindustrialpreliminarydemo804 Compare At Price\",\n        \"key\": \"b2bindustrialpreliminarydemo804_compare_at_price\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536867,\n        \"name\": \"b2bindustrialpreliminarydemo804 Cost Per Item\",\n        \"key\": \"b2bindustrialpreliminarydemo804_cost\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536860,\n        \"name\": \"b2bindustrialpreliminarydemo804 Country Code of Origin\",\n        \"key\": \"b2bindustrialpreliminarydemo804_country_code_of_origin\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536851,\n        \"name\": \"b2bindustrialpreliminarydemo804 Fulfillment Service\",\n        \"key\": \"b2bindustrialpreliminarydemo804_fulfillment_service\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536863,\n        \"name\": \"b2bindustrialpreliminarydemo804 Grams\",\n        \"key\": \"b2bindustrialpreliminarydemo804_grams\",\n        \"data_type\": \"INTEGER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536855,\n        \"name\": \"b2bindustrialpreliminarydemo804 Harmonized System Code\",\n        \"key\": \"b2bindustrialpreliminarydemo804_harmonized_system_code\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536859,\n        \"name\": \"b2bindustrialpreliminarydemo804 Image #2\",\n        \"key\": \"b2bindustrialpreliminarydemo804_image_002\",\n        \"data_type\": \"ASSET\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536873,\n        \"name\": \"b2bindustrialpreliminarydemo804 Inventory Management\",\n        \"key\": \"b2bindustrialpreliminarydemo804_inventory_management\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536848,\n        \"name\": \"b2bindustrialpreliminarydemo804 Inventory Policy\",\n        \"key\": \"b2bindustrialpreliminarydemo804_inventory_policy\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"picklist_id\": 216272,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15905873,\n                \"value\": \"continue\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905874,\n                \"value\": \"deny\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536872,\n        \"name\": \"b2bindustrialpreliminarydemo804 Inventory Quantity\",\n        \"key\": \"b2bindustrialpreliminarydemo804_inventory_quantity\",\n        \"data_type\": \"INTEGER\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536854,\n        \"name\": \"b2bindustrialpreliminarydemo804 Metafields\",\n        \"key\": \"b2bindustrialpreliminarydemo804_metafields\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536861,\n        \"name\": \"b2bindustrialpreliminarydemo804 Price\",\n        \"key\": \"b2bindustrialpreliminarydemo804_price\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536853,\n        \"name\": \"b2bindustrialpreliminarydemo804 Product Type\",\n        \"key\": \"b2bindustrialpreliminarydemo804_product_type\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536865,\n        \"name\": \"b2bindustrialpreliminarydemo804 Published Scope\",\n        \"key\": \"b2bindustrialpreliminarydemo804_published_scope\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536856,\n        \"name\": \"b2bindustrialpreliminarydemo804 Requires Shipping\",\n        \"key\": \"b2bindustrialpreliminarydemo804_requires_shipping\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"picklist_id\": 216269,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15905866,\n                \"value\": \"true\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905867,\n                \"value\": \"false\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536869,\n        \"name\": \"b2bindustrialpreliminarydemo804 SKU\",\n        \"key\": \"b2bindustrialpreliminarydemo804_sku\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536868,\n        \"name\": \"b2bindustrialpreliminarydemo804 Shopify Status\",\n        \"key\": \"b2bindustrialpreliminarydemo804_shopify_status\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"picklist_id\": 216271,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15905870,\n                \"value\": \"active\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905871,\n                \"value\": \"archived\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905872,\n                \"value\": \"draft\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536870,\n        \"name\": \"b2bindustrialpreliminarydemo804 Tags\",\n        \"key\": \"b2bindustrialpreliminarydemo804_tags\",\n        \"data_type\": \"TAG\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"picklist_id\": 57207,\n        \"picklist_type\": \"TAG\",\n        \"picklist_values\": [\n            {\n                \"id\": 2821359,\n                \"value\": \"Cactus\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821360,\n                \"value\": \"Flora\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821361,\n                \"value\": \"Plant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821362,\n                \"value\": \"Animal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821363,\n                \"value\": \"Green Snake\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821364,\n                \"value\": \"Machine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821365,\n                \"value\": \"Motor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821367,\n                \"value\": \"red plug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821368,\n                \"value\": \"red\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821370,\n                \"value\": \"green handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821371,\n                \"value\": \"gpi silver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821372,\n                \"value\": \"Clothes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821373,\n                \"value\": \"Women\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821374,\n                \"value\": \"Workout\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821375,\n                \"value\": \"Power Tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821376,\n                \"value\": \"Power Drills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821377,\n                \"value\": \"Drills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821378,\n                \"value\": \"Lithium-Ion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821379,\n                \"value\": \"Cordless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821380,\n                \"value\": \"Air Compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821381,\n                \"value\": \"Tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821382,\n                \"value\": \"Sofa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821383,\n                \"value\": \"chair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821384,\n                \"value\": \"Leather\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821385,\n                \"value\": \"Toys\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821386,\n                \"value\": \"Robot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821387,\n                \"value\": \"Spec Sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821388,\n                \"value\": \"Sell Sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821389,\n                \"value\": \"Lifestyle Image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821390,\n                \"value\": \"remote controlled\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821391,\n                \"value\": \"Sell s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821392,\n                \"value\": \"furniture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821393,\n                \"value\": \"highline\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821394,\n                \"value\": \"Clothing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821395,\n                \"value\": \"womens\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821396,\n                \"value\": \"shirt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821397,\n                \"value\": \"dryfit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821398,\n                \"value\": \"sphere air\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821399,\n                \"value\": \"saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821400,\n                \"value\": \"hand saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821401,\n                \"value\": \"Radiance Hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821402,\n                \"value\": \"tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821403,\n                \"value\": \"power saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821404,\n                \"value\": \"30 Gallon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821405,\n                \"value\": \"power toos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821406,\n                \"value\": \"drills'\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821407,\n                \"value\": \"power dirlls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821408,\n                \"value\": \"winter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821409,\n                \"value\": \"coat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821410,\n                \"value\": \"dragon fly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821411,\n                \"value\": \"winter'\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821412,\n                \"value\": \"Portable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821413,\n                \"value\": \"Electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 2821414,\n                \"value\": \"Main Image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3054167,\n                \"value\": \"bedroom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3169874,\n                \"value\": \"titanium blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3237211,\n                \"value\": \"3d\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3237212,\n                \"value\": \"metal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3672638,\n                \"value\": \"high speed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3757961,\n                \"value\": \"bulk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3758929,\n                \"value\": \"convection\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852408,\n                \"value\": \"yellow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852409,\n                \"value\": \"spe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3852410,\n                \"value\": \"spec\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 3911454,\n                \"value\": \"pins\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071803,\n                \"value\": \"DSN12c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071808,\n                \"value\": \"planter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071807,\n                \"value\": \"plants\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071810,\n                \"value\": \"succulents\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071806,\n                \"value\": \"cactus crazy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071812,\n                \"value\": \"table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071805,\n                \"value\": \"end table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071811,\n                \"value\": \"industrial but not like that\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071809,\n                \"value\": \"living room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4071804,\n                \"value\": \"side table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4219039,\n                \"value\": \"oak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4256504,\n                \"value\": \"handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4278725,\n                \"value\": \"red handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4432327,\n                \"value\": \"full set\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4449860,\n                \"value\": \"boom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4634269,\n                \"value\": \"Barrington\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4853264,\n                \"value\": \"test\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4853265,\n                \"value\": \"tagged\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4867248,\n                \"value\": \"reciprocating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4867265,\n                \"value\": \"piston\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4875421,\n                \"value\": \"new\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4877884,\n                \"value\": \"movable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4882043,\n                \"value\": \"office chair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4924703,\n                \"value\": \"cast iron\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5089048,\n                \"value\": \"compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5092813,\n                \"value\": \"moss green\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5092895,\n                \"value\": \"chemical free\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5197572,\n                \"value\": \"comp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5343701,\n                \"value\": \"Paris\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5382816,\n                \"value\": \"close up\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5609955,\n                \"value\": \"hi viz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5610086,\n                \"value\": \"Draft Inducer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5610087,\n                \"value\": \"toaster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5712116,\n                \"value\": \"18v\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5723592,\n                \"value\": \"Cordless Drill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5723693,\n                \"value\": \"reddot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5726709,\n                \"value\": \"gas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5747253,\n                \"value\": \"green\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5751749,\n                \"value\": \"20V MAX\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5889989,\n                \"value\": \"rubber grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 5912188,\n                \"value\": \"bluestone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6356417,\n                \"value\": \"top mount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6356469,\n                \"value\": \"black handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6357227,\n                \"value\": \"woodpecker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6358825,\n                \"value\": \"summer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6509063,\n                \"value\": \"in review\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6627932,\n                \"value\": \"yello\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6627952,\n                \"value\": \"industrial grade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 6966601,\n                \"value\": \"rubber wheels\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7122548,\n                \"value\": \"jar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7122549,\n                \"value\": \"honey\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 7262928,\n                \"value\": \"metal handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8103938,\n                \"value\": \"steel case\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8125847,\n                \"value\": \"sleveless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8131120,\n                \"value\": \"neon blue\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879677,\n                \"value\": \"art\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879678,\n                \"value\": \"porcelain\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879679,\n                \"value\": \"pottery\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879680,\n                \"value\": \"dessert\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879681,\n                \"value\": \"food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879682,\n                \"value\": \"yogurt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879683,\n                \"value\": \"dia:10.41 cm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879684,\n                \"value\": \"h:1.9 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879685,\n                \"value\": \"capacity:8.5 oz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879686,\n                \"value\": \"h:4.83 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879687,\n                \"value\": \"dia:4.13 in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 8879688,\n                \"value\": \"grey\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117205,\n                \"value\": \"device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117206,\n                \"value\": \"pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117207,\n                \"value\": \"blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117208,\n                \"value\": \"razor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117209,\n                \"value\": \"weapon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117210,\n                \"value\": \"esd safe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117211,\n                \"value\": \"2838fcmp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117212,\n                \"value\": \"irwin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117213,\n                \"value\": \"blue\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9117214,\n                \"value\": \"insulatoz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9147143,\n                \"value\": \"jacket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9249874,\n                \"value\": \"water pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9252174,\n                \"value\": \"power drill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9252176,\n                \"value\": \"ois\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9294508,\n                \"value\": \"black\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525070,\n                \"value\": \"adapter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525071,\n                \"value\": \"electronics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9525072,\n                \"value\": \"plug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530850,\n                \"value\": \"ra27\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530851,\n                \"value\": \"ramset\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530852,\n                \"value\": \"electrical device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530853,\n                \"value\": \"microphone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530854,\n                \"value\": \"computer hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530855,\n                \"value\": \"hardware\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530856,\n                \"value\": \"mouse\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530857,\n                \"value\": \"13 15 17 19\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530858,\n                \"value\": \"brushless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530859,\n                \"value\": \"dewalt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530860,\n                \"value\": \"13 15 17 19\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530862,\n                \"value\": \"t\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530863,\n                \"value\": \"fuel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530864,\n                \"value\": \"milwaukee\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530865,\n                \"value\": \"ryobi\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530866,\n                \"value\": \"lithium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530869,\n                \"value\": \"usa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530870,\n                \"value\": \"charger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530871,\n                \"value\": \"fast\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530872,\n                \"value\": \"2.5\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530873,\n                \"value\": \"135 psi\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530874,\n                \"value\": \"flexvolt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530875,\n                \"value\": \"grass\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530876,\n                \"value\": \"lawn\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530877,\n                \"value\": \"wheel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530878,\n                \"value\": \"toy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530879,\n                \"value\": \"aircraft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530880,\n                \"value\": \"airplane\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530881,\n                \"value\": \"transportation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530882,\n                \"value\": \"vehicle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530883,\n                \"value\": \"open\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530884,\n                \"value\": \"klein\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530885,\n                \"value\": \"dagger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530886,\n                \"value\": \"knife\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530887,\n                \"value\": \"glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530888,\n                \"value\": \"baseball\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530889,\n                \"value\": \"baseball glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530890,\n                \"value\": \"sport\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530891,\n                \"value\": \"cut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530892,\n                \"value\": \"pro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530893,\n                \"value\": \"scissors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530894,\n                \"value\": \"brown\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530895,\n                \"value\": \"16-377\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530896,\n                \"value\": \"g-tek\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530897,\n                \"value\": \"9/l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530898,\n                \"value\": \"polykor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530899,\n                \"value\": \"gut 4x42f\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530900,\n                \"value\": \"pen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530901,\n                \"value\": \"screwdriver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530902,\n                \"value\": \"klein tools\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530903,\n                \"value\": \"glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530904,\n                \"value\": \"baseball\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530905,\n                \"value\": \"baseball glove\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530906,\n                \"value\": \"sport\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530907,\n                \"value\": \"92793pum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530908,\n                \"value\": \"cut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530909,\n                \"value\": \"mcr safety\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530910,\n                \"value\": \"pro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530911,\n                \"value\": \"core\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530912,\n                \"value\": \"helix.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530916,\n                \"value\": \"wiha\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530918,\n                \"value\": \"screwdriver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530919,\n                \"value\": \"fatmax\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530920,\n                \"value\": \"camera\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530921,\n                \"value\": \"video camera\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530922,\n                \"value\": \"bosch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530923,\n                \"value\": \"gex33-6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530924,\n                \"value\": \"light\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530925,\n                \"value\": \"smoke pipe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530927,\n                \"value\": \"3m\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530928,\n                \"value\": \"we\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530929,\n                \"value\": \"hardhat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530930,\n                \"value\": \"helmet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530931,\n                \"value\": \"hardhat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9530932,\n                \"value\": \"helmet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533406,\n                \"value\": \"drill/driver kit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533408,\n                \"value\": \"18v cordless\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533409,\n                \"value\": \"page\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533410,\n                \"value\": \"text\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533411,\n                \"value\": \"file\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533412,\n                \"value\": \"accessories\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533413,\n                \"value\": \"document\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533414,\n                \"value\": \"invoice\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533415,\n                \"value\": \"jewelry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533416,\n                \"value\": \"gemstone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533417,\n                \"value\": \"contact configuration\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533418,\n                \"value\": \"meltric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533419,\n                \"value\": \"catalog\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533420,\n                \"value\": \"63-a4001\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533421,\n                \"value\": \"poly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533422,\n                \"value\": \"480 vac/1 30 vdc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533423,\n                \"value\": \"product color\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533424,\n                \"value\": \"dsn12c receptacle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533425,\n                \"value\": \"environmental rating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533426,\n                \"value\": \"specifications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533427,\n                \"value\": \"white\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533428,\n                \"value\": \"cad diagram\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533429,\n                \"value\": \"diagram\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533430,\n                \"value\": \"1.654\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533431,\n                \"value\": \"date\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533432,\n                \"value\": \"5.33\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533433,\n                \"value\": \"entry hole pattern\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533434,\n                \"value\": \"4.13\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533435,\n                \"value\": \"3.29\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533436,\n                \"value\": \"english\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533437,\n                \"value\": \"2.13\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533438,\n                \"value\": \"4.74\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533439,\n                \"value\": \"person\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533440,\n                \"value\": \"worker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533441,\n                \"value\": \"adult\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533442,\n                \"value\": \"female\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533443,\n                \"value\": \"woman\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533444,\n                \"value\": \"vest\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533445,\n                \"value\": \"lifejacket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533446,\n                \"value\": \"orange\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533447,\n                \"value\": \"lawn mower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533448,\n                \"value\": \"gun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533449,\n                \"value\": \"shears\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533450,\n                \"value\": \"bow\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533451,\n                \"value\": \"tape\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533453,\n                \"value\": \"e50292\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533454,\n                \"value\": \"listed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533455,\n                \"value\": \"ul\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533457,\n                \"value\": \"lr\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533458,\n                \"value\": \"no.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533460,\n                \"value\": \"purple\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533461,\n                \"value\": \"pink\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533462,\n                \"value\": \"kitchen utensil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533463,\n                \"value\": \"tongs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533464,\n                \"value\": \"sword\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533467,\n                \"value\": \"coil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533468,\n                \"value\": \"spiral\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533469,\n                \"value\": \"wire\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533470,\n                \"value\": \"bottle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533471,\n                \"value\": \"cosmetics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533472,\n                \"value\": \"perfume\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533473,\n                \"value\": \"clamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533474,\n                \"value\": \"aluminium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533475,\n                \"value\": \"i\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533476,\n                \"value\": \"water\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533477,\n                \"value\": \"model vrv-4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533478,\n                \"value\": \"vacuum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533479,\n                \"value\": \"relief\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533480,\n                \"value\": \"valve\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533481,\n                \"value\": \"trowel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533482,\n                \"value\": \"mailbox\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533483,\n                \"value\": \"elite\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533484,\n                \"value\": \"star trowel made\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533486,\n                \"value\": \"five\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533487,\n                \"value\": \"quickest maintenance in the industry.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533488,\n                \"value\": \"key features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533489,\n                \"value\": \"silent air portable electric air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533490,\n                \"value\": \"legendary package design offers multiple option\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533491,\n                \"value\": \"fuel efficient doosan d24 engine extends run time to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533492,\n                \"value\": \"engine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533493,\n                \"value\": \"emissions tier level\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533494,\n                \"value\": \"provides over 8,700 cubic inches for tool and accessory\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533495,\n                \"value\": \"configurations to meet your specific needs.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533496,\n                \"value\": \"air compressor with truck mount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533497,\n                \"value\": \"car\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533498,\n                \"value\": \"number\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533499,\n                \"value\": \"industrial 80 gallon air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533500,\n                \"value\": \"horizontal portable twin tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533501,\n                \"value\": \"portable electric air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533502,\n                \"value\": \"number of\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533504,\n                \"value\": \"quiet flow steel tank air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533505,\n                \"value\": \"hook\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533506,\n                \"value\": \"doc's\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533507,\n                \"value\": \"cat 5e\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533508,\n                \"value\": \"cat 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533509,\n                \"value\": \"box\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533510,\n                \"value\": \"6a\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533511,\n                \"value\": \"ammunition\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533512,\n                \"value\": \"grenade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533513,\n                \"value\": \"cable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533514,\n                \"value\": \"wiring\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533515,\n                \"value\": \"truck mount compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533516,\n                \"value\": \"prevent\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533517,\n                \"value\": \"quick\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533518,\n                \"value\": \"discharge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533519,\n                \"value\": \"tank daily\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533520,\n                \"value\": \"regulator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533521,\n                \"value\": \"warning\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533522,\n                \"value\": \"coupler\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533523,\n                \"value\": \"pressure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533524,\n                \"value\": \"tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533525,\n                \"value\": \"danger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533526,\n                \"value\": \"motorcycle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533527,\n                \"value\": \"gx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533528,\n                \"value\": \"bicycle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533530,\n                \"value\": \"m\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533531,\n                \"value\": \"platinum series horizontal tank\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533533,\n                \"value\": \"armored\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533534,\n                \"value\": \"military\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533535,\n                \"value\": \"90l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533537,\n                \"value\": \"ompressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533538,\n                \"value\": \"male\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533539,\n                \"value\": \"man\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533540,\n                \"value\": \"pushing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533541,\n                \"value\": \"jeans\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533542,\n                \"value\": \"honda\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533543,\n                \"value\": \"missile\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533544,\n                \"value\": \"made in the usa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533545,\n                \"value\": \"controls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533546,\n                \"value\": \"jcm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533547,\n                \"value\": \"start\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533548,\n                \"value\": \"p/n umsr-50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533549,\n                \"value\": \"run\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533550,\n                \"value\": \"set posts without mixing!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533551,\n                \"value\": \"net wt. 50 lb (22.7 kg)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533552,\n                \"value\": \"to sain and eyes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533553,\n                \"value\": \"mezcla de concreto de fraguado rápido\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533554,\n                \"value\": \"quikrete\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533555,\n                \"value\": \"setting posts floors patios\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533556,\n                \"value\": \"no. 1004\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533557,\n                \"value\": \"fast-setting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533558,\n                \"value\": \"concrete mix\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533559,\n                \"value\": \"white board\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533560,\n                \"value\": \"t-shirt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533561,\n                \"value\": \"bib\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533562,\n                \"value\": \"cyan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533563,\n                \"value\": \"maruti\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533564,\n                \"value\": \"hot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533565,\n                \"value\": \"canine\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533566,\n                \"value\": \"dragon prime\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533567,\n                \"value\": \"enterprise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533568,\n                \"value\": \"cobra+\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533569,\n                \"value\": \"firearm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533570,\n                \"value\": \"trigger activated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533571,\n                \"value\": \"professional grade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533572,\n                \"value\": \"agarre cómodo\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533573,\n                \"value\": \"calidad profesional\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533574,\n                \"value\": \"comfortable grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533575,\n                \"value\": \"activada por gatillo\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533576,\n                \"value\": \"reduces noise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533577,\n                \"value\": \"powder actuated tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533578,\n                \"value\": \"reduce el ruido\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533579,\n                \"value\": \"triggershot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533580,\n                \"value\": \"lamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533581,\n                \"value\": \"actuated tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533582,\n                \"value\": \"para sujeción al concreto,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533583,\n                \"value\": \"herramienta por pólvara\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533584,\n                \"value\": \"for fastening to concrete. masonry or steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533585,\n                \"value\": \"powder\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533586,\n                \"value\": \"oil-free air compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533587,\n                \"value\": \"alcohol\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533588,\n                \"value\": \"beer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533589,\n                \"value\": \"beverage\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533590,\n                \"value\": \"sphere\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533591,\n                \"value\": \"balloon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533592,\n                \"value\": \"advertisement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533593,\n                \"value\": \"poster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533594,\n                \"value\": \"salads\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533595,\n                \"value\": \"stacks\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533596,\n                \"value\": \"nachos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533597,\n                \"value\": \"drinks\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533598,\n                \"value\": \"bowls\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533599,\n                \"value\": \"for a reason\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533600,\n                \"value\": \"tacos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533601,\n                \"value\": \"burritos\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533602,\n                \"value\": \"our queso\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533603,\n                \"value\": \"make it a meal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533604,\n                \"value\": \"tin\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533605,\n                \"value\": \"can\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533606,\n                \"value\": \"charcoal storage dispenser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533607,\n                \"value\": \"kingsford\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533609,\n                \"value\": \"heavy dutt handles\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533610,\n                \"value\": \"blouse\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533611,\n                \"value\": \"fan motor nominal efficiency\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533613,\n                \"value\": \"oil-injected\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533614,\n                \"value\": \"psig\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533615,\n                \"value\": \"rotary compressor: fixed speed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533616,\n                \"value\": \"hp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533617,\n                \"value\": \"drive motor nominal rating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533618,\n                \"value\": \"fan motor nominal rating (if applicable)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533619,\n                \"value\": \"85.5\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533620,\n                \"value\": \"drive motor nominal efficiency\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533621,\n                \"value\": \"pecker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533622,\n                \"value\": \"tm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533623,\n                \"value\": \"wood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533624,\n                \"value\": \"architecture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533625,\n                \"value\": \"building\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533626,\n                \"value\": \"housing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533627,\n                \"value\": \"house\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533628,\n                \"value\": \"roof\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533629,\n                \"value\": \"u\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533630,\n                \"value\": \"channel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533631,\n                \"value\": \"chart\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533632,\n                \"value\": \"plot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533633,\n                \"value\": \"weldable flange beyond the tabs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533634,\n                \"value\": \"edge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533635,\n                \"value\": \"throughwall scupper (center)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533636,\n                \"value\": \"scupper quote form\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533637,\n                \"value\": \"overflow scupper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533639,\n                \"value\": \"job date:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533640,\n                \"value\": \"choose options:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533641,\n                \"value\": \"job name:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533642,\n                \"value\": \"depth:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533643,\n                \"value\": \"indoors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533644,\n                \"value\": \"interior design\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533645,\n                \"value\": \"bathing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533646,\n                \"value\": \"bathtub\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533647,\n                \"value\": \"tub\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533648,\n                \"value\": \"sink\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533649,\n                \"value\": \"sink faucet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533650,\n                \"value\": \"shower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533651,\n                \"value\": \"creating perfect\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533652,\n                \"value\": \"spaces\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533653,\n                \"value\": \"brush\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533654,\n                \"value\": \"2\\\"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533655,\n                \"value\": \"50mm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533656,\n                \"value\": \"shortcut\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533657,\n                \"value\": \"wooster\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533658,\n                \"value\": \"toutes todas all les las paints peintures pinturas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533659,\n                \"value\": \"adds control\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533660,\n                \"value\": \"mango\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533661,\n                \"value\": \"pusher\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533662,\n                \"value\": \"lock\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533663,\n                \"value\": \"16s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533664,\n                \"value\": \"push\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533665,\n                \"value\": \"screen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533666,\n                \"value\": \"monitor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533667,\n                \"value\": \"p paslode\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533668,\n                \"value\": \"handgun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533670,\n                \"value\": \"appliance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533671,\n                \"value\": \"blow dryer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533674,\n                \"value\": \"straight nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533675,\n                \"value\": \"out\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533676,\n                \"value\": \"pa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533678,\n                \"value\": \"18s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533679,\n                \"value\": \"18 gaune finish nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533680,\n                \"value\": \"paslode\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533682,\n                \"value\": \"18 gauge finish nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533685,\n                \"value\": \"e-scooter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533686,\n                \"value\": \"rifle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533688,\n                \"value\": \"800-634-7373\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533689,\n                \"value\": \"paslode.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533690,\n                \"value\": \"year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533691,\n                \"value\": \"service\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533692,\n                \"value\": \"promise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533694,\n                \"value\": \"free\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533695,\n                \"value\": \"p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533696,\n                \"value\": \"cutlery\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533697,\n                \"value\": \"fork\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533698,\n                \"value\": \"plywood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533699,\n                \"value\": \"lumber\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533700,\n                \"value\": \"construction\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533701,\n                \"value\": \"pryda\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533702,\n                \"value\": \"refrigerator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533703,\n                \"value\": \"cricket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533704,\n                \"value\": \"cricket bat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533705,\n                \"value\": \"bracket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533709,\n                \"value\": \"cpa\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533712,\n                \"value\": \"money\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533713,\n                \"value\": \"wallet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533714,\n                \"value\": \"eat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533715,\n                \"value\": \"tablecloth\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533716,\n                \"value\": \"image not included\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533717,\n                \"value\": \"freepik\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533718,\n                \"value\": \"bag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533719,\n                \"value\": \"handbag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533720,\n                \"value\": \"triminator\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533721,\n                \"value\": \"mini dry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533722,\n                \"value\": \"washer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533723,\n                \"value\": \"heater\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533724,\n                \"value\": \"scoreboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533725,\n                \"value\": \"the safety you need.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533726,\n                \"value\": \"the power you expect.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533727,\n                \"value\": \"lighting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533728,\n                \"value\": \"coffee table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533729,\n                \"value\": \"painting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533730,\n                \"value\": \"table lamp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533731,\n                \"value\": \"dining table\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533732,\n                \"value\": \"tabletop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533733,\n                \"value\": \"tower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533734,\n                \"value\": \"water tower\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533735,\n                \"value\": \"15-1/2\\\" (39. 5cm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533736,\n                \"value\": \"50 lbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533737,\n                \"value\": \"18\\\" (45. 7cm)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533738,\n                \"value\": \"75 lbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533739,\n                \"value\": \"plantoys\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533740,\n                \"value\": \"symbol\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533742,\n                \"value\": \"hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533743,\n                \"value\": \"cowboy hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533744,\n                \"value\": \"sun hat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533746,\n                \"value\": \"belt\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533747,\n                \"value\": \"rattle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533748,\n                \"value\": \"reel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533749,\n                \"value\": \"calibrated draft control\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533750,\n                \"value\": \"above\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533751,\n                \"value\": \"fieldcontrols\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533752,\n                \"value\": \"type \\\"rc\\\"\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533753,\n                \"value\": \"the venting solutions company\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533754,\n                \"value\": \"24/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533756,\n                \"value\": \"led\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533758,\n                \"value\": \"winner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533759,\n                \"value\": \"plantoys balancing tree\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533760,\n                \"value\": \"good toy award 2017\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533761,\n                \"value\": \"good\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533762,\n                \"value\": \"desk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533763,\n                \"value\": \"home decor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533764,\n                \"value\": \"amana\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533765,\n                \"value\": \"carrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533766,\n                \"value\": \"stack\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533767,\n                \"value\": \"blowers oem replacements\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533768,\n                \"value\": \"automatic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533769,\n                \"value\": \"1/25 0.70 115 3450\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533770,\n                \"value\": \"type\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533771,\n                \"value\": \"aladdin steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533772,\n                \"value\": \"amps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533773,\n                \"value\": \"hertz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533774,\n                \"value\": \"cwle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533775,\n                \"value\": \"enclosure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533776,\n                \"value\": \"208-230\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533777,\n                \"value\": \"rotation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533779,\n                \"value\": \"speeds\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533780,\n                \"value\": \"rpm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533781,\n                \"value\": \"couch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533782,\n                \"value\": \"photocell receptacle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533783,\n                \"value\": \"and shorting cap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533784,\n                \"value\": \"hole\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533785,\n                \"value\": \"cond\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533786,\n                \"value\": \"lightsource\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533787,\n                \"value\": \"kitchen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533788,\n                \"value\": \"tap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533789,\n                \"value\": \"bread\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533790,\n                \"value\": \"bathroom\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533791,\n                \"value\": \"room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533792,\n                \"value\": \"shower faucet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533793,\n                \"value\": \"domestic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533794,\n                \"value\": \"hatco\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533795,\n                \"value\": \"foodservice equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533796,\n                \"value\": \"february i, 2022\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533797,\n                \"value\": \"price list\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533798,\n                \"value\": \"drawer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533799,\n                \"value\": \"the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533800,\n                \"value\": \"multi contact grill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533801,\n                \"value\": \"mcg series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533802,\n                \"value\": \"parts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533803,\n                \"value\": \"model name\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533804,\n                \"value\": \"common parts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533805,\n                \"value\": \"caution\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533806,\n                \"value\": \"replacement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533807,\n                \"value\": \"replacement parts list\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533808,\n                \"value\": \"register online!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533809,\n                \"value\": \"s'inscrire en ligne!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533810,\n                \"value\": \"installation and operating manual\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533811,\n                \"value\": \"mcg series série mcg\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533812,\n                \"value\": \"grills multi-contact\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533813,\n                \"value\": \"advertencia\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533814,\n                \"value\": \"avertissement\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533815,\n                \"value\": \"manuel d'installation et d'utilisation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533816,\n                \"value\": \"multi contact grills\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533817,\n                \"value\": \"distribution over the entire\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533818,\n                \"value\": \"that gives you the flexibility to grill paninis, sandwiches\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533819,\n                \"value\": \"a new addition to our light cooking line of equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533820,\n                \"value\": \"quantity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533821,\n                \"value\": \"patented heating element pack provides exceptional heat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533822,\n                \"value\": \"standard features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533823,\n                \"value\": \"name a few, all on the same piece of equipment!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533824,\n                \"value\": \"project\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533825,\n                \"value\": \"item #\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533826,\n                \"value\": \"burger\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533827,\n                \"value\": \"cooktop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533828,\n                \"value\": \"multi-contact grill\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533829,\n                \"value\": \"bbq\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533830,\n                \"value\": \"cooking\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533831,\n                \"value\": \"grilling\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533832,\n                \"value\": \"to this warranty, the equipment must be registered on-line at www.hennypenny.com within ten (10)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533833,\n                \"value\": \"the original purchaser from an authorized distributor) only for henny penny equipment and replacement parts:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533834,\n                \"value\": \"this limited warranty will not be honored by henny penny unless the on-line\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533835,\n                \"value\": \"registration is completed within that time period.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533836,\n                \"value\": \"any part of 3 new equipment, except baskets, lamps, fuses, and door gaskets for combi ovens\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533837,\n                \"value\": \"subject to the following conditions, henny penny corporation makes the following limited warranties to the original purchase (or to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533838,\n                \"value\": \"limited warranty for henny penny equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533839,\n                \"value\": \"child\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533840,\n                \"value\": \"girl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533841,\n                \"value\": \"face\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533842,\n                \"value\": \"head\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533843,\n                \"value\": \"faster cook times, more flavor and nutrition\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533844,\n                \"value\": \"oil performs better, lasts longer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533845,\n                \"value\": \"operators around the world earn billions ever since.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533846,\n                \"value\": \"henny penny introduced commercial pressure frying\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533847,\n                \"value\": \"ago. and we've been helping restaurants and deli\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533848,\n                \"value\": \"pressure fryers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533849,\n                \"value\": \"frying under pressure-around 12 psi-enables faster cooking at lower oil\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533850,\n                \"value\": \"temperatures than conventional openfrying. pressure frying also seals in the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533851,\n                \"value\": \"faster cooking, longer oil life, consistent taste and texture, load after load\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533852,\n                \"value\": \"to the foodservice industry more than 50 years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533853,\n                \"value\": \"fm05-011s\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533854,\n                \"value\": \"model 500, 561 1 & 6 600\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533855,\n                \"value\": \"henny penny pressure fryers have\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533856,\n                \"value\": \"pfe 561 electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533857,\n                \"value\": \"pressure also seals in food's natural\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533858,\n                \"value\": \"henny penny first introduced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533859,\n                \"value\": \"perfect pressure seal every time.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533860,\n                \"value\": \"juices and reduces the amount\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533861,\n                \"value\": \"separate pumps and pans, no\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533862,\n                \"value\": \"foodservice industry more than 50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533863,\n                \"value\": \"fountain\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533864,\n                \"value\": \"gas pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533865,\n                \"value\": \"pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533866,\n                \"value\": \"p.1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533867,\n                \"value\": \"assembly instructions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533868,\n                \"value\": \"armchair\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533869,\n                \"value\": \"cushion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533870,\n                \"value\": \"size minus 1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533871,\n                \"value\": \"size plus 1-1/4 for 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533872,\n                \"value\": \"size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533873,\n                \"value\": \"listed size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533874,\n                \"value\": \"2-11/16 for 4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533875,\n                \"value\": \"size plus 1-1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533876,\n                \"value\": \"for 6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533877,\n                \"value\": \"size plus 1-1/2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533878,\n                \"value\": \"2-5/8 for 2-1/4\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533879,\n                \"value\": \"crib\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533880,\n                \"value\": \"infant bed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533881,\n                \"value\": \"grille\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533882,\n                \"value\": \"plan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533883,\n                \"value\": \"area\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533884,\n                \"value\": \"3-3/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533885,\n                \"value\": \"5-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533886,\n                \"value\": \"2-5/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533887,\n                \"value\": \"submittal drawing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533888,\n                \"value\": \"multi-angled fins are individually welded\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533889,\n                \"value\": \"15-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533890,\n                \"value\": \"13-1/8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533891,\n                \"value\": \"knot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533892,\n                \"value\": \"3d filaments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533893,\n                \"value\": \"skilcraft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533894,\n                \"value\": \"make/model\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533895,\n                \"value\": \"premium and intuitive control interface for ease of use.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533896,\n                \"value\": \"comfortable operation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533897,\n                \"value\": \"platinum\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533898,\n                \"value\": \"5-in-1 fiber optic stripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533899,\n                \"value\": \"adjustments are required\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533900,\n                \"value\": \"cushioned grip handles\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533901,\n                \"value\": \"scissors are designed to be versatile and economical without\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533902,\n                \"value\": \"pre-set design ensures all cavites are precision set and no\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533903,\n                \"value\": \"five cavity design allows for use with a multitude of fiber\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533904,\n                \"value\": \"fiber optic stripper and scissors\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533905,\n                \"value\": \"strips\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533906,\n                \"value\": \"and stranded,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533907,\n                \"value\": \"comfort grip,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533908,\n                \"value\": \"wire strippers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533909,\n                \"value\": \"strip solid\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533910,\n                \"value\": \"expectations of professionals, the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533911,\n                \"value\": \"right handed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533912,\n                \"value\": \"use left or\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533913,\n                \"value\": \"new prostrip wire strippers deliver\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533914,\n                \"value\": \"designed to meet the demanding\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533915,\n                \"value\": \"feel the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533916,\n                \"value\": \"replacing the blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533917,\n                \"value\": \"instruction sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533918,\n                \"value\": \"select\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533919,\n                \"value\": \"on the underside of the stripper, push down and forward on the cartridge (b) to\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533921,\n                \"value\": \"p/n 15028\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533922,\n                \"value\": \"pro strip 25r\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533923,\n                \"value\": \"proper cable stripper location per\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533924,\n                \"value\": \"cartridge p/n 15029c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533925,\n                \"value\": \"sideboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533926,\n                \"value\": \"rug\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533927,\n                \"value\": \"stainless steel rollers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533928,\n                \"value\": \"standard 1/4\\\" cable preparation eliminating\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533929,\n                \"value\": \"coaxial cable stripper designed for the pro-\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533930,\n                \"value\": \"the need for tedious, time consuming blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533931,\n                \"value\": \"description\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533932,\n                \"value\": \"quick change blade\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533933,\n                \"value\": \"perfect for 25 awg\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533934,\n                \"value\": \"cartridges are factory pre -set for industry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533935,\n                \"value\": \"fax: 800.749.5784\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533936,\n                \"value\": \"over\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533937,\n                \"value\": \"in business\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533938,\n                \"value\": \"industries\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533939,\n                \"value\": \"we make connections ez!™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533940,\n                \"value\": \"years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533942,\n                \"value\": \"2 amp current interrupting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533943,\n                \"value\": \"2a/7.5a, 480vac or 130vdc max\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533944,\n                \"value\": \"meltric dsn12c\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533946,\n                \"value\": \"multipin, ip66/67/69\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533947,\n                \"value\": \"7.5 amp non-current interrupting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533948,\n                \"value\": \"receptacle/connector\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533949,\n                \"value\": \"bed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533950,\n                \"value\": \"bed sheet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533951,\n                \"value\": \"blanket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533952,\n                \"value\": \"book\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533953,\n                \"value\": \"publication\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533954,\n                \"value\": \"oem replacements blowers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533955,\n                \"value\": \"venting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533956,\n                \"value\": \"contractor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533957,\n                \"value\": \"combustion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533958,\n                \"value\": \"improving indoor environments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533959,\n                \"value\": \"draft\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533960,\n                \"value\": \"reference guide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533961,\n                \"value\": \"note: for burner inputs up to 2.0 gph at\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533962,\n                \"value\": \"installer supplied items:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533963,\n                \"value\": \"this product is designed for use on the following bumers, for the purpose of routing combustion air directly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533964,\n                \"value\": \"for routing oil line\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533965,\n                \"value\": \"1- flow restrictor pan\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533966,\n                \"value\": \"duct piping and elbows\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533967,\n                \"value\": \"items included inkit:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533968,\n                \"value\": \"1-4\\\" vrv\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533969,\n                \"value\": \"combustion air system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533970,\n                \"value\": \"to the burner, with the added safety feature of the reliefvalve.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533971,\n                \"value\": \"conveyor toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533972,\n                \"value\": \"power saving thermostat for energy savings during non-peak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533973,\n                \"value\": \"the hatco toast king conveyorized toaster combines\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533974,\n                \"value\": \"serving times\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533975,\n                \"value\": \"performance to handle peak serving periods.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533976,\n                \"value\": \"toast storage area keeps bread warm and dry\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533977,\n                \"value\": \"citrus fruit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533978,\n                \"value\": \"fruit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533979,\n                \"value\": \"produce\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533980,\n                \"value\": \"caution hot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533982,\n                \"value\": \"attention chaud\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533983,\n                \"value\": \"toast king® electric\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533984,\n                \"value\": \"bucket\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533985,\n                \"value\": \"shaker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533986,\n                \"value\": \"business card\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533987,\n                \"value\": \"paper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533988,\n                \"value\": \"package use and static dehumidification\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533989,\n                \"value\": \"contents\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533990,\n                \"value\": \"chicago atlanta dallas\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533991,\n                \"value\": \"los angeles minneapolis nyc/phila\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533993,\n                \"value\": \"uline\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533994,\n                \"value\": \"do not eat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533995,\n                \"value\": \"desiccant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533996,\n                \"value\": \"2 unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533997,\n                \"value\": \"contents 2 unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533998,\n                \"value\": \"tightly packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9533999,\n                \"value\": \"oxygen absorber charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534000,\n                \"value\": \"get a quote today: 1-800-446-6650 customerservice@ desiccare.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534001,\n                \"value\": \"tightly\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534002,\n                \"value\": \"ft-50\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534003,\n                \"value\": \"loosely packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534004,\n                \"value\": \"packed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534005,\n                \"value\": \"ft-30\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534006,\n                \"value\": \"ft-20\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534007,\n                \"value\": \"note for burner inputs up to 1.5 gph at 100 psi input pressure or equivalent.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534008,\n                \"value\": \"model: cas-2b-90e furnace boot™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534009,\n                \"value\": \"the furnace boot™ model cas-2b-90e is for use only on the designated burner(s) as described in these\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534010,\n                \"value\": \"instructions only when the specific bumer includes this fumace boot™ when shipped from the burner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534011,\n                \"value\": \"us\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534012,\n                \"value\": \"directly to the burner, with the added safety feature of the vacuum relief valve.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534013,\n                \"value\": \"furnace boot™\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534014,\n                \"value\": \"this product is designed for use on the beckett afg burners for the purpose ofrouting combustion air\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534015,\n                \"value\": \"proximates\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534016,\n                \"value\": \"31.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534017,\n                \"value\": \"33.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534019,\n                \"value\": \"nutrient profile\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534020,\n                \"value\": \"ingredients\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534021,\n                \"value\": \"grass-fed beef dry dog food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534022,\n                \"value\": \"36.00\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534023,\n                \"value\": \"calories from\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534024,\n                \"value\": \"energy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534025,\n                \"value\": \"dog\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534026,\n                \"value\": \"mammal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534027,\n                \"value\": \"pet\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534028,\n                \"value\": \"bowl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534029,\n                \"value\": \"suitable for all breeds.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534030,\n                \"value\": \"small kibble size,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534031,\n                \"value\": \"cup\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534032,\n                \"value\": \"at open farm® we believe that great nutrition is rooted in the integrity of our ingredients. our mission\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534033,\n                \"value\": \"produced in a way that respects animal welfare and the environment. by working exclusively with farmers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534034,\n                \"value\": \"fruits\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534035,\n                \"value\": \"natural superfoods\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534036,\n                \"value\": \"locally sourced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534037,\n                \"value\": \"who share our commitment to exceptional quality and sustainable practices, we can make better food\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534039,\n                \"value\": \"grass-fed beef,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534040,\n                \"value\": \"our farm to bowl ingredients\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534041,\n                \"value\": \"for your pets, while also doing some good for family farms, farm animals and the environment.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534042,\n                \"value\": \"locally\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534043,\n                \"value\": \"ingredient back to the source.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534044,\n                \"value\": \"use the lot code to trace every\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534045,\n                \"value\": \"do some go\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534046,\n                \"value\": \"our farm to bowl ingredien\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534047,\n                \"value\": \"raised at pasture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534048,\n                \"value\": \"full ingredient transparency.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534049,\n                \"value\": \"fruits & vegetables\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534050,\n                \"value\": \"without antibiotics\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534051,\n                \"value\": \"herbal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534052,\n                \"value\": \"herbs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534053,\n                \"value\": \"100%\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534054,\n                \"value\": \"diet, free from antibiotics &\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534055,\n                \"value\": \"sourced\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534056,\n                \"value\": \"humanely\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534057,\n                \"value\": \"farm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534058,\n                \"value\": \"beef raised on a grass-fed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534059,\n                \"value\": \"beef\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534060,\n                \"value\": \"grass-fed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534061,\n                \"value\": \"ethically sourced from farm to bowl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534062,\n                \"value\": \"waste stream to get started\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534063,\n                \"value\": \"2. search the open farm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534064,\n                \"value\": \"1. join at terracycle.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534065,\n                \"value\": \"brunch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534066,\n                \"value\": \"coffee\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534067,\n                \"value\": \"coffee cup\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534068,\n                \"value\": \"meal\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534069,\n                \"value\": \"pizza\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534070,\n                \"value\": \"bra\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534071,\n                \"value\": \"super\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534072,\n                \"value\": \"flakes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534073,\n                \"value\": \"corn\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534074,\n                \"value\": \"alpha\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534075,\n                \"value\": \"ice\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534076,\n                \"value\": \"qua\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534077,\n                \"value\": \"toasties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534078,\n                \"value\": \"sugar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534079,\n                \"value\": \"toasted\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534080,\n                \"value\": \"toast-king®\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534081,\n                \"value\": \"use of replacement parts other than those supplied\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534082,\n                \"value\": \"important note:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534083,\n                \"value\": \"best in class\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534084,\n                \"value\": \"dealers, consultants\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534085,\n                \"value\": \"hot food holding equipment, also voted #1 by operators.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534086,\n                \"value\": \"voted #1 by\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534087,\n                \"value\": \"overall best in class by category\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534088,\n                \"value\": \"see the back for our overall best in class in the heavy equipment cate gory for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534089,\n                \"value\": \"hatco won overall bestin class in the light equipment category for conveyor toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534090,\n                \"value\": \"and operators\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534091,\n                \"value\": \"operator's unique foodservice needs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534092,\n                \"value\": \"designer warm red and designer black\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534093,\n                \"value\": \"to match your décor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534094,\n                \"value\": \"toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534095,\n                \"value\": \"the king of toasters\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534096,\n                \"value\": \"production capabilities\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534097,\n                \"value\": \"toast and other bread products every\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534098,\n                \"value\": \"customized solutions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534099,\n                \"value\": \"fresh appearance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534100,\n                \"value\": \"benefits\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534101,\n                \"value\": \"features\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534102,\n                \"value\": \"per hour\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534104,\n                \"value\": \"trh-60\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534105,\n                \"value\": \"multiple metal sheathed\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534106,\n                \"value\": \"temperature\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534107,\n                \"value\": \"toasting ability\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534108,\n                \"value\": \"bottom heating elements, a multi-speed two-directional\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534109,\n                \"value\": \"there's only one #1 tm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534110,\n                \"value\": \"on the conveyor and activates the unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534111,\n                \"value\": \"ensure toast color uniformity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534112,\n                \"value\": \"footwear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534113,\n                \"value\": \"shoe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534114,\n                \"value\": \"sneaker\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534115,\n                \"value\": \"mat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534116,\n                \"value\": \"vase\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534117,\n                \"value\": \"potted plant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534118,\n                \"value\": \"computer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534119,\n                \"value\": \"laptop\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534120,\n                \"value\": \"pc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534121,\n                \"value\": \"dining room\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534122,\n                \"value\": \"scale 1:1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534123,\n                \"value\": \"proudy designed and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534124,\n                \"value\": \"hot spot conference\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534125,\n                \"value\": \"l:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534126,\n                \"value\": \"video conferencing & teamwork strategies\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534127,\n                \"value\": \"telemeet moon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534128,\n                \"value\": \"telemeet kayak\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534129,\n                \"value\": \"telemeet connect\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534130,\n                \"value\": \"cafeteria\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534131,\n                \"value\": \"restaurant\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534132,\n                \"value\": \"diaper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534133,\n                \"value\": \"khaki\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534135,\n                \"value\": \"toothbrush\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534136,\n                \"value\": \"platinumtools.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534137,\n                \"value\": \"fla\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534138,\n                \"value\": \"mobile phone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534139,\n                \"value\": \"phone\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534140,\n                \"value\": \"no pd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534141,\n                \"value\": \"simulate poe device\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534142,\n                \"value\": \"poe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534143,\n                \"value\": \"tps200 poe++ tester\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534144,\n                \"value\": \"active\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534145,\n                \"value\": \"power in\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534146,\n                \"value\": \"power out\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534147,\n                \"value\": \"off\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534148,\n                \"value\": \"dc\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534149,\n                \"value\": \"on\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534150,\n                \"value\": \"first aid\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534151,\n                \"value\": \"net chaser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534153,\n                \"value\": \"calendar\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534154,\n                \"value\": \"velcro ties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534155,\n                \"value\": \"color\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534156,\n                \"value\": \"v series\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534157,\n                \"value\": \"v850\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534158,\n                \"value\": \"cable ties\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534159,\n                \"value\": \"max saze\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534160,\n                \"value\": \"with\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534161,\n                \"value\": \"brightness\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534162,\n                \"value\": \"estimated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534163,\n                \"value\": \"energy cost\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534165,\n                \"value\": \"per year\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534166,\n                \"value\": \"60w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534167,\n                \"value\": \"9w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534168,\n                \"value\": \"dimmable\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534169,\n                \"value\": \"limitless options for the following applications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534170,\n                \"value\": \"led a-lamps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534171,\n                \"value\": \"enhances colors of focal point while\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534172,\n                \"value\": \"general lighting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534173,\n                \"value\": \"very low heat generation\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534174,\n                \"value\": \"tcp.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534175,\n                \"value\": \"maintenance costs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534176,\n                \"value\": \"minimizes replacement and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534177,\n                \"value\": \"milk\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534178,\n                \"value\": \"lightbulb\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534179,\n                \"value\": \"strap\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534180,\n                \"value\": \"material specifications\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534181,\n                \"value\": \"super anchor safety®\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534182,\n                \"value\": \"tie-off straps\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534183,\n                \"value\": \"fig.2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534184,\n                \"value\": \"cinch method\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534185,\n                \"value\": \"version\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534186,\n                \"value\": \"d-ring\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534187,\n                \"value\": \"instruction/specification manual 02-2020\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534188,\n                \"value\": \"necklace\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534189,\n                \"value\": \"screw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534190,\n                \"value\": \"cross\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534191,\n                \"value\": \"lab coat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534192,\n                \"value\": \"lightweight protection for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534193,\n                \"value\": \"particulates in non-hazardous environments.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534194,\n                \"value\": \"workers against dirt and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534195,\n                \"value\": \"guard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534196,\n                \"value\": \"enviro\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534197,\n                \"value\": \"available garments\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534198,\n                \"value\": \"polypropylene\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534199,\n                \"value\": \"international\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534200,\n                \"value\": \"low-cost solution for protecting\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534201,\n                \"value\": \"economical protection against dirt, grime and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534202,\n                \"value\": \"paint container\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534203,\n                \"value\": \"roll-on moisture barrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534204,\n                \"value\": \"to 100% rh and 14 ph\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534205,\n                \"value\": \"liquishield 100\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534206,\n                \"value\": \"on m isture barrier\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534207,\n                \"value\": \"traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534208,\n                \"value\": \"s moisture vapor emissions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534209,\n                \"value\": \"up to 100% rh and 14 ph\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534210,\n                \"value\": \"controls moisture vapor emissions\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534211,\n                \"value\": \"by traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534212,\n                \"value\": \"nailing can be eliminated and tedous board replacement is made\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534213,\n                \"value\": \"then use the kool glide pro-w to activate the tape right through\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534214,\n                \"value\": \"now kool glide® technology for hard surfaces\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534215,\n                \"value\": \"green!\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534216,\n                \"value\": \"kool glide to reactivate the adhesive and redo the job\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534217,\n                \"value\": \"the board. this system uses patented technology to remotely\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534218,\n                \"value\": \"no odor. no mess. no kidding.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534219,\n                \"value\": \"kool glide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534220,\n                \"value\": \"easy just put the board in place over the kool glide utility tape.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534221,\n                \"value\": \"the standard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534222,\n                \"value\": \"warranted to be free from defects in material or\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534223,\n                \"value\": \"warranty & exchange policy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534224,\n                \"value\": \"warranty:\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534225,\n                \"value\": \"kool glide® tools may be sent to traxx\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534226,\n                \"value\": \"workmanship for one year from date of purchase.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534227,\n                \"value\": \"for exchange. an rmf (return merchandise\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534228,\n                \"value\": \"upon receipt of the tool, a factory reconditioned,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534229,\n                \"value\": \"form) may be obtained on-line at\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534230,\n                \"value\": \"an rmf must accompany all returns.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534231,\n                \"value\": \"fully-upgraded tool will be sent to you.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534232,\n                \"value\": \"lower internal operating temp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534233,\n                \"value\": \"no burning or damaging carpets\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534234,\n                \"value\": \"carpet seaming tool and system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534235,\n                \"value\": \"great for repairs\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534236,\n                \"value\": \"simple, safe,\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534237,\n                \"value\": \"heatless carpet seaming tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534238,\n                \"value\": \"seam tapes and accessories\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534239,\n                \"value\": \"no heat distortion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534240,\n                \"value\": \"seam tapes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534241,\n                \"value\": \"weaving\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534242,\n                \"value\": \"mxu-2132-9p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534243,\n                \"value\": \"mxu-2120-6p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534244,\n                \"value\": \"mxu-2132-6p\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534245,\n                \"value\": \"virtually impervious to moisture\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534246,\n                \"value\": \"resists swelling and delamination\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534247,\n                \"value\": \"engineered underlayment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534248,\n                \"value\": \"exterior grade glue lamination\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534249,\n                \"value\": \"part no.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534250,\n                \"value\": \"dimensionally accurate to 1/32 of an inch\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534251,\n                \"value\": \"ensure the absence of hidden voids.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534252,\n                \"value\": \"meet or exceeds cr-104 and cr-105 standards\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534253,\n                \"value\": \"commercial\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534254,\n                \"value\": \"residential\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534255,\n                \"value\": \"light traffic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534256,\n                \"value\": \"application guidelines\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534257,\n                \"value\": \"duty\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534258,\n                \"value\": \"engineered carpet gripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534259,\n                \"value\": \"medium\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534260,\n                \"value\": \"more pins per four feet of strip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534261,\n                \"value\": \"true size wood\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534262,\n                \"value\": \"dynamite\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534263,\n                \"value\": \"maxximus® engineered carpet-gripper\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534264,\n                \"value\": \"air conditioner\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534265,\n                \"value\": \"energy star\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534266,\n                \"value\": \"intelligence\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534267,\n                \"value\": \"boy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534268,\n                \"value\": \"un to 98.5% effic ient\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534269,\n                \"value\": \"savings without sacrificing.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534270,\n                \"value\": \"teen\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534271,\n                \"value\": \"a carrier gas furnace\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534272,\n                \"value\": \"warm your home with\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534273,\n                \"value\": \"carrier offers real choices for\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534274,\n                \"value\": \"efficient and reliable home comfort\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534275,\n                \"value\": \"turn to the experts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534276,\n                \"value\": \"rpc plate\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534277,\n                \"value\": \"rcc cartridge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534278,\n                \"value\": \"insert\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534279,\n                \"value\": \"rak arbor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534280,\n                \"value\": \"cn08\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534281,\n                \"value\": \"фd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534282,\n                \"value\": \"zmac-v unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534283,\n                \"value\": \"zmac-v cartridge\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534284,\n                \"value\": \"insert 6mp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534285,\n                \"value\": \"l\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534286,\n                \"value\": \"фс\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534287,\n                \"value\": \"insert 10mp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534288,\n                \"value\": \"rotor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534289,\n                \"value\": \"cat.no.9922\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534290,\n                \"value\": \"e\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534291,\n                \"value\": \"zmac-v emac dj rac вас\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534292,\n                \"value\": \"nikken\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534293,\n                \"value\": \"nikken boring system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534294,\n                \"value\": \"nikken kosakusho works, ltd.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534295,\n                \"value\": \"gold\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534296,\n                \"value\": \"nc total tooling system\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534297,\n                \"value\": \"cat.no.303k\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534298,\n                \"value\": \"foam\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534299,\n                \"value\": \"brick\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534300,\n                \"value\": \"rubber eraser\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534301,\n                \"value\": \"bench\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534302,\n                \"value\": \"chain saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534303,\n                \"value\": \"adjustable automatic chain oiler\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534304,\n                \"value\": \"interlocking safety trigger and hand guard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534305,\n                \"value\": \"power cutter hand saw\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534306,\n                \"value\": \"bucking cleat\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534307,\n                \"value\": \"cut capacity\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534308,\n                \"value\": \"radiance\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534310,\n                \"value\": \"large assist handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534314,\n                \"value\": \"REMOVE\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534379,\n                \"value\": \"slim\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534380,\n                \"value\": \"spin-on oil separation system allows for the easiest and\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534381,\n                \"value\": \"the industry's largest and deepest, full-length toolbox\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534382,\n                \"value\": \"blackboard\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534383,\n                \"value\": \"spf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9534385,\n                \"value\": \"ning your new\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609500,\n                \"value\": \"ne\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609501,\n                \"value\": \"w\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9609502,\n                \"value\": \"w2\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689428,\n                \"value\": \"select attributes\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689429,\n                \"value\": \"accessory size\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689430,\n                \"value\": \"arm height (from floor)\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689431,\n                \"value\": \"update date\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689432,\n                \"value\": \"product completeness\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689433,\n                \"value\": \"name\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689434,\n                \"value\": \"save\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 9689435,\n                \"value\": \"action shot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10016148,\n                \"value\": \"snips\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10016157,\n                \"value\": \"sharp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10017834,\n                \"value\": \"steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10017860,\n                \"value\": \"shelf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10018768,\n                \"value\": \"carbide\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 10927405,\n                \"value\": \"shrink fit unit\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11165107,\n                \"value\": \"plastic grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193681,\n                \"value\": \"lasts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193682,\n                \"value\": \"world's\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193683,\n                \"value\": \"best\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11193684,\n                \"value\": \"poop fighter\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226132,\n                \"value\": \"measurements\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226133,\n                \"value\": \"xl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226134,\n                \"value\": \"2xl\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226135,\n                \"value\": \"lakeland\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226136,\n                \"value\": \"disposable and chemical clothing\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226137,\n                \"value\": \"sizing charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226138,\n                \"value\": \"lakeland.com\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226139,\n                \"value\": \"sizing charts\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226140,\n                \"value\": \"waist\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226141,\n                \"value\": \"turnout gear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11226239,\n                \"value\": \"carbide steel\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11274260,\n                \"value\": \"lyon\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11276406,\n                \"value\": \"chrome\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11321785,\n                \"value\": \"leaf\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11327723,\n                \"value\": \"grip\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11586864,\n                \"value\": \"outdoor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11586865,\n                \"value\": \"new image\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11816612,\n                \"value\": \"child proof\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11859672,\n                \"value\": \"esd\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11882762,\n                \"value\": \"proto\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904595,\n                \"value\": \"be the\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904596,\n                \"value\": \"1jn.\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11904597,\n                \"value\": \"god called\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960380,\n                \"value\": \"13.7 years\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960381,\n                \"value\": \"warm\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 11960382,\n                \"value\": \"life\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12167539,\n                \"value\": \"top mount handle\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12248206,\n                \"value\": \"extra light\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12320652,\n                \"value\": \"insulated\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12340069,\n                \"value\": \"new tag\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12383815,\n                \"value\": \"diy\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405882,\n                \"value\": \"nst prime\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405883,\n                \"value\": \"poolife\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12476267,\n                \"value\": \"application shot\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953135,\n                \"value\": \"brad nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953136,\n                \"value\": \"senco\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953175,\n                \"value\": \"pin nailer\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953176,\n                \"value\": \"tn21l1\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953177,\n                \"value\": \"finish pro 30xp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953178,\n                \"value\": \"23\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953179,\n                \"value\": \"neverlube oil free tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953180,\n                \"value\": \"f-18xp\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953181,\n                \"value\": \"18v li-ion\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953182,\n                \"value\": \"18 brad nails\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953455,\n                \"value\": \"crescent\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953456,\n                \"value\": \"axe\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14953457,\n                \"value\": \"rt410\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966519,\n                \"value\": \"Nail gun\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966520,\n                \"value\": \"pneumatic\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966526,\n                \"value\": \"red compressor\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966527,\n                \"value\": \"industrial tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966528,\n                \"value\": \"garage equipment\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966529,\n                \"value\": \"portable air pump\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966530,\n                \"value\": \"high-pressure\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966531,\n                \"value\": \"pneumatic tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966532,\n                \"value\": \"workshop gear\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966533,\n                \"value\": \"hand tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966534,\n                \"value\": \"grip tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966535,\n                \"value\": \"industrial pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966536,\n                \"value\": \"metalworking\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966537,\n                \"value\": \"red pliers\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966538,\n                \"value\": \"cutting tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 14966539,\n                \"value\": \"hardware tool\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905665,\n                \"value\": \"pink lily\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905877,\n                \"value\": \"18.\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536850,\n        \"name\": \"b2bindustrialpreliminarydemo804 Taxable\",\n        \"key\": \"b2bindustrialpreliminarydemo804_taxable\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"picklist_id\": 216273,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15905875,\n                \"value\": \"true\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905876,\n                \"value\": \"false\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536864,\n        \"name\": \"b2bindustrialpreliminarydemo804 Template Suffix\",\n        \"key\": \"b2bindustrialpreliminarydemo804_template_suffix\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536866,\n        \"name\": \"b2bindustrialpreliminarydemo804 Vendor\",\n        \"key\": \"b2bindustrialpreliminarydemo804_vendor\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536852,\n        \"name\": \"b2bindustrialpreliminarydemo804 Weight\",\n        \"key\": \"b2bindustrialpreliminarydemo804_shopify_weight\",\n        \"data_type\": \"DECIMAL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536871,\n        \"name\": \"b2bindustrialpreliminarydemo804 Weight Unit\",\n        \"key\": \"b2bindustrialpreliminarydemo804_weight_unit\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430528078,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430528078,\n        \"picklist_id\": 216268,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 15905862,\n                \"value\": \"g\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905863,\n                \"value\": \"kg\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905864,\n                \"value\": \"oz\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 15905865,\n                \"value\": \"lb\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20937828,\n        \"name\": \"company-website\",\n        \"key\": \"companywebsite\",\n        \"data_type\": \"URL\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1662150829700,\n        \"create_user_name\": \"Peter V\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007783,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536891,\n        \"name\": \"custom_fields_brand\",\n        \"key\": \"b2bindustrialpreliminarydemo804_custom_fields_brand\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430542065,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430542065,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536889,\n        \"name\": \"custom_fields_cylinder_material\",\n        \"key\": \"b2bindustrialpreliminarydemo804_custom_fields_cylinder_material\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430542065,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430542065,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536888,\n        \"name\": \"custom_fields_input_voltage\",\n        \"key\": \"b2bindustrialpreliminarydemo804_custom_fields_input_voltage\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430542065,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430542065,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536893,\n        \"name\": \"custom_fields_no_of_stages\",\n        \"key\": \"b2bindustrialpreliminarydemo804_custom_fields_no_of_stages\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430542065,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430542065,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536892,\n        \"name\": \"custom_fields_psi\",\n        \"key\": \"b2bindustrialpreliminarydemo804_custom_fields_psi\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430542065,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430542065,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536894,\n        \"name\": \"custom_fields_tank_style\",\n        \"key\": \"b2bindustrialpreliminarydemo804_custom_fields_tank_style\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430542065,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430542065,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21536890,\n        \"name\": \"custom_lacrosse_test\",\n        \"key\": \"b2bindustrialpreliminarydemo804_custom_lacrosse_test\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1745430542065,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1745430542065,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21173547,\n        \"name\": \"dfdfdfd\",\n        \"key\": \"dfdfdfd\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1700568500703,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1700568500703,\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20813045,\n        \"name\": \"dm-picklist-a\",\n        \"key\": \"dmpicklista\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1643819122266,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1684768512687,\n        \"picklist_id\": 91252,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 4882641,\n                \"value\": \"red\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 4882642,\n                \"value\": \"black\",\n                \"default_option\": false\n            }\n        ],\n        \"element\": {\n            \"min_occurs\": 1,\n            \"max_occurs\": 1\n        },\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 21390640,\n        \"name\": \"pH\",\n        \"key\": \"ph\",\n        \"data_type\": \"PICKLIST\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1739280111951,\n        \"create_user_name\": \"Super Admin\",\n        \"update_date\": 1739280111951,\n        \"picklist_id\": 202474,\n        \"picklist_type\": \"DROPDOWN\",\n        \"picklist_values\": [\n            {\n                \"id\": 12405338,\n                \"value\": \"7.2 to 7.6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405339,\n                \"value\": \"7.2 to 7.8\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405340,\n                \"value\": \"7.4 to 7.6\",\n                \"default_option\": false\n            },\n            {\n                \"id\": 12405341,\n                \"value\": \"7.4 to 7.8\",\n                \"default_option\": false\n            }\n        ],\n        \"create_user_id\": 4018007131,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20911242,\n        \"name\": \"te\",\n        \"key\": \"te\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1655994316640,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    },\n    {\n        \"id\": 20911241,\n        \"name\": \"test\",\n        \"key\": \"test\",\n        \"data_type\": \"STRING\",\n        \"editor\": \"DEFAULT\",\n        \"validation_version\": \"XSD\",\n        \"update_user_name\": \"Super Admin\",\n        \"create_date\": 1655994064175,\n        \"create_user_name\": \"Catsy Administrator\",\n        \"update_date\": 1684768512687,\n        \"create_user_id\": 4018007130,\n        \"update_user_id\": 4018007131\n    }\n]"}],"_postman_id":"4006ee9f-fce4-4f93-8b20-1d8aedadfddf"},{"name":"Attribute by ID","id":"9385f444-52db-45cc-821a-821bd3f64e7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attributes/:attribute_id","description":"<h3 id=\"get-attribute-by-id\">Get Attribute by ID</h3>\n<p>This endpoint retrieves the details of a specific attribute by providing the attribute ID in the URL path.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attributes",":attribute_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Attribute ID</p>\n","type":"text/plain"},"type":"any","value":"{attribute_id}","key":"attribute_id"}]}},"response":[{"id":"5d1f94bc-5863-4b99-bb79-119df3fd9254","name":"Attribute by ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/attributes/:attribute_id","host":["https://api.catsy.com/v4"],"path":["attributes",":attribute_id"],"variable":[{"key":"attribute_id","value":"20586341","description":"Internal Attribute ID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:39:24 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=28HiOXX4Nf7AvB2CMqXmdWhBhQNPRHMy%2BrBF8ISYZVvPhPw01k7D%2BilLqyQjr0MwCMzVDfqHxZu3xUeDVWIqqdhIdgaARk%2Fd85NQ4hDeuyD0nuMYCiIYtV6vyRJrWho%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9361560e5dfa5803-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=1956&min_rtt=1805&rtt_var=785&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1104&delivery_rate=802216&cwnd=247&unsent_bytes=0&cid=3cc7cc793a7d0632&ts=187&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 20586341,\n    \"name\": \"(Tank) Style\",\n    \"key\": \"tank_style\",\n    \"data_type\": \"STRING\",\n    \"editor\": \"DEFAULT\",\n    \"search_facet\": true,\n    \"validation_version\": \"XSD\",\n    \"update_user_name\": \"Super Admin\",\n    \"create_date\": 1611153367919,\n    \"create_user_name\": \"Catsy Administrator\",\n    \"update_date\": 1744154240842,\n    \"element\": {\n        \"min_occurs\": 1,\n        \"max_length\": 4000\n    },\n    \"create_user_id\": 4018007130,\n    \"update_user_id\": 4018007131\n}"}],"_postman_id":"9385f444-52db-45cc-821a-821bd3f64e7d"},{"name":"Delete Picklist Subset","id":"8fdc6237-72ca-4e08-b5ab-a18d1f507ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.catsy.com/v4/attributes/:attribute_id/subsets","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attributes",":attribute_id","subsets"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"","key":"attribute_id"}]}},"response":[],"_postman_id":"8fdc6237-72ca-4e08-b5ab-a18d1f507ae8"},{"name":"Create Picklist Subset","id":"e68f7523-164f-4fbd-9bd4-965b2c4bbc19","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.catsy.com/v4/attributes/:attribute_id/subsets","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attributes",":attribute_id","subsets"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"","key":"attribute_id"}]}},"response":[],"_postman_id":"e68f7523-164f-4fbd-9bd4-965b2c4bbc19"},{"name":"Update Picklist Subsets","id":"88dd3c7a-a10a-46f2-af69-131a4de4a4cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.catsy.com/v4/attributes/:attribute_id/subsets","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attributes",":attribute_id","subsets"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"","key":"attribute_id"}]}},"response":[],"_postman_id":"88dd3c7a-a10a-46f2-af69-131a4de4a4cc"},{"name":"Measurement Families","id":"f3058306-42c7-447e-adea-2f3db12188d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attributes/measurement_families","description":"<h3 id=\"get-measurmement-families\">GET Measurmement Families</h3>\n<p>This endpoint retrieves a list of measurement families.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attributes","measurement_families"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[]}},"response":[{"id":"36de75f2-e196-48b7-905e-0ca822ef2aa9","name":"Measurement Families","originalRequest":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attributes/measurement_families"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:41:26 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=BQreOLLa25VPCJUarTQ506n9X59jtmKlGa7v15k6AS14D3TFMAjQ0H8KkZ%2BaYVN%2BngzJ4oVQAJlSMHjB%2FSHppl2KSq11bVZSGx6%2FRJkaEHHN71KpV7vyO5zzdmHPxz0%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"9361590dddf2c978-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2153&min_rtt=1940&rtt_var=880&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1116&delivery_rate=746391&cwnd=250&unsent_bytes=0&cid=2f2383c5afaeb81e&ts=146&x=0\""}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"Length\"\n    },\n    {\n        \"id\": 2,\n        \"name\": \"Weight\"\n    },\n    {\n        \"id\": 3,\n        \"name\": \"Volume\"\n    },\n    {\n        \"id\": 13,\n        \"name\": \"Speed\"\n    },\n    {\n        \"id\": 4,\n        \"name\": \"Area\"\n    },\n    {\n        \"id\": 5,\n        \"name\": \"Temperature\"\n    },\n    {\n        \"id\": 6,\n        \"name\": \"Time\"\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Pressure\"\n    },\n    {\n        \"id\": 9,\n        \"name\": \"Inertia\"\n    },\n    {\n        \"id\": 10,\n        \"name\": \"Angle\"\n    },\n    {\n        \"id\": 11,\n        \"name\": \"Power\"\n    },\n    {\n        \"id\": 7,\n        \"name\": \"Torque\"\n    },\n    {\n        \"id\": 12,\n        \"name\": \"Force\"\n    },\n    {\n        \"id\": 14,\n        \"name\": \"Rotational Speed\"\n    }\n]"}],"_postman_id":"f3058306-42c7-447e-adea-2f3db12188d1"},{"name":"Measurement Family by ID","id":"a1efb96d-d964-4abf-80d3-24c9aec03366","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.catsy.com/v4/attributes/measurement_families/:measurement_family_id","description":"<h3 id=\"get-measurement-family-details\">GET Measurement Family Details</h3>\n<p>This endpoint retrieves the measurement family and its associated units based on the provided <code>measurement_family_id</code>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["attributes","measurement_families",":measurement_family_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"description":{"content":"<p>Internal Measurement Family ID</p>\n","type":"text/plain"},"type":"any","value":"{measurement_family_id}","key":"measurement_family_id"}]}},"response":[{"id":"c9c318a0-1f9f-4ffa-819a-a3654e00e661","name":"Measurement Family by ID","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.catsy.com/v4/attributes/measurement_families/:measurement_family_id","host":["https://api.catsy.com/v4"],"path":["attributes","measurement_families",":measurement_family_id"],"variable":[{"key":"measurement_family_id","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Apr 2025 22:42:18 GMT"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Origin"},{"key":"Vary","value":"Access-Control-Request-Method"},{"key":"Vary","value":"Access-Control-Request-Headers"},{"key":"RateLimit-Policy","value":"\"standard\";q=2;qu=\"request-costs\";w=1"},{"key":"RateLimit","value":"\"standard\";r=10;t=0"},{"key":"Cache-Control","value":"no-store"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=YZ0JVljeUuAwgGU4kcQG8KAiU2AgwAgGTlj9v6Frqnf2u5rr8POOQMYkDAZsOdEoqsb%2B3CqLI8qG%2FabJVR4ySCbwqviwx02J6RhWJ%2FpXTHNf42mU3%2BEFZ8qizUd9%2FSA%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"93615a537987c99c-IAD"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=2135&min_rtt=1990&rtt_var=850&sent=3&recv=5&lost=0&retrans=0&sent_bytes=219&recv_bytes=1118&delivery_rate=727638&cwnd=250&unsent_bytes=0&cid=0524c7bcdcac6b15&ts=143&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"name\": \"Length\",\n    \"units\": [\n        {\n            \"id\": 1,\n            \"system\": \"METRIC\",\n            \"names\": {\n                \"es\": \"Metro\",\n                \"de\": \"Meter\",\n                \"fr\": \"Mètre\",\n                \"en\": \"Meter\"\n            },\n            \"abbreviations\": {\n                \"es\": \"m\",\n                \"de\": \"m\",\n                \"fr\": \"m\",\n                \"en\": \"m\"\n            }\n        },\n        {\n            \"id\": 2,\n            \"system\": \"METRIC\",\n            \"names\": {\n                \"es\": \"Centímetro\",\n                \"de\": \"Zentimeter\",\n                \"fr\": \"Centimètre\",\n                \"en\": \"Centimeter\"\n            },\n            \"abbreviations\": {\n                \"es\": \"cm\",\n                \"de\": \"cm\",\n                \"fr\": \"cm\",\n                \"en\": \"cm\"\n            }\n        },\n        {\n            \"id\": 3,\n            \"system\": \"IMPERIAL\",\n            \"names\": {\n                \"es\": \"Pie\",\n                \"de\": \"Fuß\",\n                \"fr\": \"Pied\",\n                \"en\": \"Foot\"\n            },\n            \"abbreviations\": {\n                \"es\": \"p\",\n                \"de\": \"ft\",\n                \"fr\": \"p\",\n                \"en\": \"ft\"\n            }\n        },\n        {\n            \"id\": 4,\n            \"system\": \"IMPERIAL\",\n            \"names\": {\n                \"es\": \"Pulgada\",\n                \"de\": \"Zoll\",\n                \"fr\": \"Pouce\",\n                \"en\": \"Inch\"\n            },\n            \"abbreviations\": {\n                \"es\": \"pulg\",\n                \"de\": \"Zoll\",\n                \"fr\": \"po\",\n                \"en\": \"in\"\n            }\n        },\n        {\n            \"id\": 64,\n            \"system\": \"METRIC\",\n            \"names\": {\n                \"es\": \"Micrometer\",\n                \"de\": \"Micrometer\",\n                \"fr\": \"Micrometer\",\n                \"en\": \"Micrometer\"\n            },\n            \"abbreviations\": {\n                \"es\": \"μm\",\n                \"de\": \"μm\",\n                \"fr\": \"μm\",\n                \"en\": \"μm\"\n            }\n        },\n        {\n            \"id\": 14,\n            \"system\": \"METRIC\",\n            \"names\": {\n                \"es\": \"Kilómetro\",\n                \"de\": \"Kilometre\",\n                \"fr\": \"Kilomètre\",\n                \"en\": \"Kilometer\"\n            },\n            \"abbreviations\": {\n                \"es\": \"km\",\n                \"de\": \"km\",\n                \"fr\": \"km\",\n                \"en\": \"km\"\n            }\n        },\n        {\n            \"id\": 15,\n            \"system\": \"METRIC\",\n            \"names\": {\n                \"es\": \"Milímetro\",\n                \"de\": \"Millimeter\",\n                \"fr\": \"Millimètre\",\n                \"en\": \"Millimeter\"\n            },\n            \"abbreviations\": {\n                \"es\": \"mm\",\n                \"de\": \"mm\",\n                \"fr\": \"mm\",\n                \"en\": \"mm\"\n            }\n        },\n        {\n            \"id\": 16,\n            \"system\": \"IMPERIAL\",\n            \"names\": {\n                \"es\": \"Millas\",\n                \"de\": \"Meile\",\n                \"fr\": \"Mille\",\n                \"en\": \"Mile\"\n            },\n            \"abbreviations\": {\n                \"es\": \"mi\",\n                \"de\": \"mi\",\n                \"fr\": \"mi\",\n                \"en\": \"mi\"\n            }\n        },\n        {\n            \"id\": 17,\n            \"system\": \"IMPERIAL\",\n            \"names\": {\n                \"es\": \"Yarda\",\n                \"de\": \"Hof\",\n                \"fr\": \"Cour\",\n                \"en\": \"Yard\"\n            },\n            \"abbreviations\": {\n                \"es\": \"yd\",\n                \"de\": \"yd\",\n                \"fr\": \"yd\",\n                \"en\": \"yd\"\n            }\n        },\n        {\n            \"id\": 45,\n            \"system\": \"METRIC\",\n            \"names\": {\n                \"es\": \"Decimeter\",\n                \"de\": \"Decimeter\",\n                \"fr\": \"Decimeter\",\n                \"en\": \"Decimeter\"\n            },\n            \"abbreviations\": {\n                \"es\": \"dm\",\n                \"de\": \"dm\",\n                \"fr\": \"dm\",\n                \"en\": \"dm\"\n            }\n        }\n    ]\n}"}],"_postman_id":"a1efb96d-d964-4abf-80d3-24c9aec03366"},{"name":"Picklist Options","id":"4a48b7cf-51ca-4424-a111-138571112eae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.catsy.com/v4/picklists/:picklist_id/options/batches","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["picklists",":picklist_id","options","batches"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"","key":"picklist_id"}]}},"response":[],"_postman_id":"4a48b7cf-51ca-4424-a111-138571112eae"},{"name":"Create Picklist Options","id":"1bc882d0-851b-4522-8b8e-d63793804e9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.catsy.com/v4/picklists/:picklist_id/options/batches","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["picklists",":picklist_id","options","batches"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"","key":"picklist_id"}]}},"response":[],"_postman_id":"1bc882d0-851b-4522-8b8e-d63793804e9e"},{"name":"Update Picklist Option","id":"8a390a34-65fa-45de-a1d7-c09b4fc156c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"https://api.catsy.com/v4/picklists/options/:option_id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}},"urlObject":{"path":["picklists","options",":option_id"],"host":["https://api.catsy.com/v4"],"query":[],"variable":[{"type":"any","value":"","key":"option_id"}]}},"response":[],"_postman_id":"8a390a34-65fa-45de-a1d7-c09b4fc156c2"}],"id":"0f242a7c-61b0-42d4-bdab-9f03dd0ce077","_postman_id":"0f242a7c-61b0-42d4-bdab-9f03dd0ce077","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}}},{"name":"V3 - Deprecated","item":[],"id":"8c5d656f-d815-4742-b719-d8602d014cec","description":"<p>The following v3 API endpoints will be officially <strong>deprecated on December 31, 2025</strong>. Please migrate to their corresponding v4 endpoints listed in the table below to ensure uninterrupted access.</p>\n<p>We recommend completing your migration before this date, as v3 support will be phased out and may no longer receive updates or fixes. If you need assistance transitioning to v4, please contact our support team!</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>V3 Endpoint</th>\n<th>V4 Endpoint</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET /api/v3/assets</td>\n<td>GET /v4/assets</td>\n</tr>\n<tr>\n<td>POST /api/v3/assets</td>\n<td>POST /v4/assets</td>\n</tr>\n<tr>\n<td>POST /api/v3/assets/export</td>\n<td>POST /v4/assets/export</td>\n</tr>\n<tr>\n<td>GET /api/v3/assets/extensions</td>\n<td>GET /v4/assets/extensions</td>\n</tr>\n<tr>\n<td>POST /api/v3/assets/filters</td>\n<td>POST /v4/assets/filter</td>\n</tr>\n<tr>\n<td>POST /api/v3/assets/filters/count</td>\n<td>POST /v4/products/filter/count</td>\n</tr>\n<tr>\n<td>PUT /api/v3/assets/rename</td>\n<td>PUT /v4/assets/rename</td>\n</tr>\n<tr>\n<td>POST /api/v3/assets/upload</td>\n<td>POST /v4/assets/upload</td>\n</tr>\n<tr>\n<td>GET /api/v3/assets/{assetId}</td>\n<td>GET /v4/assets/:asset_id</td>\n</tr>\n<tr>\n<td>PUT /api/v3/assets/{assetId}</td>\n<td>PUT /v4/assets/:asset_id</td>\n</tr>\n<tr>\n<td>PUT /api/v3/assets/{assetId}/values</td>\n<td>PUT /v4/assets/:asset_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/attributeGroups</td>\n<td>GET /v4/attribute_groups</td>\n</tr>\n<tr>\n<td>GET /api/v3/attributeGroups/{attributeGroupId}</td>\n<td>GET /v4/attribute_groups/:attribute_group_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/attributeGroups/{attributeGroupId}/attributes</td>\n<td>GET /v4/attribute_groups/:attribute_group_id/attributes</td>\n</tr>\n<tr>\n<td>GET /api/v3/attributes</td>\n<td>GET /v4/attributes</td>\n</tr>\n<tr>\n<td>GET /api/v3/attributes/measurementFamilies</td>\n<td>GET /v4/attributes/measurement_families</td>\n</tr>\n<tr>\n<td>GET /api/v3/attributes/measurementFamilies/{measurementFamilyId}</td>\n<td>GET /v4/attributes/measurement_families/:measurement_family_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/attributes/simple</td>\n<td>GET /v4/attributes</td>\n</tr>\n<tr>\n<td>GET /api/v3/attributes/{attributeId}</td>\n<td>GET /v4/attributes/:attribute_id</td>\n</tr>\n<tr>\n<td>POST /api/v3/attributes/{attributeId}/subsets</td>\n<td>POST /v4/attributes/:attribute_id/subsets</td>\n</tr>\n<tr>\n<td>PUT /api/v3/attributes/{attributeId}/subsets</td>\n<td>PUT /v4/attributes/:attribute_id/subsets</td>\n</tr>\n<tr>\n<td>POST /api/v3/attributes/{attributeId}/subsets/deletes</td>\n<td>DEL /v4/attributes/:attribute_id/subsets</td>\n</tr>\n<tr>\n<td>GET /api/v3/categories/categoryTree</td>\n<td>GET /v4/categories/tree</td>\n</tr>\n<tr>\n<td>GET /api/v3/categories/{categoryId}</td>\n<td>GET /v4/categories/:category_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/categories/{categoryId}/children</td>\n<td>GET /v4/categories/:category_id/children</td>\n</tr>\n<tr>\n<td>GET /api/v3/channels</td>\n<td>GET /v4/channels</td>\n</tr>\n<tr>\n<td>GET /api/v3/channels/{channelId}</td>\n<td>GET /v4/channels/:channel_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/channels/{channelId}/attributes</td>\n<td>GET /v4/attribute_groups/:attribute_group_id/attributes</td>\n</tr>\n<tr>\n<td>GET /api/v3/channels/{channelId}/items</td>\n<td>GET /v4/channels/:channel_id/products/filter</td>\n</tr>\n<tr>\n<td>GET /api/v3/channels/{channelId}/items/count</td>\n<td>GET /v4/collections/count</td>\n</tr>\n<tr>\n<td>GET /api/v3/channels/{channelId}/products</td>\n<td>GET /v4/products/:product_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/channels/{channelId}/products/count</td>\n<td>GET /v4/collections/count</td>\n</tr>\n<tr>\n<td>GET /api/v3/collections</td>\n<td>GET /v4/products/:product_id/collections</td>\n</tr>\n<tr>\n<td>POST /api/v3/collections</td>\n<td>POST /v4/collections</td>\n</tr>\n<tr>\n<td>GET /api/v3/collections/count</td>\n<td>GET /v4/collections/count</td>\n</tr>\n<tr>\n<td>PUT /api/v3/collections/sequence</td>\n<td>PUT /v4/collections/sequence</td>\n</tr>\n<tr>\n<td>DELETE /api/v3/collections/{collectionId}</td>\n<td>DELETE /collections/:collection_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/collections/{collectionId}</td>\n<td>GET /v4/collections/:collection_id</td>\n</tr>\n<tr>\n<td>PUT /api/v3/collections/{collectionId}</td>\n<td>PUT /v4/collections/:collection_id</td>\n</tr>\n<tr>\n<td>DELETE /api/v3/collections/{collectionId}/items</td>\n<td>DEL /v4/collections/:collection_id/products</td>\n</tr>\n<tr>\n<td>GET /api/v3/collections/{collectionId}/items</td>\n<td>POST /v4/collections/:collection_id/products/filter</td>\n</tr>\n<tr>\n<td>POST /api/v3/collections/{collectionId}/items</td>\n<td>POST /v4/collections/:collection_id/products/filter</td>\n</tr>\n<tr>\n<td>GET /api/v3/collections/{collectionId}/items/count</td>\n<td>GET /v4/collections/count</td>\n</tr>\n<tr>\n<td>POST /api/v3/collections/{collectionId}/items/filters</td>\n<td>POST /v4/collections/:collection_id/products/filter</td>\n</tr>\n<tr>\n<td>POST /api/v3/collections/{collectionId}/items/filters/count</td>\n<td>POST /v4/products/filter/count</td>\n</tr>\n<tr>\n<td>GET /api/v3/collections/{collectionId}/items/{itemId}</td>\n<td>GET /v4/collections/:collection_id/products/:product_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/collections/{collectionId}/products</td>\n<td>GET /v4/products/:product_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/collections/{collectionId}/products/count</td>\n<td>GET /v4/collections/count</td>\n</tr>\n<tr>\n<td>DELETE /api/v3/items</td>\n<td>DEL /v4/products</td>\n</tr>\n<tr>\n<td>GET /api/v3/items</td>\n<td>POST /v4/products/filter</td>\n</tr>\n<tr>\n<td>POST /api/v3/items</td>\n<td>POST /v4/products/filter</td>\n</tr>\n<tr>\n<td>GET /api/v3/items/count</td>\n<td>POST /v4/products/filter/count</td>\n</tr>\n<tr>\n<td>POST /api/v3/items/filters</td>\n<td>POST /v4/products/filter</td>\n</tr>\n<tr>\n<td>POST /api/v3/items/filters/count</td>\n<td>POST /v4/products/filter/count</td>\n</tr>\n<tr>\n<td>GET /api/v3/items/{itemId}</td>\n<td>GET /v4/products/:product_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/items/{itemId}/collections</td>\n<td>GET /v4/products/:product_id/collections</td>\n</tr>\n<tr>\n<td>GET /api/v3/items/{itemId}/score/completeness</td>\n<td>GET /v4/products/:product_id</td>\n</tr>\n<tr>\n<td>PUT /api/v3/items/{itemId}/values</td>\n<td>PUT /v4/products/:product_id/values</td>\n</tr>\n<tr>\n<td>DELETE /api/v3/lightboxes</td>\n<td>DEL /v4/lightboxes</td>\n</tr>\n<tr>\n<td>GET /api/v3/lightboxes</td>\n<td>GET /v4/lightboxes</td>\n</tr>\n<tr>\n<td>POST /api/v3/lightboxes</td>\n<td>POST /v4/lightboxes</td>\n</tr>\n<tr>\n<td>PUT /api/v3/lightboxes/sequence</td>\n<td>PUT /v4/lightboxes/sequence</td>\n</tr>\n<tr>\n<td>DELETE /api/v3/lightboxes/{lightboxId}</td>\n<td>DEL/lightboxes/:lightbox_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/lightboxes/{lightboxId}</td>\n<td>GET /v4/lightboxes/:lightbox_id</td>\n</tr>\n<tr>\n<td>PUT /api/v3/lightboxes/{lightboxId}</td>\n<td>PUT /v4/lightboxes/:lightbox_id</td>\n</tr>\n<tr>\n<td>DELETE /api/v3/lightboxes/{lightboxId}/assets</td>\n<td>DEL /v4/lightboxes/lightbox_id/assets</td>\n</tr>\n<tr>\n<td>GET /api/v3/lightboxes/{lightboxId}/assets</td>\n<td>POST /v4/lightboxes/:lightbox_id/assets</td>\n</tr>\n<tr>\n<td>PUT /api/v3/lightboxes/{lightboxId}/assets</td>\n<td>POST /v4/lightboxes/:lightbox_id/assets</td>\n</tr>\n<tr>\n<td>POST /api/v3/lightboxes/{lightboxId}/assets/filters</td>\n<td>POST /v4/lightboxes/:lightbox_id/assets/filter</td>\n</tr>\n<tr>\n<td>POST /api/v3/lightboxes/{lightboxId}/assets/filters/count</td>\n<td>POST /v4/lightboxes/:lightbox_id/assets/filter/count</td>\n</tr>\n<tr>\n<td>GET /api/v3/queries</td>\n<td>GET /v4/queries</td>\n</tr>\n<tr>\n<td>POST /api/v3/queries</td>\n<td>POST /v4/queries</td>\n</tr>\n<tr>\n<td>DELETE /api/v3/queries/{queryId}</td>\n<td>DEL /v4/queries/:query_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/queries/{queryId}</td>\n<td>GET /v4/queries/:query_id</td>\n</tr>\n<tr>\n<td>PUT /api/v3/queries/{queryId}</td>\n<td>PUT /v4/queries/:query_id</td>\n</tr>\n<tr>\n<td>GET /api/v3/queries/{queryId}/items</td>\n<td></td>\n</tr>\n<tr>\n<td>GET /api/v3/queries/{queryId}/items/count</td>\n<td></td>\n</tr>\n<tr>\n<td>PUT /api/v3/tag/{tagId}</td>\n<td>PUT /v4/tags/:tag_id</td>\n</tr>\n<tr>\n<td>DELETE /api/v3/tags</td>\n<td>DEL /v4/tags</td>\n</tr>\n<tr>\n<td>GET /api/v3/tags</td>\n<td>GET /v4/tags</td>\n</tr>\n<tr>\n<td>POST /api/v3/tags</td>\n<td>POST /v4/tags</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8c5d656f-d815-4742-b719-d8602d014cec","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","id":"1b73e0e1-d38e-4d67-9592-255307c5d6ff","name":"Catsy API Docs","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"4d026d0f-f275-4fee-8203-506b512b795f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"34663c87-b75a-4cff-9fe3-72cd940f2205","type":"text/javascript","exec":[""]}}],"variable":[{"key":"baseUrl","value":"https://api.catsy.com/v4"},{"key":"api_key","value":""}]}