├── README.md ├── convert.py ├── import_example.csv ├── products_example.json └── products_generated_example.csv /README.md: -------------------------------------------------------------------------------- 1 | # shopify-products 2 | 3 | ## Import products into your store from any store 4 | 5 | Script that will convert shopify products.json into importable CSV file for shopify 6 | 7 | 8 | ## Run 9 | 10 | `python convert.py` 11 | 12 | 13 | ## How it works 14 | 15 | Example url https://compliancewarehouse.com/products.json?limit=250&page=1 that will download products.json which is equal to products_example.json inside project folder 16 | 17 | import_example.csv is shopify import example that shopify provides 18 | 19 | products_generated_example.csv is output after you run script 20 | 21 | If you set `Variant Inventory Policy` to `continue` it will allow people to purchase product when quantity is 0 if policy is `deny` its the opposite 22 | 23 | 24 | ## Requirements 25 | 26 | python>=3 27 | -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | import csv 4 | 5 | fields = [ 6 | 'Handle', 7 | 'Title', 8 | 'Body (HTML)', 9 | 'Vendor', 10 | 'Product Category', 11 | 'Type', 12 | 'Tags', 13 | 'Published', 14 | 'Option1 Name', 15 | 'Option1 Value', 16 | 'Option2 Name', 17 | 'Option2 Value', 18 | 'Option3 Name', 19 | 'Option3 Value', 20 | 'Variant SKU', 21 | 'Variant Grams', 22 | 'Variant Inventory Tracker', 23 | 'Variant Inventory Qty', 24 | 'Variant Inventory Policy', 25 | 'Variant Fulfillment Service', 26 | 'Variant Price', 27 | 'Variant Compare At Price', 28 | 'Variant Requires Shipping', 29 | 'Variant Taxable', 30 | 'Variant Barcode', 31 | 'Image Src', 32 | 'Image Position', 33 | 'Image Alt Text', 34 | 'Gift Card', 35 | 'SEO Title', 36 | 'SEO Description', 37 | 'Google Shopping / Google Product Category', 38 | 'Google Shopping / Gender', 39 | 'Google Shopping / Age Group', 40 | 'Google Shopping / MPN', 41 | 'Google Shopping / AdWords Grouping', 42 | 'Google Shopping / AdWords Labels', 43 | 'Google Shopping / Condition', 44 | 'Google Shopping / Custom Product', 45 | 'Google Shopping / Custom Label 0', 46 | 'Google Shopping / Custom Label 1', 47 | 'Google Shopping / Custom Label 2', 48 | 'Google Shopping / Custom Label 3', 49 | 'Google Shopping / Custom Label 4', 50 | 'Variant Image', 51 | 'Variant Weight Unit', 52 | 'Variant Tax Code', 53 | 'Cost per item', 54 | 'Price / International', 55 | 'Compare At Price / International', 56 | 'Status' 57 | ] 58 | 59 | rows = [] 60 | 61 | # Set to true if you are running first time and testing 62 | test = False 63 | 64 | with open('./products_example.json') as f: 65 | data = json.load(f) 66 | 67 | for product in data['products']: 68 | row = [] 69 | row.append(product['handle']) # Handle 70 | row.append(product['title']) # Title 71 | row.append(product['body_html']) # Body (HTML) 72 | row.append('YOUR STORE NAME') # Vendor 73 | row.append('LEGAL SELLING CATEGORY') # Product Category https://help.shopify.com/txt/product_taxonomy/en.txt 74 | row.append(product['product_type']) # Type 75 | tags = '' 76 | for tag in product['tags']: 77 | tags += tag + ' ' 78 | row.append(tags) 79 | row.append('TRUE') 80 | row.append('State') # Option1 Name 81 | 82 | # The way import csv is setup is that the first variant is the main variant 83 | # and the rest are sub variants. So we need to add the first variant and then 84 | # add the rest as sub variants 85 | # thats why we check if ind == 0 to add it to main row array as product 86 | for ind, variant in enumerate(product['variants']): 87 | if ind == 0: 88 | row.append(variant['option1']) 89 | row.append('') #option2 90 | row.append('') #option2 91 | row.append('') #option3 92 | row.append('') #option3 93 | row.append('') #sku 94 | row.append(variant['grams']) 95 | row.append('shopify') # Variant Inventory Tracker 96 | row.append('0') # Variant Inventory Qty 97 | row.append('continue') # Variant Inventory Policy 98 | row.append('manual') # Variant Fulfillment Service 99 | row.append(variant['price']) # Variant Price 100 | row.append(variant['compare_at_price']) # Variant Compare At Price 101 | row.append('TRUE') # Variant Requires Shipping 102 | row.append('TRUE') # Variant Taxable 103 | row.append('') # Variant Barcode 104 | row.append(product['images'][0]['src']) # Image Src 105 | row.append('1') # Image Position 106 | row.append('') # Image Alt Text 107 | row.append('FALSE') # Gift Card 108 | row.append('') # SEO Title 109 | row.append('') # SEO Description 110 | row.append('') # Google Shopping / Google Product Category 111 | row.append('') # Google Shopping / Gender 112 | row.append('') # Google Shopping / Age Group 113 | row.append('') # Google Shopping / MPN 114 | row.append('') # Google Shopping / AdWords Grouping 115 | row.append('') # Google Shopping / AdWords Labels 116 | row.append('') # Google Shopping / Condition 117 | row.append('') # Google Shopping / Custom Product 118 | row.append('') # Google Shopping / Custom Label 0 119 | row.append('') # Google Shopping / Custom Label 1 120 | row.append('') # Google Shopping / Custom Label 2 121 | row.append('') # Google Shopping / Custom Label 3 122 | row.append('') # Google Shopping / Custom Label 4 123 | row.append('') # Variant Image 124 | row.append('g') # Variant Weight Unit 125 | row.append('') # Variant Tax Code 126 | row.append('') # Cost per item 127 | row.append('') # Price / International 128 | row.append('') # Compare At Price / International 129 | row.append('active') # Status 130 | 131 | rows.append(row) 132 | else: 133 | variant_row = [] 134 | 135 | variant_row.append(product['handle']) 136 | variant_row.append('') # Title 137 | variant_row.append('') # Body (HTML) 138 | variant_row.append('') # Vendor 139 | variant_row.append('') # Product Category 140 | variant_row.append('') # Type 141 | variant_row.append('') # Tags 142 | variant_row.append('') # Published 143 | variant_row.append('') # Option1 Name 144 | variant_row.append(variant['option1']) 145 | variant_row.append('') #option2 146 | variant_row.append('') #option2 147 | variant_row.append('') #option3 148 | variant_row.append('') #option3 149 | variant_row.append('') #sku 150 | variant_row.append(variant['grams']) 151 | variant_row.append('shopify') # Variant Inventory Tracker 152 | variant_row.append('0') # Variant Inventory Qty 153 | variant_row.append('continue') # Variant Inventory Policy 154 | variant_row.append('manual') # Variant Fulfillment Service 155 | variant_row.append(variant['price']) # Variant Price 156 | variant_row.append(variant['compare_at_price']) # Variant Compare At Price 157 | variant_row.append('TRUE') # Variant Requires Shipping 158 | variant_row.append('TRUE') # Variant Taxable 159 | variant_row.append('') # Variant Barcode 160 | variant_row.append('') # Image Src 161 | variant_row.append('') # Image Position 162 | variant_row.append('') # Image Alt Text 163 | variant_row.append('FALSE') # Gift Card 164 | variant_row.append('') # SEO Title 165 | variant_row.append('') # SEO Description 166 | variant_row.append('') # Google Shopping / Google Product Category 167 | variant_row.append('') # Google Shopping / Gender 168 | variant_row.append('') # Google Shopping / Age Group 169 | variant_row.append('') # Google Shopping / MPN 170 | variant_row.append('') # Google Shopping / AdWords Grouping 171 | variant_row.append('') # Google Shopping / AdWords Labels 172 | variant_row.append('') # Google Shopping / Condition 173 | variant_row.append('') # Google Shopping / Custom Product 174 | variant_row.append('') # Google Shopping / Custom Label 0 175 | variant_row.append('') # Google Shopping / Custom Label 1 176 | variant_row.append('') # Google Shopping / Custom Label 2 177 | variant_row.append('') # Google Shopping / Custom Label 3 178 | variant_row.append('') # Google Shopping / Custom Label 4 179 | variant_row.append('') # Variant Image 180 | variant_row.append('g') # Variant Weight Unit 181 | variant_row.append('') # Variant Tax Code 182 | variant_row.append('') # Cost per item 183 | variant_row.append('') # Price / International 184 | variant_row.append('') # Compare At Price / International 185 | variant_row.append('') # Status 186 | 187 | rows.append(variant_row) 188 | 189 | if test: 190 | break 191 | if test: 192 | break 193 | 194 | filename = "products_generated_example.csv" 195 | # writing to csv file 196 | with open(filename, 'w', newline='') as csvfile: 197 | # creating a csv writer object 198 | csvwriter = csv.writer(csvfile, delimiter=',', quotechar='"', quoting=csv.QUOTE_MINIMAL) 199 | # writing the fields 200 | csvwriter.writerow(fields) 201 | # writing the data rows 202 | csvwriter.writerows(rows) 203 | -------------------------------------------------------------------------------- /import_example.csv: -------------------------------------------------------------------------------- 1 | Handle,Title,Body (HTML),Vendor,Product Category,Type,Tags,Published,Option1 Name,Option1 Value,Option2 Name,Option2 Value,Option3 Name,Option3 Value,Variant SKU,Variant Grams,Variant Inventory Tracker,Variant Inventory Qty,Variant Inventory Policy,Variant Fulfillment Service,Variant Price,Variant Compare At Price,Variant Requires Shipping,Variant Taxable,Variant Barcode,Image Src,Image Position,Image Alt Text,Gift Card,SEO Title,SEO Description,Google Shopping / Google Product Category,Google Shopping / Gender,Google Shopping / Age Group,Google Shopping / MPN,Google Shopping / AdWords Grouping,Google Shopping / AdWords Labels,Google Shopping / Condition,Google Shopping / Custom Product,Google Shopping / Custom Label 0,Google Shopping / Custom Label 1,Google Shopping / Custom Label 2,Google Shopping / Custom Label 3,Google Shopping / Custom Label 4,Variant Image,Variant Weight Unit,Variant Tax Code,Cost per item,Price / International,Compare At Price / International,Status 2 | example-t-shirt,Example T-Shirt,,Acme,Apparel & Accessories > Clothing,Shirts,mens t-shirt example,TRUE,Title,"Lithograph - Height: 9"" x Width: 12""",,,,,,3629,,,deny,manual,25,,TRUE,TRUE,,https://burst.shopifycdn.com/photos/green-t-shirt.jpg?width=5000,1,,FALSE,Our awesome T-shirt in 70 characters or less.,A great description of your products in 320 characters or less,Apparel & Accessories > Clothing,Unisex,Adult,7X8ABC910,T-shirts,"cotton, pre-shrunk",used,FALSE,,,,,,,g,,,,,active 3 | example-t-shirt,,,,,,,,,Small,,,,,example-shirt-s,200,,,deny,manual,19.99,24.99,TRUE,TRUE,,,,,,,,,,,,,,,,,,,,,,g,,,,, 4 | example-t-shirt,,,,,,,,,Medium,,,,,example-shirt-m,200,shopify,,deny,manual,19.99,24.99,TRUE,TRUE,,,,,,,,,,,,,,,,,,,,,,g,,,,, 5 | example-pants,Example Pants,,Acme,Apparel & Accessories > Clothing,Pants,mens pants example,FALSE,Title,"Jeans, W32H34",,,,,,1250,,,deny,manual,49.99,57.99,TRUE,TRUE,,https://burst.shopifycdn.com/photos/distressed-kids-jeans.jpg?width=5000,1,,FALSE,Our awesome Pants in 70 characters or less.,A great description of your products in 320 characters or less,Apparel & Accessories > Clothing,Unisex,Adult,7Y2ABD712,Pants,"cotton, pre-shrunk",used,FALSE,,,,,,,g,,,,,draft 6 | example-hat,Example Hat,,Acme,Apparel & Accessories > Clothing,Hat,mens hat example,FALSE,Title,Grey,,,,,,275,,,deny,manual,17.99,22.99,TRUE,TRUE,,https://burst.shopifycdn.com/photos/kids-beanie.jpg?width=5000,1,,FALSE,Our awesome Hat in 70 characters or less.,A great description of your products in 320 characters or less,Apparel & Accessories > Clothing,Unisex,Adult,5P1NBQ314,Hat,"cotton, pre-shrunk",used,FALSE,,,,,,,g,,,,,archived 7 | -------------------------------------------------------------------------------- /products_example.json: -------------------------------------------------------------------------------- 1 | { 2 | "products": [ 3 | { 4 | "id": 7642486767779, 5 | "title": "UNBRANDED(Non-Laminated) State and Federal Labor Law Poster", 6 | "handle": "unbrandednon-laminated-state-and-federal-labor-law-poster", 7 | "body_html": "\u003cmeta charset=\"utf-8\"\u003e\n\u003cp\u003eOrdering your State and Federal all in one Labor Law Posters from Labor Law Poster Store is your\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWORRY FREE\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eapproach to meeting the employer posting requirements. We have a team of professionals searching for updates on a daily basis. When you order from us you can rest easy knowing that you have the most up to date version available\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eEVERY SINGLE DAY!\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eOur\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cspan\u003eGREEN\u003c\/span\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eLabor Law Posters are both\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eBUDGET FRIENDLY \u0026amp; ENVIRONMENTALLY CONSCIOUS!\u00a0\u003c\/strong\u003eThese posters are printed to order (to reduce waste) using recycled paper, recycled ink cartridges, and with renewable energy! Green posters are also NON-LAMINATED so they are 100% bio degradable and recyclable. \u00a0\u003c\/p\u003e\n\u003cp style=\"float: right;\"\u003eNeed peace of mind? These come with our\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWORRY FREE GUARANTEE!\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eIf our posters are\u00a0updated labor law posters are\u00a0not 100% up to date on the d\u003cimg alt=\"\" src=\"\/\/cdn.shopify.com\/s\/files\/1\/0113\/5575\/0464\/files\/cw_guar_medium.png?v=1544803414\" style=\"float: right; margin: 7px;\"\u003eay of purchase we will refund you in full AND replace your poster for FREE!\u003c\/p\u003e", 8 | "published_at": "2022-05-16T12:52:40-04:00", 9 | "created_at": "2022-05-16T12:52:41-04:00", 10 | "updated_at": "2022-11-15T09:45:32-05:00", 11 | "vendor": "Compliance Warehouse", 12 | "product_type": "Green Labor Law Poster", 13 | "tags": [ 14 | "ca", 15 | "dc", 16 | "federal", 17 | "fl", 18 | "labor law", 19 | "md", 20 | "ny", 21 | "poster", 22 | "regulations", 23 | "state", 24 | "ut" 25 | ], 26 | "variants": [ 27 | { 28 | "id": 42510123106467, 29 | "title": "Alabama", 30 | "option1": "Alabama", 31 | "option2": null, 32 | "option3": null, 33 | "sku": null, 34 | "requires_shipping": true, 35 | "taxable": true, 36 | "featured_image": null, 37 | "available": true, 38 | "price": "14.99", 39 | "grams": 113, 40 | "compare_at_price": "29.99", 41 | "position": 1, 42 | "product_id": 7642486767779, 43 | "created_at": "2022-05-16T12:52:41-04:00", 44 | "updated_at": "2022-11-10T20:30:40-05:00" 45 | }, 46 | { 47 | "id": 42510123139235, 48 | "title": "Alaska", 49 | "option1": "Alaska", 50 | "option2": null, 51 | "option3": null, 52 | "sku": null, 53 | "requires_shipping": true, 54 | "taxable": true, 55 | "featured_image": null, 56 | "available": true, 57 | "price": "14.99", 58 | "grams": 113, 59 | "compare_at_price": "29.99", 60 | "position": 2, 61 | "product_id": 7642486767779, 62 | "created_at": "2022-05-16T12:52:41-04:00", 63 | "updated_at": "2022-05-16T12:52:41-04:00" 64 | }, 65 | { 66 | "id": 42510123172003, 67 | "title": "Arizona", 68 | "option1": "Arizona", 69 | "option2": null, 70 | "option3": null, 71 | "sku": null, 72 | "requires_shipping": true, 73 | "taxable": true, 74 | "featured_image": null, 75 | "available": true, 76 | "price": "14.99", 77 | "grams": 113, 78 | "compare_at_price": "29.99", 79 | "position": 3, 80 | "product_id": 7642486767779, 81 | "created_at": "2022-05-16T12:52:41-04:00", 82 | "updated_at": "2022-11-14T23:56:41-05:00" 83 | }, 84 | { 85 | "id": 42510123204771, 86 | "title": "Arkansas", 87 | "option1": "Arkansas", 88 | "option2": null, 89 | "option3": null, 90 | "sku": null, 91 | "requires_shipping": true, 92 | "taxable": true, 93 | "featured_image": null, 94 | "available": true, 95 | "price": "14.99", 96 | "grams": 113, 97 | "compare_at_price": "29.99", 98 | "position": 4, 99 | "product_id": 7642486767779, 100 | "created_at": "2022-05-16T12:52:41-04:00", 101 | "updated_at": "2022-11-14T16:17:02-05:00" 102 | }, 103 | { 104 | "id": 42510123237539, 105 | "title": "California", 106 | "option1": "California", 107 | "option2": null, 108 | "option3": null, 109 | "sku": null, 110 | "requires_shipping": true, 111 | "taxable": true, 112 | "featured_image": null, 113 | "available": true, 114 | "price": "14.99", 115 | "grams": 113, 116 | "compare_at_price": "29.99", 117 | "position": 5, 118 | "product_id": 7642486767779, 119 | "created_at": "2022-05-16T12:52:41-04:00", 120 | "updated_at": "2022-11-08T23:44:55-05:00" 121 | }, 122 | { 123 | "id": 42510123270307, 124 | "title": "Colorado", 125 | "option1": "Colorado", 126 | "option2": null, 127 | "option3": null, 128 | "sku": null, 129 | "requires_shipping": true, 130 | "taxable": true, 131 | "featured_image": null, 132 | "available": true, 133 | "price": "14.99", 134 | "grams": 113, 135 | "compare_at_price": "29.99", 136 | "position": 6, 137 | "product_id": 7642486767779, 138 | "created_at": "2022-05-16T12:52:41-04:00", 139 | "updated_at": "2022-11-14T20:01:31-05:00" 140 | }, 141 | { 142 | "id": 42510123303075, 143 | "title": "Connecticut", 144 | "option1": "Connecticut", 145 | "option2": null, 146 | "option3": null, 147 | "sku": null, 148 | "requires_shipping": true, 149 | "taxable": true, 150 | "featured_image": null, 151 | "available": true, 152 | "price": "14.99", 153 | "grams": 113, 154 | "compare_at_price": "29.99", 155 | "position": 7, 156 | "product_id": 7642486767779, 157 | "created_at": "2022-05-16T12:52:41-04:00", 158 | "updated_at": "2022-11-13T12:54:41-05:00" 159 | }, 160 | { 161 | "id": 42510123335843, 162 | "title": "Delaware", 163 | "option1": "Delaware", 164 | "option2": null, 165 | "option3": null, 166 | "sku": null, 167 | "requires_shipping": true, 168 | "taxable": true, 169 | "featured_image": null, 170 | "available": true, 171 | "price": "14.99", 172 | "grams": 113, 173 | "compare_at_price": "29.99", 174 | "position": 8, 175 | "product_id": 7642486767779, 176 | "created_at": "2022-05-16T12:52:41-04:00", 177 | "updated_at": "2022-05-16T12:52:41-04:00" 178 | }, 179 | { 180 | "id": 42510123368611, 181 | "title": "District of Columbia (DC)", 182 | "option1": "District of Columbia (DC)", 183 | "option2": null, 184 | "option3": null, 185 | "sku": null, 186 | "requires_shipping": true, 187 | "taxable": true, 188 | "featured_image": null, 189 | "available": true, 190 | "price": "14.99", 191 | "grams": 113, 192 | "compare_at_price": "29.99", 193 | "position": 9, 194 | "product_id": 7642486767779, 195 | "created_at": "2022-05-16T12:52:41-04:00", 196 | "updated_at": "2022-05-16T12:52:41-04:00" 197 | }, 198 | { 199 | "id": 42510123401379, 200 | "title": "Florida", 201 | "option1": "Florida", 202 | "option2": null, 203 | "option3": null, 204 | "sku": null, 205 | "requires_shipping": true, 206 | "taxable": true, 207 | "featured_image": null, 208 | "available": true, 209 | "price": "14.99", 210 | "grams": 113, 211 | "compare_at_price": "29.99", 212 | "position": 10, 213 | "product_id": 7642486767779, 214 | "created_at": "2022-05-16T12:52:41-04:00", 215 | "updated_at": "2022-10-09T18:54:15-04:00" 216 | }, 217 | { 218 | "id": 42510123434147, 219 | "title": "Georgia", 220 | "option1": "Georgia", 221 | "option2": null, 222 | "option3": null, 223 | "sku": null, 224 | "requires_shipping": true, 225 | "taxable": true, 226 | "featured_image": null, 227 | "available": true, 228 | "price": "14.99", 229 | "grams": 113, 230 | "compare_at_price": "29.99", 231 | "position": 11, 232 | "product_id": 7642486767779, 233 | "created_at": "2022-05-16T12:52:41-04:00", 234 | "updated_at": "2022-05-16T12:52:41-04:00" 235 | }, 236 | { 237 | "id": 42510123466915, 238 | "title": "Hawaii", 239 | "option1": "Hawaii", 240 | "option2": null, 241 | "option3": null, 242 | "sku": null, 243 | "requires_shipping": true, 244 | "taxable": true, 245 | "featured_image": null, 246 | "available": true, 247 | "price": "14.99", 248 | "grams": 113, 249 | "compare_at_price": "29.99", 250 | "position": 12, 251 | "product_id": 7642486767779, 252 | "created_at": "2022-05-16T12:52:41-04:00", 253 | "updated_at": "2022-05-16T12:52:41-04:00" 254 | }, 255 | { 256 | "id": 42510123499683, 257 | "title": "Idaho", 258 | "option1": "Idaho", 259 | "option2": null, 260 | "option3": null, 261 | "sku": null, 262 | "requires_shipping": true, 263 | "taxable": true, 264 | "featured_image": null, 265 | "available": true, 266 | "price": "14.99", 267 | "grams": 113, 268 | "compare_at_price": "29.99", 269 | "position": 13, 270 | "product_id": 7642486767779, 271 | "created_at": "2022-05-16T12:52:41-04:00", 272 | "updated_at": "2022-11-10T18:53:02-05:00" 273 | }, 274 | { 275 | "id": 42510123532451, 276 | "title": "Illinois", 277 | "option1": "Illinois", 278 | "option2": null, 279 | "option3": null, 280 | "sku": null, 281 | "requires_shipping": true, 282 | "taxable": true, 283 | "featured_image": null, 284 | "available": true, 285 | "price": "14.99", 286 | "grams": 113, 287 | "compare_at_price": "29.99", 288 | "position": 14, 289 | "product_id": 7642486767779, 290 | "created_at": "2022-05-16T12:52:41-04:00", 291 | "updated_at": "2022-05-16T12:52:41-04:00" 292 | }, 293 | { 294 | "id": 42510123565219, 295 | "title": "Indiana", 296 | "option1": "Indiana", 297 | "option2": null, 298 | "option3": null, 299 | "sku": null, 300 | "requires_shipping": true, 301 | "taxable": true, 302 | "featured_image": null, 303 | "available": true, 304 | "price": "14.99", 305 | "grams": 113, 306 | "compare_at_price": "29.99", 307 | "position": 15, 308 | "product_id": 7642486767779, 309 | "created_at": "2022-05-16T12:52:41-04:00", 310 | "updated_at": "2022-05-16T12:52:41-04:00" 311 | }, 312 | { 313 | "id": 42510123597987, 314 | "title": "Iowa", 315 | "option1": "Iowa", 316 | "option2": null, 317 | "option3": null, 318 | "sku": null, 319 | "requires_shipping": true, 320 | "taxable": true, 321 | "featured_image": null, 322 | "available": true, 323 | "price": "14.99", 324 | "grams": 113, 325 | "compare_at_price": "29.99", 326 | "position": 16, 327 | "product_id": 7642486767779, 328 | "created_at": "2022-05-16T12:52:41-04:00", 329 | "updated_at": "2022-10-17T10:45:45-04:00" 330 | }, 331 | { 332 | "id": 42510123630755, 333 | "title": "Kansas", 334 | "option1": "Kansas", 335 | "option2": null, 336 | "option3": null, 337 | "sku": null, 338 | "requires_shipping": true, 339 | "taxable": true, 340 | "featured_image": null, 341 | "available": true, 342 | "price": "14.99", 343 | "grams": 113, 344 | "compare_at_price": "29.99", 345 | "position": 17, 346 | "product_id": 7642486767779, 347 | "created_at": "2022-05-16T12:52:41-04:00", 348 | "updated_at": "2022-05-16T12:52:41-04:00" 349 | }, 350 | { 351 | "id": 42510123663523, 352 | "title": "Kentucky", 353 | "option1": "Kentucky", 354 | "option2": null, 355 | "option3": null, 356 | "sku": null, 357 | "requires_shipping": true, 358 | "taxable": true, 359 | "featured_image": null, 360 | "available": true, 361 | "price": "14.99", 362 | "grams": 113, 363 | "compare_at_price": "29.99", 364 | "position": 18, 365 | "product_id": 7642486767779, 366 | "created_at": "2022-05-16T12:52:41-04:00", 367 | "updated_at": "2022-05-16T12:52:41-04:00" 368 | }, 369 | { 370 | "id": 42510123696291, 371 | "title": "Louisiana", 372 | "option1": "Louisiana", 373 | "option2": null, 374 | "option3": null, 375 | "sku": null, 376 | "requires_shipping": true, 377 | "taxable": true, 378 | "featured_image": null, 379 | "available": true, 380 | "price": "14.99", 381 | "grams": 113, 382 | "compare_at_price": "29.99", 383 | "position": 19, 384 | "product_id": 7642486767779, 385 | "created_at": "2022-05-16T12:52:41-04:00", 386 | "updated_at": "2022-05-16T12:52:41-04:00" 387 | }, 388 | { 389 | "id": 42510123729059, 390 | "title": "Maine", 391 | "option1": "Maine", 392 | "option2": null, 393 | "option3": null, 394 | "sku": null, 395 | "requires_shipping": true, 396 | "taxable": true, 397 | "featured_image": null, 398 | "available": true, 399 | "price": "14.99", 400 | "grams": 113, 401 | "compare_at_price": "29.99", 402 | "position": 20, 403 | "product_id": 7642486767779, 404 | "created_at": "2022-05-16T12:52:41-04:00", 405 | "updated_at": "2022-11-06T09:58:21-05:00" 406 | }, 407 | { 408 | "id": 42510123761827, 409 | "title": "Maryland", 410 | "option1": "Maryland", 411 | "option2": null, 412 | "option3": null, 413 | "sku": null, 414 | "requires_shipping": true, 415 | "taxable": true, 416 | "featured_image": null, 417 | "available": true, 418 | "price": "14.99", 419 | "grams": 113, 420 | "compare_at_price": "29.99", 421 | "position": 21, 422 | "product_id": 7642486767779, 423 | "created_at": "2022-05-16T12:52:41-04:00", 424 | "updated_at": "2022-11-04T10:09:55-04:00" 425 | }, 426 | { 427 | "id": 42510123794595, 428 | "title": "Massachusetts", 429 | "option1": "Massachusetts", 430 | "option2": null, 431 | "option3": null, 432 | "sku": null, 433 | "requires_shipping": true, 434 | "taxable": true, 435 | "featured_image": null, 436 | "available": true, 437 | "price": "14.99", 438 | "grams": 113, 439 | "compare_at_price": "29.99", 440 | "position": 22, 441 | "product_id": 7642486767779, 442 | "created_at": "2022-05-16T12:52:41-04:00", 443 | "updated_at": "2022-05-16T12:52:41-04:00" 444 | }, 445 | { 446 | "id": 42510123827363, 447 | "title": "Michigan", 448 | "option1": "Michigan", 449 | "option2": null, 450 | "option3": null, 451 | "sku": null, 452 | "requires_shipping": true, 453 | "taxable": true, 454 | "featured_image": null, 455 | "available": true, 456 | "price": "14.99", 457 | "grams": 113, 458 | "compare_at_price": "29.99", 459 | "position": 23, 460 | "product_id": 7642486767779, 461 | "created_at": "2022-05-16T12:52:41-04:00", 462 | "updated_at": "2022-06-23T08:18:50-04:00" 463 | }, 464 | { 465 | "id": 42510123860131, 466 | "title": "Minnesota", 467 | "option1": "Minnesota", 468 | "option2": null, 469 | "option3": null, 470 | "sku": null, 471 | "requires_shipping": true, 472 | "taxable": true, 473 | "featured_image": null, 474 | "available": true, 475 | "price": "14.99", 476 | "grams": 113, 477 | "compare_at_price": "29.99", 478 | "position": 24, 479 | "product_id": 7642486767779, 480 | "created_at": "2022-05-16T12:52:41-04:00", 481 | "updated_at": "2022-11-09T09:53:30-05:00" 482 | }, 483 | { 484 | "id": 42510123892899, 485 | "title": "Mississippi", 486 | "option1": "Mississippi", 487 | "option2": null, 488 | "option3": null, 489 | "sku": null, 490 | "requires_shipping": true, 491 | "taxable": true, 492 | "featured_image": null, 493 | "available": true, 494 | "price": "14.99", 495 | "grams": 113, 496 | "compare_at_price": "29.99", 497 | "position": 25, 498 | "product_id": 7642486767779, 499 | "created_at": "2022-05-16T12:52:41-04:00", 500 | "updated_at": "2022-05-16T12:52:41-04:00" 501 | }, 502 | { 503 | "id": 42510123925667, 504 | "title": "Missouri", 505 | "option1": "Missouri", 506 | "option2": null, 507 | "option3": null, 508 | "sku": null, 509 | "requires_shipping": true, 510 | "taxable": true, 511 | "featured_image": null, 512 | "available": true, 513 | "price": "14.99", 514 | "grams": 113, 515 | "compare_at_price": "29.99", 516 | "position": 26, 517 | "product_id": 7642486767779, 518 | "created_at": "2022-05-16T12:52:41-04:00", 519 | "updated_at": "2022-05-16T12:52:41-04:00" 520 | }, 521 | { 522 | "id": 42510123958435, 523 | "title": "Montana", 524 | "option1": "Montana", 525 | "option2": null, 526 | "option3": null, 527 | "sku": null, 528 | "requires_shipping": true, 529 | "taxable": true, 530 | "featured_image": null, 531 | "available": true, 532 | "price": "14.99", 533 | "grams": 113, 534 | "compare_at_price": "29.99", 535 | "position": 27, 536 | "product_id": 7642486767779, 537 | "created_at": "2022-05-16T12:52:41-04:00", 538 | "updated_at": "2022-11-11T12:58:21-05:00" 539 | }, 540 | { 541 | "id": 42510123991203, 542 | "title": "Nebraska", 543 | "option1": "Nebraska", 544 | "option2": null, 545 | "option3": null, 546 | "sku": null, 547 | "requires_shipping": true, 548 | "taxable": true, 549 | "featured_image": null, 550 | "available": true, 551 | "price": "14.99", 552 | "grams": 113, 553 | "compare_at_price": "29.99", 554 | "position": 28, 555 | "product_id": 7642486767779, 556 | "created_at": "2022-05-16T12:52:41-04:00", 557 | "updated_at": "2022-11-14T19:28:42-05:00" 558 | }, 559 | { 560 | "id": 42510124023971, 561 | "title": "Nevada", 562 | "option1": "Nevada", 563 | "option2": null, 564 | "option3": null, 565 | "sku": null, 566 | "requires_shipping": true, 567 | "taxable": true, 568 | "featured_image": null, 569 | "available": true, 570 | "price": "14.99", 571 | "grams": 113, 572 | "compare_at_price": "29.99", 573 | "position": 29, 574 | "product_id": 7642486767779, 575 | "created_at": "2022-05-16T12:52:41-04:00", 576 | "updated_at": "2022-10-10T13:17:15-04:00" 577 | }, 578 | { 579 | "id": 42510124056739, 580 | "title": "New Hampshire", 581 | "option1": "New Hampshire", 582 | "option2": null, 583 | "option3": null, 584 | "sku": null, 585 | "requires_shipping": true, 586 | "taxable": true, 587 | "featured_image": null, 588 | "available": true, 589 | "price": "14.99", 590 | "grams": 113, 591 | "compare_at_price": "29.99", 592 | "position": 30, 593 | "product_id": 7642486767779, 594 | "created_at": "2022-05-16T12:52:41-04:00", 595 | "updated_at": "2022-11-14T17:20:15-05:00" 596 | }, 597 | { 598 | "id": 42510124089507, 599 | "title": "New Jersey", 600 | "option1": "New Jersey", 601 | "option2": null, 602 | "option3": null, 603 | "sku": null, 604 | "requires_shipping": true, 605 | "taxable": true, 606 | "featured_image": null, 607 | "available": true, 608 | "price": "14.99", 609 | "grams": 113, 610 | "compare_at_price": "29.99", 611 | "position": 31, 612 | "product_id": 7642486767779, 613 | "created_at": "2022-05-16T12:52:41-04:00", 614 | "updated_at": "2022-05-16T12:52:41-04:00" 615 | }, 616 | { 617 | "id": 42510124122275, 618 | "title": "New Mexico", 619 | "option1": "New Mexico", 620 | "option2": null, 621 | "option3": null, 622 | "sku": null, 623 | "requires_shipping": true, 624 | "taxable": true, 625 | "featured_image": null, 626 | "available": true, 627 | "price": "14.99", 628 | "grams": 113, 629 | "compare_at_price": "29.99", 630 | "position": 32, 631 | "product_id": 7642486767779, 632 | "created_at": "2022-05-16T12:52:41-04:00", 633 | "updated_at": "2022-11-10T22:29:16-05:00" 634 | }, 635 | { 636 | "id": 42510124155043, 637 | "title": "New York", 638 | "option1": "New York", 639 | "option2": null, 640 | "option3": null, 641 | "sku": null, 642 | "requires_shipping": true, 643 | "taxable": true, 644 | "featured_image": null, 645 | "available": true, 646 | "price": "14.99", 647 | "grams": 113, 648 | "compare_at_price": "29.99", 649 | "position": 33, 650 | "product_id": 7642486767779, 651 | "created_at": "2022-05-16T12:52:42-04:00", 652 | "updated_at": "2022-11-14T22:36:09-05:00" 653 | }, 654 | { 655 | "id": 42510124187811, 656 | "title": "North Carolina", 657 | "option1": "North Carolina", 658 | "option2": null, 659 | "option3": null, 660 | "sku": null, 661 | "requires_shipping": true, 662 | "taxable": true, 663 | "featured_image": null, 664 | "available": true, 665 | "price": "14.99", 666 | "grams": 113, 667 | "compare_at_price": "29.99", 668 | "position": 34, 669 | "product_id": 7642486767779, 670 | "created_at": "2022-05-16T12:52:42-04:00", 671 | "updated_at": "2022-05-16T12:52:42-04:00" 672 | }, 673 | { 674 | "id": 42510124220579, 675 | "title": "North Dakota", 676 | "option1": "North Dakota", 677 | "option2": null, 678 | "option3": null, 679 | "sku": null, 680 | "requires_shipping": true, 681 | "taxable": true, 682 | "featured_image": null, 683 | "available": true, 684 | "price": "14.99", 685 | "grams": 113, 686 | "compare_at_price": "29.99", 687 | "position": 35, 688 | "product_id": 7642486767779, 689 | "created_at": "2022-05-16T12:52:42-04:00", 690 | "updated_at": "2022-11-03T15:44:31-04:00" 691 | }, 692 | { 693 | "id": 42510124253347, 694 | "title": "Ohio", 695 | "option1": "Ohio", 696 | "option2": null, 697 | "option3": null, 698 | "sku": null, 699 | "requires_shipping": true, 700 | "taxable": true, 701 | "featured_image": null, 702 | "available": true, 703 | "price": "14.99", 704 | "grams": 113, 705 | "compare_at_price": "29.99", 706 | "position": 36, 707 | "product_id": 7642486767779, 708 | "created_at": "2022-05-16T12:52:42-04:00", 709 | "updated_at": "2022-05-16T12:52:42-04:00" 710 | }, 711 | { 712 | "id": 42510124286115, 713 | "title": "Oklahoma", 714 | "option1": "Oklahoma", 715 | "option2": null, 716 | "option3": null, 717 | "sku": null, 718 | "requires_shipping": true, 719 | "taxable": true, 720 | "featured_image": null, 721 | "available": true, 722 | "price": "14.99", 723 | "grams": 113, 724 | "compare_at_price": "29.99", 725 | "position": 37, 726 | "product_id": 7642486767779, 727 | "created_at": "2022-05-16T12:52:42-04:00", 728 | "updated_at": "2022-11-09T09:47:26-05:00" 729 | }, 730 | { 731 | "id": 42510124318883, 732 | "title": "Oregon", 733 | "option1": "Oregon", 734 | "option2": null, 735 | "option3": null, 736 | "sku": null, 737 | "requires_shipping": true, 738 | "taxable": true, 739 | "featured_image": null, 740 | "available": true, 741 | "price": "14.99", 742 | "grams": 113, 743 | "compare_at_price": "29.99", 744 | "position": 38, 745 | "product_id": 7642486767779, 746 | "created_at": "2022-05-16T12:52:42-04:00", 747 | "updated_at": "2022-11-12T23:09:42-05:00" 748 | }, 749 | { 750 | "id": 42510124351651, 751 | "title": "Pennsylvania", 752 | "option1": "Pennsylvania", 753 | "option2": null, 754 | "option3": null, 755 | "sku": null, 756 | "requires_shipping": true, 757 | "taxable": true, 758 | "featured_image": null, 759 | "available": true, 760 | "price": "14.99", 761 | "grams": 113, 762 | "compare_at_price": "29.99", 763 | "position": 39, 764 | "product_id": 7642486767779, 765 | "created_at": "2022-05-16T12:52:42-04:00", 766 | "updated_at": "2022-05-16T12:52:42-04:00" 767 | }, 768 | { 769 | "id": 42510124384419, 770 | "title": "Rhode Island", 771 | "option1": "Rhode Island", 772 | "option2": null, 773 | "option3": null, 774 | "sku": null, 775 | "requires_shipping": true, 776 | "taxable": true, 777 | "featured_image": null, 778 | "available": true, 779 | "price": "14.99", 780 | "grams": 113, 781 | "compare_at_price": "29.99", 782 | "position": 40, 783 | "product_id": 7642486767779, 784 | "created_at": "2022-05-16T12:52:42-04:00", 785 | "updated_at": "2022-08-12T18:16:30-04:00" 786 | }, 787 | { 788 | "id": 42510124417187, 789 | "title": "South Carolina", 790 | "option1": "South Carolina", 791 | "option2": null, 792 | "option3": null, 793 | "sku": null, 794 | "requires_shipping": true, 795 | "taxable": true, 796 | "featured_image": null, 797 | "available": true, 798 | "price": "14.99", 799 | "grams": 113, 800 | "compare_at_price": "29.99", 801 | "position": 41, 802 | "product_id": 7642486767779, 803 | "created_at": "2022-05-16T12:52:42-04:00", 804 | "updated_at": "2022-11-15T20:11:36-05:00" 805 | }, 806 | { 807 | "id": 42510124449955, 808 | "title": "South Dakota", 809 | "option1": "South Dakota", 810 | "option2": null, 811 | "option3": null, 812 | "sku": null, 813 | "requires_shipping": true, 814 | "taxable": true, 815 | "featured_image": null, 816 | "available": true, 817 | "price": "14.99", 818 | "grams": 113, 819 | "compare_at_price": "29.99", 820 | "position": 42, 821 | "product_id": 7642486767779, 822 | "created_at": "2022-05-16T12:52:42-04:00", 823 | "updated_at": "2022-05-16T12:52:42-04:00" 824 | }, 825 | { 826 | "id": 42510124482723, 827 | "title": "Tennessee", 828 | "option1": "Tennessee", 829 | "option2": null, 830 | "option3": null, 831 | "sku": null, 832 | "requires_shipping": true, 833 | "taxable": true, 834 | "featured_image": null, 835 | "available": true, 836 | "price": "14.99", 837 | "grams": 113, 838 | "compare_at_price": "29.99", 839 | "position": 43, 840 | "product_id": 7642486767779, 841 | "created_at": "2022-05-16T12:52:42-04:00", 842 | "updated_at": "2022-11-09T10:40:54-05:00" 843 | }, 844 | { 845 | "id": 42510124515491, 846 | "title": "Texas", 847 | "option1": "Texas", 848 | "option2": null, 849 | "option3": null, 850 | "sku": null, 851 | "requires_shipping": true, 852 | "taxable": true, 853 | "featured_image": null, 854 | "available": true, 855 | "price": "14.99", 856 | "grams": 113, 857 | "compare_at_price": "29.99", 858 | "position": 44, 859 | "product_id": 7642486767779, 860 | "created_at": "2022-05-16T12:52:42-04:00", 861 | "updated_at": "2022-08-08T17:30:12-04:00" 862 | }, 863 | { 864 | "id": 42510124548259, 865 | "title": "Utah", 866 | "option1": "Utah", 867 | "option2": null, 868 | "option3": null, 869 | "sku": null, 870 | "requires_shipping": true, 871 | "taxable": true, 872 | "featured_image": null, 873 | "available": true, 874 | "price": "14.99", 875 | "grams": 113, 876 | "compare_at_price": "29.99", 877 | "position": 45, 878 | "product_id": 7642486767779, 879 | "created_at": "2022-05-16T12:52:42-04:00", 880 | "updated_at": "2022-05-16T12:52:42-04:00" 881 | }, 882 | { 883 | "id": 42510124581027, 884 | "title": "Vermont", 885 | "option1": "Vermont", 886 | "option2": null, 887 | "option3": null, 888 | "sku": null, 889 | "requires_shipping": true, 890 | "taxable": true, 891 | "featured_image": null, 892 | "available": true, 893 | "price": "14.99", 894 | "grams": 113, 895 | "compare_at_price": "29.99", 896 | "position": 46, 897 | "product_id": 7642486767779, 898 | "created_at": "2022-05-16T12:52:42-04:00", 899 | "updated_at": "2022-11-14T11:30:00-05:00" 900 | }, 901 | { 902 | "id": 42510124613795, 903 | "title": "Virginia", 904 | "option1": "Virginia", 905 | "option2": null, 906 | "option3": null, 907 | "sku": null, 908 | "requires_shipping": true, 909 | "taxable": true, 910 | "featured_image": null, 911 | "available": true, 912 | "price": "14.99", 913 | "grams": 113, 914 | "compare_at_price": "29.99", 915 | "position": 47, 916 | "product_id": 7642486767779, 917 | "created_at": "2022-05-16T12:52:42-04:00", 918 | "updated_at": "2022-05-16T12:52:42-04:00" 919 | }, 920 | { 921 | "id": 42510124646563, 922 | "title": "Washington", 923 | "option1": "Washington", 924 | "option2": null, 925 | "option3": null, 926 | "sku": null, 927 | "requires_shipping": true, 928 | "taxable": true, 929 | "featured_image": null, 930 | "available": true, 931 | "price": "14.99", 932 | "grams": 113, 933 | "compare_at_price": "29.99", 934 | "position": 48, 935 | "product_id": 7642486767779, 936 | "created_at": "2022-05-16T12:52:42-04:00", 937 | "updated_at": "2022-11-14T19:17:56-05:00" 938 | }, 939 | { 940 | "id": 42510124679331, 941 | "title": "West Virginia", 942 | "option1": "West Virginia", 943 | "option2": null, 944 | "option3": null, 945 | "sku": null, 946 | "requires_shipping": true, 947 | "taxable": true, 948 | "featured_image": null, 949 | "available": true, 950 | "price": "14.99", 951 | "grams": 113, 952 | "compare_at_price": "29.99", 953 | "position": 49, 954 | "product_id": 7642486767779, 955 | "created_at": "2022-05-16T12:52:42-04:00", 956 | "updated_at": "2022-11-05T21:16:35-04:00" 957 | }, 958 | { 959 | "id": 42510124712099, 960 | "title": "Wisconsin", 961 | "option1": "Wisconsin", 962 | "option2": null, 963 | "option3": null, 964 | "sku": null, 965 | "requires_shipping": true, 966 | "taxable": true, 967 | "featured_image": null, 968 | "available": true, 969 | "price": "14.99", 970 | "grams": 113, 971 | "compare_at_price": "29.99", 972 | "position": 50, 973 | "product_id": 7642486767779, 974 | "created_at": "2022-05-16T12:52:42-04:00", 975 | "updated_at": "2022-11-08T23:01:41-05:00" 976 | }, 977 | { 978 | "id": 42510124744867, 979 | "title": "Wyoming", 980 | "option1": "Wyoming", 981 | "option2": null, 982 | "option3": null, 983 | "sku": null, 984 | "requires_shipping": true, 985 | "taxable": true, 986 | "featured_image": null, 987 | "available": true, 988 | "price": "14.99", 989 | "grams": 113, 990 | "compare_at_price": "29.99", 991 | "position": 51, 992 | "product_id": 7642486767779, 993 | "created_at": "2022-05-16T12:52:42-04:00", 994 | "updated_at": "2022-05-16T12:52:42-04:00" 995 | } 996 | ], 997 | "images": [ 998 | { 999 | "id": 34602576052387, 1000 | "created_at": "2022-05-16T12:52:47-04:00", 1001 | "position": 1, 1002 | "updated_at": "2022-05-16T12:52:47-04:00", 1003 | "product_id": 7642486767779, 1004 | "variant_ids": [], 1005 | "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0113\/5575\/0464\/products\/cwgreen.jpg?v=1652719967", 1006 | "width": 515, 1007 | "height": 600 1008 | } 1009 | ], 1010 | "options": [ 1011 | { 1012 | "name": "State", 1013 | "position": 1, 1014 | "values": [ 1015 | "Alabama", 1016 | "Alaska", 1017 | "Arizona", 1018 | "Arkansas", 1019 | "California", 1020 | "Colorado", 1021 | "Connecticut", 1022 | "Delaware", 1023 | "District of Columbia (DC)", 1024 | "Florida", 1025 | "Georgia", 1026 | "Hawaii", 1027 | "Idaho", 1028 | "Illinois", 1029 | "Indiana", 1030 | "Iowa", 1031 | "Kansas", 1032 | "Kentucky", 1033 | "Louisiana", 1034 | "Maine", 1035 | "Maryland", 1036 | "Massachusetts", 1037 | "Michigan", 1038 | "Minnesota", 1039 | "Mississippi", 1040 | "Missouri", 1041 | "Montana", 1042 | "Nebraska", 1043 | "Nevada", 1044 | "New Hampshire", 1045 | "New Jersey", 1046 | "New Mexico", 1047 | "New York", 1048 | "North Carolina", 1049 | "North Dakota", 1050 | "Ohio", 1051 | "Oklahoma", 1052 | "Oregon", 1053 | "Pennsylvania", 1054 | "Rhode Island", 1055 | "South Carolina", 1056 | "South Dakota", 1057 | "Tennessee", 1058 | "Texas", 1059 | "Utah", 1060 | "Vermont", 1061 | "Virginia", 1062 | "Washington", 1063 | "West Virginia", 1064 | "Wisconsin", 1065 | "Wyoming" 1066 | ] 1067 | } 1068 | ] 1069 | }, 1070 | { 1071 | "id": 1832429912128, 1072 | "title": "Yearly Subscription Laminated State and Federal Labor Law Poster", 1073 | "handle": "yearly-subscription-laminated-state-and-federal-labor-law-poster", 1074 | "body_html": "\u003cmeta charset=\"utf-8\"\u003e\u003cmeta charset=\"utf-8\"\u003e\u003cmeta charset=\"utf-8\"\u003e\n\u003cp\u003eThe\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003ePoster Subscription Service\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eis a combination of great value and peace of mind. For one small price per year you receive automatic State and Federal Labor Law Poster updates whenever a required change occurs. In the past you would have to purchase a new poster multiple times a year while diligently searching for updates in order to stay in compliance.\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWith our Poster Subscription Service you will never have to worry about Labor Law Posters again!\u003cspan\u003e\u00a0\u003c\/span\u003e\u003c\/strong\u003e\u003cbr\u003e\u003cbr\u003eOrdering your\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eState and Federal\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eall in one Labor Law Posters from the Labor Law Poster Store is your\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWORRY FREE\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eapproach to meeting the employer posting requirements. We have a team of professionals searching for updates on a daily basis. When you order from us you can rest easy knowing that you have the most up to date version available\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eEVERY SINGLE DAY!\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eOur laminated posters are made to last! Full color print with a double sided, air and water tight, industrial grade laminate. These posters will last in even the harshest workplace conditions.\u003cspan\u003e\u00a0\u003c\/span\u003e\u003c\/p\u003e\n\u003cp style=\"float: right;\"\u003eNeed peace of mind? These come with our\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWORRY FREE GUARANTEE!\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eIf our posters are\u00a0updated labor law posters are\u00a0not 100% up to date on the d\u003cimg alt=\"\" src=\"\/\/cdn.shopify.com\/s\/files\/1\/0113\/5575\/0464\/files\/cw_guar_medium.png?v=1544803414\" style=\"float: right; margin: 7px;\"\u003eay of purchase we will refund you in full AND replace your poster for FREE!\u003c\/p\u003e", 1075 | "published_at": "2018-12-14T11:02:47-05:00", 1076 | "created_at": "2018-12-14T11:22:59-05:00", 1077 | "updated_at": "2021-06-25T09:12:07-04:00", 1078 | "vendor": "Compliance Warehouse", 1079 | "product_type": "Subscription Labor Law Federal and State Poster", 1080 | "tags": [], 1081 | "variants": [ 1082 | { 1083 | "id": 18070317760576, 1084 | "title": "Alabama", 1085 | "option1": "Alabama", 1086 | "option2": null, 1087 | "option3": null, 1088 | "sku": "", 1089 | "requires_shipping": true, 1090 | "taxable": true, 1091 | "featured_image": null, 1092 | "available": true, 1093 | "price": "59.99", 1094 | "grams": 113, 1095 | "compare_at_price": "29.99", 1096 | "position": 1, 1097 | "product_id": 1832429912128, 1098 | "created_at": "2018-12-14T11:23:00-05:00", 1099 | "updated_at": "2018-12-14T11:24:29-05:00" 1100 | }, 1101 | { 1102 | "id": 18070317793344, 1103 | "title": "Alaska", 1104 | "option1": "Alaska", 1105 | "option2": null, 1106 | "option3": null, 1107 | "sku": "", 1108 | "requires_shipping": true, 1109 | "taxable": true, 1110 | "featured_image": null, 1111 | "available": true, 1112 | "price": "59.99", 1113 | "grams": 113, 1114 | "compare_at_price": "29.99", 1115 | "position": 2, 1116 | "product_id": 1832429912128, 1117 | "created_at": "2018-12-14T11:23:00-05:00", 1118 | "updated_at": "2018-12-14T11:24:29-05:00" 1119 | }, 1120 | { 1121 | "id": 18070317858880, 1122 | "title": "Arizona", 1123 | "option1": "Arizona", 1124 | "option2": null, 1125 | "option3": null, 1126 | "sku": "", 1127 | "requires_shipping": true, 1128 | "taxable": true, 1129 | "featured_image": null, 1130 | "available": true, 1131 | "price": "59.99", 1132 | "grams": 113, 1133 | "compare_at_price": "29.99", 1134 | "position": 3, 1135 | "product_id": 1832429912128, 1136 | "created_at": "2018-12-14T11:23:00-05:00", 1137 | "updated_at": "2018-12-14T11:24:29-05:00" 1138 | }, 1139 | { 1140 | "id": 18070317891648, 1141 | "title": "Arkansas", 1142 | "option1": "Arkansas", 1143 | "option2": null, 1144 | "option3": null, 1145 | "sku": "", 1146 | "requires_shipping": true, 1147 | "taxable": true, 1148 | "featured_image": null, 1149 | "available": true, 1150 | "price": "59.99", 1151 | "grams": 113, 1152 | "compare_at_price": "29.99", 1153 | "position": 4, 1154 | "product_id": 1832429912128, 1155 | "created_at": "2018-12-14T11:23:00-05:00", 1156 | "updated_at": "2018-12-14T11:24:29-05:00" 1157 | }, 1158 | { 1159 | "id": 18070317924416, 1160 | "title": "California", 1161 | "option1": "California", 1162 | "option2": null, 1163 | "option3": null, 1164 | "sku": "", 1165 | "requires_shipping": true, 1166 | "taxable": true, 1167 | "featured_image": null, 1168 | "available": true, 1169 | "price": "59.99", 1170 | "grams": 113, 1171 | "compare_at_price": "29.99", 1172 | "position": 5, 1173 | "product_id": 1832429912128, 1174 | "created_at": "2018-12-14T11:23:00-05:00", 1175 | "updated_at": "2018-12-14T11:24:29-05:00" 1176 | }, 1177 | { 1178 | "id": 18070317957184, 1179 | "title": "Colorado", 1180 | "option1": "Colorado", 1181 | "option2": null, 1182 | "option3": null, 1183 | "sku": "", 1184 | "requires_shipping": true, 1185 | "taxable": true, 1186 | "featured_image": null, 1187 | "available": true, 1188 | "price": "59.99", 1189 | "grams": 113, 1190 | "compare_at_price": "29.99", 1191 | "position": 6, 1192 | "product_id": 1832429912128, 1193 | "created_at": "2018-12-14T11:23:00-05:00", 1194 | "updated_at": "2018-12-14T11:24:30-05:00" 1195 | }, 1196 | { 1197 | "id": 18070317989952, 1198 | "title": "Connecticut", 1199 | "option1": "Connecticut", 1200 | "option2": null, 1201 | "option3": null, 1202 | "sku": "", 1203 | "requires_shipping": true, 1204 | "taxable": true, 1205 | "featured_image": null, 1206 | "available": true, 1207 | "price": "59.99", 1208 | "grams": 113, 1209 | "compare_at_price": "29.99", 1210 | "position": 7, 1211 | "product_id": 1832429912128, 1212 | "created_at": "2018-12-14T11:23:00-05:00", 1213 | "updated_at": "2018-12-14T11:24:30-05:00" 1214 | }, 1215 | { 1216 | "id": 18070318022720, 1217 | "title": "Delaware", 1218 | "option1": "Delaware", 1219 | "option2": null, 1220 | "option3": null, 1221 | "sku": "", 1222 | "requires_shipping": true, 1223 | "taxable": true, 1224 | "featured_image": null, 1225 | "available": true, 1226 | "price": "59.99", 1227 | "grams": 113, 1228 | "compare_at_price": "29.99", 1229 | "position": 8, 1230 | "product_id": 1832429912128, 1231 | "created_at": "2018-12-14T11:23:00-05:00", 1232 | "updated_at": "2018-12-14T11:24:30-05:00" 1233 | }, 1234 | { 1235 | "id": 18070318055488, 1236 | "title": "District of Columbia (DC)", 1237 | "option1": "District of Columbia (DC)", 1238 | "option2": null, 1239 | "option3": null, 1240 | "sku": "", 1241 | "requires_shipping": true, 1242 | "taxable": true, 1243 | "featured_image": null, 1244 | "available": true, 1245 | "price": "59.99", 1246 | "grams": 113, 1247 | "compare_at_price": "29.99", 1248 | "position": 9, 1249 | "product_id": 1832429912128, 1250 | "created_at": "2018-12-14T11:23:00-05:00", 1251 | "updated_at": "2018-12-14T11:24:30-05:00" 1252 | }, 1253 | { 1254 | "id": 18070318088256, 1255 | "title": "Florida", 1256 | "option1": "Florida", 1257 | "option2": null, 1258 | "option3": null, 1259 | "sku": "", 1260 | "requires_shipping": true, 1261 | "taxable": true, 1262 | "featured_image": null, 1263 | "available": true, 1264 | "price": "59.99", 1265 | "grams": 113, 1266 | "compare_at_price": "29.99", 1267 | "position": 10, 1268 | "product_id": 1832429912128, 1269 | "created_at": "2018-12-14T11:23:00-05:00", 1270 | "updated_at": "2021-09-27T17:52:21-04:00" 1271 | }, 1272 | { 1273 | "id": 18070318121024, 1274 | "title": "Georgia", 1275 | "option1": "Georgia", 1276 | "option2": null, 1277 | "option3": null, 1278 | "sku": "", 1279 | "requires_shipping": true, 1280 | "taxable": true, 1281 | "featured_image": null, 1282 | "available": true, 1283 | "price": "59.99", 1284 | "grams": 113, 1285 | "compare_at_price": "29.99", 1286 | "position": 11, 1287 | "product_id": 1832429912128, 1288 | "created_at": "2018-12-14T11:23:00-05:00", 1289 | "updated_at": "2018-12-14T11:24:30-05:00" 1290 | }, 1291 | { 1292 | "id": 18070318153792, 1293 | "title": "Hawaii", 1294 | "option1": "Hawaii", 1295 | "option2": null, 1296 | "option3": null, 1297 | "sku": "", 1298 | "requires_shipping": true, 1299 | "taxable": true, 1300 | "featured_image": null, 1301 | "available": true, 1302 | "price": "59.99", 1303 | "grams": 113, 1304 | "compare_at_price": "29.99", 1305 | "position": 12, 1306 | "product_id": 1832429912128, 1307 | "created_at": "2018-12-14T11:23:00-05:00", 1308 | "updated_at": "2018-12-14T11:24:30-05:00" 1309 | }, 1310 | { 1311 | "id": 18070318186560, 1312 | "title": "Idaho", 1313 | "option1": "Idaho", 1314 | "option2": null, 1315 | "option3": null, 1316 | "sku": "", 1317 | "requires_shipping": true, 1318 | "taxable": true, 1319 | "featured_image": null, 1320 | "available": true, 1321 | "price": "59.99", 1322 | "grams": 113, 1323 | "compare_at_price": "29.99", 1324 | "position": 13, 1325 | "product_id": 1832429912128, 1326 | "created_at": "2018-12-14T11:23:00-05:00", 1327 | "updated_at": "2018-12-14T11:24:30-05:00" 1328 | }, 1329 | { 1330 | "id": 18070318219328, 1331 | "title": "Illinois", 1332 | "option1": "Illinois", 1333 | "option2": null, 1334 | "option3": null, 1335 | "sku": "", 1336 | "requires_shipping": true, 1337 | "taxable": true, 1338 | "featured_image": null, 1339 | "available": true, 1340 | "price": "59.99", 1341 | "grams": 113, 1342 | "compare_at_price": "29.99", 1343 | "position": 14, 1344 | "product_id": 1832429912128, 1345 | "created_at": "2018-12-14T11:23:00-05:00", 1346 | "updated_at": "2018-12-14T11:24:30-05:00" 1347 | }, 1348 | { 1349 | "id": 18070318252096, 1350 | "title": "Indiana", 1351 | "option1": "Indiana", 1352 | "option2": null, 1353 | "option3": null, 1354 | "sku": "", 1355 | "requires_shipping": true, 1356 | "taxable": true, 1357 | "featured_image": null, 1358 | "available": true, 1359 | "price": "59.99", 1360 | "grams": 113, 1361 | "compare_at_price": "29.99", 1362 | "position": 15, 1363 | "product_id": 1832429912128, 1364 | "created_at": "2018-12-14T11:23:00-05:00", 1365 | "updated_at": "2018-12-14T11:24:31-05:00" 1366 | }, 1367 | { 1368 | "id": 18070318317632, 1369 | "title": "Iowa", 1370 | "option1": "Iowa", 1371 | "option2": null, 1372 | "option3": null, 1373 | "sku": "", 1374 | "requires_shipping": true, 1375 | "taxable": true, 1376 | "featured_image": null, 1377 | "available": true, 1378 | "price": "59.99", 1379 | "grams": 113, 1380 | "compare_at_price": "29.99", 1381 | "position": 16, 1382 | "product_id": 1832429912128, 1383 | "created_at": "2018-12-14T11:23:00-05:00", 1384 | "updated_at": "2018-12-14T11:24:31-05:00" 1385 | }, 1386 | { 1387 | "id": 18070318350400, 1388 | "title": "Kansas", 1389 | "option1": "Kansas", 1390 | "option2": null, 1391 | "option3": null, 1392 | "sku": "", 1393 | "requires_shipping": true, 1394 | "taxable": true, 1395 | "featured_image": null, 1396 | "available": true, 1397 | "price": "59.99", 1398 | "grams": 113, 1399 | "compare_at_price": "29.99", 1400 | "position": 17, 1401 | "product_id": 1832429912128, 1402 | "created_at": "2018-12-14T11:23:00-05:00", 1403 | "updated_at": "2018-12-14T11:24:31-05:00" 1404 | }, 1405 | { 1406 | "id": 18070318415936, 1407 | "title": "Kentucky", 1408 | "option1": "Kentucky", 1409 | "option2": null, 1410 | "option3": null, 1411 | "sku": "", 1412 | "requires_shipping": true, 1413 | "taxable": true, 1414 | "featured_image": null, 1415 | "available": true, 1416 | "price": "59.99", 1417 | "grams": 113, 1418 | "compare_at_price": "29.99", 1419 | "position": 18, 1420 | "product_id": 1832429912128, 1421 | "created_at": "2018-12-14T11:23:00-05:00", 1422 | "updated_at": "2018-12-14T11:24:31-05:00" 1423 | }, 1424 | { 1425 | "id": 18070318481472, 1426 | "title": "Louisiana", 1427 | "option1": "Louisiana", 1428 | "option2": null, 1429 | "option3": null, 1430 | "sku": "", 1431 | "requires_shipping": true, 1432 | "taxable": true, 1433 | "featured_image": null, 1434 | "available": true, 1435 | "price": "59.99", 1436 | "grams": 113, 1437 | "compare_at_price": "29.99", 1438 | "position": 19, 1439 | "product_id": 1832429912128, 1440 | "created_at": "2018-12-14T11:23:00-05:00", 1441 | "updated_at": "2018-12-14T11:24:31-05:00" 1442 | }, 1443 | { 1444 | "id": 18070318514240, 1445 | "title": "Maine", 1446 | "option1": "Maine", 1447 | "option2": null, 1448 | "option3": null, 1449 | "sku": "", 1450 | "requires_shipping": true, 1451 | "taxable": true, 1452 | "featured_image": null, 1453 | "available": true, 1454 | "price": "59.99", 1455 | "grams": 113, 1456 | "compare_at_price": "29.99", 1457 | "position": 20, 1458 | "product_id": 1832429912128, 1459 | "created_at": "2018-12-14T11:23:00-05:00", 1460 | "updated_at": "2018-12-14T11:24:31-05:00" 1461 | }, 1462 | { 1463 | "id": 18070318612544, 1464 | "title": "Maryland", 1465 | "option1": "Maryland", 1466 | "option2": null, 1467 | "option3": null, 1468 | "sku": "", 1469 | "requires_shipping": true, 1470 | "taxable": true, 1471 | "featured_image": null, 1472 | "available": true, 1473 | "price": "59.99", 1474 | "grams": 113, 1475 | "compare_at_price": "29.99", 1476 | "position": 21, 1477 | "product_id": 1832429912128, 1478 | "created_at": "2018-12-14T11:23:00-05:00", 1479 | "updated_at": "2018-12-14T11:24:31-05:00" 1480 | }, 1481 | { 1482 | "id": 18070318678080, 1483 | "title": "Massachusetts", 1484 | "option1": "Massachusetts", 1485 | "option2": null, 1486 | "option3": null, 1487 | "sku": "", 1488 | "requires_shipping": true, 1489 | "taxable": true, 1490 | "featured_image": null, 1491 | "available": true, 1492 | "price": "59.99", 1493 | "grams": 113, 1494 | "compare_at_price": "29.99", 1495 | "position": 22, 1496 | "product_id": 1832429912128, 1497 | "created_at": "2018-12-14T11:23:00-05:00", 1498 | "updated_at": "2018-12-14T11:24:31-05:00" 1499 | }, 1500 | { 1501 | "id": 18070318743616, 1502 | "title": "Michigan", 1503 | "option1": "Michigan", 1504 | "option2": null, 1505 | "option3": null, 1506 | "sku": "", 1507 | "requires_shipping": true, 1508 | "taxable": true, 1509 | "featured_image": null, 1510 | "available": true, 1511 | "price": "59.99", 1512 | "grams": 113, 1513 | "compare_at_price": "29.99", 1514 | "position": 23, 1515 | "product_id": 1832429912128, 1516 | "created_at": "2018-12-14T11:23:00-05:00", 1517 | "updated_at": "2018-12-14T11:24:31-05:00" 1518 | }, 1519 | { 1520 | "id": 18070318809152, 1521 | "title": "Minnesota", 1522 | "option1": "Minnesota", 1523 | "option2": null, 1524 | "option3": null, 1525 | "sku": "", 1526 | "requires_shipping": true, 1527 | "taxable": true, 1528 | "featured_image": null, 1529 | "available": true, 1530 | "price": "59.99", 1531 | "grams": 113, 1532 | "compare_at_price": "29.99", 1533 | "position": 24, 1534 | "product_id": 1832429912128, 1535 | "created_at": "2018-12-14T11:23:00-05:00", 1536 | "updated_at": "2018-12-14T11:24:32-05:00" 1537 | }, 1538 | { 1539 | "id": 18070318874688, 1540 | "title": "Mississippi", 1541 | "option1": "Mississippi", 1542 | "option2": null, 1543 | "option3": null, 1544 | "sku": "", 1545 | "requires_shipping": true, 1546 | "taxable": true, 1547 | "featured_image": null, 1548 | "available": true, 1549 | "price": "59.99", 1550 | "grams": 113, 1551 | "compare_at_price": "29.99", 1552 | "position": 25, 1553 | "product_id": 1832429912128, 1554 | "created_at": "2018-12-14T11:23:00-05:00", 1555 | "updated_at": "2018-12-14T11:24:32-05:00" 1556 | }, 1557 | { 1558 | "id": 18070318940224, 1559 | "title": "Missouri", 1560 | "option1": "Missouri", 1561 | "option2": null, 1562 | "option3": null, 1563 | "sku": "", 1564 | "requires_shipping": true, 1565 | "taxable": true, 1566 | "featured_image": null, 1567 | "available": true, 1568 | "price": "59.99", 1569 | "grams": 113, 1570 | "compare_at_price": "29.99", 1571 | "position": 26, 1572 | "product_id": 1832429912128, 1573 | "created_at": "2018-12-14T11:23:00-05:00", 1574 | "updated_at": "2018-12-14T11:24:32-05:00" 1575 | }, 1576 | { 1577 | "id": 18070319005760, 1578 | "title": "Montana", 1579 | "option1": "Montana", 1580 | "option2": null, 1581 | "option3": null, 1582 | "sku": "", 1583 | "requires_shipping": true, 1584 | "taxable": true, 1585 | "featured_image": null, 1586 | "available": true, 1587 | "price": "59.99", 1588 | "grams": 113, 1589 | "compare_at_price": "29.99", 1590 | "position": 27, 1591 | "product_id": 1832429912128, 1592 | "created_at": "2018-12-14T11:23:00-05:00", 1593 | "updated_at": "2018-12-14T11:24:32-05:00" 1594 | }, 1595 | { 1596 | "id": 18070319071296, 1597 | "title": "Nebraska", 1598 | "option1": "Nebraska", 1599 | "option2": null, 1600 | "option3": null, 1601 | "sku": "", 1602 | "requires_shipping": true, 1603 | "taxable": true, 1604 | "featured_image": null, 1605 | "available": true, 1606 | "price": "59.99", 1607 | "grams": 113, 1608 | "compare_at_price": "29.99", 1609 | "position": 28, 1610 | "product_id": 1832429912128, 1611 | "created_at": "2018-12-14T11:23:00-05:00", 1612 | "updated_at": "2018-12-14T11:24:32-05:00" 1613 | }, 1614 | { 1615 | "id": 18070319136832, 1616 | "title": "Nevada", 1617 | "option1": "Nevada", 1618 | "option2": null, 1619 | "option3": null, 1620 | "sku": "", 1621 | "requires_shipping": true, 1622 | "taxable": true, 1623 | "featured_image": null, 1624 | "available": true, 1625 | "price": "59.99", 1626 | "grams": 113, 1627 | "compare_at_price": "29.99", 1628 | "position": 29, 1629 | "product_id": 1832429912128, 1630 | "created_at": "2018-12-14T11:23:00-05:00", 1631 | "updated_at": "2018-12-14T11:24:32-05:00" 1632 | }, 1633 | { 1634 | "id": 18070319202368, 1635 | "title": "New Hampshire", 1636 | "option1": "New Hampshire", 1637 | "option2": null, 1638 | "option3": null, 1639 | "sku": "", 1640 | "requires_shipping": true, 1641 | "taxable": true, 1642 | "featured_image": null, 1643 | "available": true, 1644 | "price": "59.99", 1645 | "grams": 113, 1646 | "compare_at_price": "29.99", 1647 | "position": 30, 1648 | "product_id": 1832429912128, 1649 | "created_at": "2018-12-14T11:23:00-05:00", 1650 | "updated_at": "2018-12-14T11:24:32-05:00" 1651 | }, 1652 | { 1653 | "id": 18070319235136, 1654 | "title": "New Jersey", 1655 | "option1": "New Jersey", 1656 | "option2": null, 1657 | "option3": null, 1658 | "sku": "", 1659 | "requires_shipping": true, 1660 | "taxable": true, 1661 | "featured_image": null, 1662 | "available": true, 1663 | "price": "59.99", 1664 | "grams": 113, 1665 | "compare_at_price": "29.99", 1666 | "position": 31, 1667 | "product_id": 1832429912128, 1668 | "created_at": "2018-12-14T11:23:00-05:00", 1669 | "updated_at": "2018-12-14T11:24:32-05:00" 1670 | }, 1671 | { 1672 | "id": 18070319300672, 1673 | "title": "New Mexico", 1674 | "option1": "New Mexico", 1675 | "option2": null, 1676 | "option3": null, 1677 | "sku": "", 1678 | "requires_shipping": true, 1679 | "taxable": true, 1680 | "featured_image": null, 1681 | "available": true, 1682 | "price": "59.99", 1683 | "grams": 113, 1684 | "compare_at_price": "29.99", 1685 | "position": 32, 1686 | "product_id": 1832429912128, 1687 | "created_at": "2018-12-14T11:23:00-05:00", 1688 | "updated_at": "2018-12-14T11:24:32-05:00" 1689 | }, 1690 | { 1691 | "id": 18070319333440, 1692 | "title": "New York", 1693 | "option1": "New York", 1694 | "option2": null, 1695 | "option3": null, 1696 | "sku": "", 1697 | "requires_shipping": true, 1698 | "taxable": true, 1699 | "featured_image": null, 1700 | "available": true, 1701 | "price": "59.99", 1702 | "grams": 113, 1703 | "compare_at_price": "29.99", 1704 | "position": 33, 1705 | "product_id": 1832429912128, 1706 | "created_at": "2018-12-14T11:23:00-05:00", 1707 | "updated_at": "2018-12-14T11:24:33-05:00" 1708 | }, 1709 | { 1710 | "id": 18070319398976, 1711 | "title": "North Carolina", 1712 | "option1": "North Carolina", 1713 | "option2": null, 1714 | "option3": null, 1715 | "sku": "", 1716 | "requires_shipping": true, 1717 | "taxable": true, 1718 | "featured_image": null, 1719 | "available": true, 1720 | "price": "59.99", 1721 | "grams": 113, 1722 | "compare_at_price": "29.99", 1723 | "position": 34, 1724 | "product_id": 1832429912128, 1725 | "created_at": "2018-12-14T11:23:00-05:00", 1726 | "updated_at": "2018-12-14T11:24:33-05:00" 1727 | }, 1728 | { 1729 | "id": 18070319431744, 1730 | "title": "North Dakota", 1731 | "option1": "North Dakota", 1732 | "option2": null, 1733 | "option3": null, 1734 | "sku": "", 1735 | "requires_shipping": true, 1736 | "taxable": true, 1737 | "featured_image": null, 1738 | "available": true, 1739 | "price": "59.99", 1740 | "grams": 113, 1741 | "compare_at_price": "29.99", 1742 | "position": 35, 1743 | "product_id": 1832429912128, 1744 | "created_at": "2018-12-14T11:23:00-05:00", 1745 | "updated_at": "2018-12-14T11:24:33-05:00" 1746 | }, 1747 | { 1748 | "id": 18070319464512, 1749 | "title": "Ohio", 1750 | "option1": "Ohio", 1751 | "option2": null, 1752 | "option3": null, 1753 | "sku": "", 1754 | "requires_shipping": true, 1755 | "taxable": true, 1756 | "featured_image": null, 1757 | "available": true, 1758 | "price": "59.99", 1759 | "grams": 113, 1760 | "compare_at_price": "29.99", 1761 | "position": 36, 1762 | "product_id": 1832429912128, 1763 | "created_at": "2018-12-14T11:23:00-05:00", 1764 | "updated_at": "2018-12-14T11:24:33-05:00" 1765 | }, 1766 | { 1767 | "id": 18070319497280, 1768 | "title": "Oklahoma", 1769 | "option1": "Oklahoma", 1770 | "option2": null, 1771 | "option3": null, 1772 | "sku": "", 1773 | "requires_shipping": true, 1774 | "taxable": true, 1775 | "featured_image": null, 1776 | "available": true, 1777 | "price": "59.99", 1778 | "grams": 113, 1779 | "compare_at_price": "29.99", 1780 | "position": 37, 1781 | "product_id": 1832429912128, 1782 | "created_at": "2018-12-14T11:23:00-05:00", 1783 | "updated_at": "2018-12-14T11:24:33-05:00" 1784 | }, 1785 | { 1786 | "id": 18070319530048, 1787 | "title": "Oregon", 1788 | "option1": "Oregon", 1789 | "option2": null, 1790 | "option3": null, 1791 | "sku": "", 1792 | "requires_shipping": true, 1793 | "taxable": true, 1794 | "featured_image": null, 1795 | "available": true, 1796 | "price": "59.99", 1797 | "grams": 113, 1798 | "compare_at_price": "29.99", 1799 | "position": 38, 1800 | "product_id": 1832429912128, 1801 | "created_at": "2018-12-14T11:23:00-05:00", 1802 | "updated_at": "2018-12-14T11:24:33-05:00" 1803 | }, 1804 | { 1805 | "id": 18070319562816, 1806 | "title": "Pennsylvania", 1807 | "option1": "Pennsylvania", 1808 | "option2": null, 1809 | "option3": null, 1810 | "sku": "", 1811 | "requires_shipping": true, 1812 | "taxable": true, 1813 | "featured_image": null, 1814 | "available": true, 1815 | "price": "59.99", 1816 | "grams": 113, 1817 | "compare_at_price": "29.99", 1818 | "position": 39, 1819 | "product_id": 1832429912128, 1820 | "created_at": "2018-12-14T11:23:00-05:00", 1821 | "updated_at": "2018-12-14T11:24:33-05:00" 1822 | }, 1823 | { 1824 | "id": 18070319595584, 1825 | "title": "Rhode Island", 1826 | "option1": "Rhode Island", 1827 | "option2": null, 1828 | "option3": null, 1829 | "sku": "", 1830 | "requires_shipping": true, 1831 | "taxable": true, 1832 | "featured_image": null, 1833 | "available": true, 1834 | "price": "59.99", 1835 | "grams": 113, 1836 | "compare_at_price": "29.99", 1837 | "position": 40, 1838 | "product_id": 1832429912128, 1839 | "created_at": "2018-12-14T11:23:00-05:00", 1840 | "updated_at": "2018-12-14T11:24:34-05:00" 1841 | }, 1842 | { 1843 | "id": 18070319628352, 1844 | "title": "South Carolina", 1845 | "option1": "South Carolina", 1846 | "option2": null, 1847 | "option3": null, 1848 | "sku": "", 1849 | "requires_shipping": true, 1850 | "taxable": true, 1851 | "featured_image": null, 1852 | "available": true, 1853 | "price": "59.99", 1854 | "grams": 113, 1855 | "compare_at_price": "29.99", 1856 | "position": 41, 1857 | "product_id": 1832429912128, 1858 | "created_at": "2018-12-14T11:23:00-05:00", 1859 | "updated_at": "2018-12-14T11:24:34-05:00" 1860 | }, 1861 | { 1862 | "id": 18070319661120, 1863 | "title": "South Dakota", 1864 | "option1": "South Dakota", 1865 | "option2": null, 1866 | "option3": null, 1867 | "sku": "", 1868 | "requires_shipping": true, 1869 | "taxable": true, 1870 | "featured_image": null, 1871 | "available": true, 1872 | "price": "59.99", 1873 | "grams": 113, 1874 | "compare_at_price": "29.99", 1875 | "position": 42, 1876 | "product_id": 1832429912128, 1877 | "created_at": "2018-12-14T11:23:00-05:00", 1878 | "updated_at": "2018-12-14T11:24:34-05:00" 1879 | }, 1880 | { 1881 | "id": 18070319693888, 1882 | "title": "Tennessee", 1883 | "option1": "Tennessee", 1884 | "option2": null, 1885 | "option3": null, 1886 | "sku": "", 1887 | "requires_shipping": true, 1888 | "taxable": true, 1889 | "featured_image": null, 1890 | "available": true, 1891 | "price": "59.99", 1892 | "grams": 113, 1893 | "compare_at_price": "29.99", 1894 | "position": 43, 1895 | "product_id": 1832429912128, 1896 | "created_at": "2018-12-14T11:23:00-05:00", 1897 | "updated_at": "2018-12-14T11:24:34-05:00" 1898 | }, 1899 | { 1900 | "id": 18070319726656, 1901 | "title": "Texas", 1902 | "option1": "Texas", 1903 | "option2": null, 1904 | "option3": null, 1905 | "sku": "", 1906 | "requires_shipping": true, 1907 | "taxable": true, 1908 | "featured_image": null, 1909 | "available": true, 1910 | "price": "59.99", 1911 | "grams": 113, 1912 | "compare_at_price": "29.99", 1913 | "position": 44, 1914 | "product_id": 1832429912128, 1915 | "created_at": "2018-12-14T11:23:00-05:00", 1916 | "updated_at": "2018-12-14T11:24:34-05:00" 1917 | }, 1918 | { 1919 | "id": 18070319759424, 1920 | "title": "Utah", 1921 | "option1": "Utah", 1922 | "option2": null, 1923 | "option3": null, 1924 | "sku": "", 1925 | "requires_shipping": true, 1926 | "taxable": true, 1927 | "featured_image": null, 1928 | "available": true, 1929 | "price": "59.99", 1930 | "grams": 113, 1931 | "compare_at_price": "29.99", 1932 | "position": 45, 1933 | "product_id": 1832429912128, 1934 | "created_at": "2018-12-14T11:23:00-05:00", 1935 | "updated_at": "2018-12-14T11:24:34-05:00" 1936 | }, 1937 | { 1938 | "id": 18070319792192, 1939 | "title": "Vermont", 1940 | "option1": "Vermont", 1941 | "option2": null, 1942 | "option3": null, 1943 | "sku": "", 1944 | "requires_shipping": true, 1945 | "taxable": true, 1946 | "featured_image": null, 1947 | "available": true, 1948 | "price": "59.99", 1949 | "grams": 113, 1950 | "compare_at_price": "29.99", 1951 | "position": 46, 1952 | "product_id": 1832429912128, 1953 | "created_at": "2018-12-14T11:23:00-05:00", 1954 | "updated_at": "2018-12-14T11:24:34-05:00" 1955 | }, 1956 | { 1957 | "id": 18070319824960, 1958 | "title": "Virginia", 1959 | "option1": "Virginia", 1960 | "option2": null, 1961 | "option3": null, 1962 | "sku": "", 1963 | "requires_shipping": true, 1964 | "taxable": true, 1965 | "featured_image": null, 1966 | "available": true, 1967 | "price": "59.99", 1968 | "grams": 113, 1969 | "compare_at_price": "29.99", 1970 | "position": 47, 1971 | "product_id": 1832429912128, 1972 | "created_at": "2018-12-14T11:23:00-05:00", 1973 | "updated_at": "2018-12-14T11:24:34-05:00" 1974 | }, 1975 | { 1976 | "id": 18070319857728, 1977 | "title": "Washington", 1978 | "option1": "Washington", 1979 | "option2": null, 1980 | "option3": null, 1981 | "sku": "", 1982 | "requires_shipping": true, 1983 | "taxable": true, 1984 | "featured_image": null, 1985 | "available": true, 1986 | "price": "59.99", 1987 | "grams": 113, 1988 | "compare_at_price": "29.99", 1989 | "position": 48, 1990 | "product_id": 1832429912128, 1991 | "created_at": "2018-12-14T11:23:00-05:00", 1992 | "updated_at": "2018-12-14T11:24:34-05:00" 1993 | }, 1994 | { 1995 | "id": 18070319890496, 1996 | "title": "West Virginia", 1997 | "option1": "West Virginia", 1998 | "option2": null, 1999 | "option3": null, 2000 | "sku": "", 2001 | "requires_shipping": true, 2002 | "taxable": true, 2003 | "featured_image": null, 2004 | "available": true, 2005 | "price": "59.99", 2006 | "grams": 113, 2007 | "compare_at_price": "29.99", 2008 | "position": 49, 2009 | "product_id": 1832429912128, 2010 | "created_at": "2018-12-14T11:23:00-05:00", 2011 | "updated_at": "2018-12-14T11:24:34-05:00" 2012 | }, 2013 | { 2014 | "id": 18070319923264, 2015 | "title": "Wisconsin", 2016 | "option1": "Wisconsin", 2017 | "option2": null, 2018 | "option3": null, 2019 | "sku": "", 2020 | "requires_shipping": true, 2021 | "taxable": true, 2022 | "featured_image": null, 2023 | "available": true, 2024 | "price": "59.99", 2025 | "grams": 113, 2026 | "compare_at_price": "29.99", 2027 | "position": 50, 2028 | "product_id": 1832429912128, 2029 | "created_at": "2018-12-14T11:23:00-05:00", 2030 | "updated_at": "2018-12-14T11:24:35-05:00" 2031 | }, 2032 | { 2033 | "id": 18070319956032, 2034 | "title": "Wyoming", 2035 | "option1": "Wyoming", 2036 | "option2": null, 2037 | "option3": null, 2038 | "sku": "", 2039 | "requires_shipping": true, 2040 | "taxable": true, 2041 | "featured_image": null, 2042 | "available": true, 2043 | "price": "59.99", 2044 | "grams": 113, 2045 | "compare_at_price": "29.99", 2046 | "position": 51, 2047 | "product_id": 1832429912128, 2048 | "created_at": "2018-12-14T11:23:00-05:00", 2049 | "updated_at": "2018-12-14T11:24:35-05:00" 2050 | } 2051 | ], 2052 | "images": [ 2053 | { 2054 | "id": 5564887793728, 2055 | "created_at": "2018-12-14T11:23:04-05:00", 2056 | "position": 1, 2057 | "updated_at": "2019-04-23T11:09:15-04:00", 2058 | "product_id": 1832429912128, 2059 | "variant_ids": [], 2060 | "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0113\/5575\/0464\/products\/cwgreen_b5035d52-53d1-4b3c-a569-950c896eb50b.jpeg?v=1556032155", 2061 | "width": 515, 2062 | "height": 600 2063 | } 2064 | ], 2065 | "options": [ 2066 | { 2067 | "name": "State", 2068 | "position": 1, 2069 | "values": [ 2070 | "Alabama", 2071 | "Alaska", 2072 | "Arizona", 2073 | "Arkansas", 2074 | "California", 2075 | "Colorado", 2076 | "Connecticut", 2077 | "Delaware", 2078 | "District of Columbia (DC)", 2079 | "Florida", 2080 | "Georgia", 2081 | "Hawaii", 2082 | "Idaho", 2083 | "Illinois", 2084 | "Indiana", 2085 | "Iowa", 2086 | "Kansas", 2087 | "Kentucky", 2088 | "Louisiana", 2089 | "Maine", 2090 | "Maryland", 2091 | "Massachusetts", 2092 | "Michigan", 2093 | "Minnesota", 2094 | "Mississippi", 2095 | "Missouri", 2096 | "Montana", 2097 | "Nebraska", 2098 | "Nevada", 2099 | "New Hampshire", 2100 | "New Jersey", 2101 | "New Mexico", 2102 | "New York", 2103 | "North Carolina", 2104 | "North Dakota", 2105 | "Ohio", 2106 | "Oklahoma", 2107 | "Oregon", 2108 | "Pennsylvania", 2109 | "Rhode Island", 2110 | "South Carolina", 2111 | "South Dakota", 2112 | "Tennessee", 2113 | "Texas", 2114 | "Utah", 2115 | "Vermont", 2116 | "Virginia", 2117 | "Washington", 2118 | "West Virginia", 2119 | "Wisconsin", 2120 | "Wyoming" 2121 | ] 2122 | } 2123 | ] 2124 | }, 2125 | { 2126 | "id": 1832380465216, 2127 | "title": "Laminated State and Federal Labor Law Poster", 2128 | "handle": "laminated-state-and-federal-labor-law-poster", 2129 | "body_html": "\u003cmeta charset=\"utf-8\"\u003e\u003cmeta charset=\"utf-8\"\u003e\n\u003cp\u003eOrdering your\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eState and Federal\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eall in one Labor Law Posters from the Labor Law Poster Store is your\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWORRY FREE\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eapproach to meeting the employer posting requirements. We have a team of professionals searching for updates on a daily basis. When you order from us you can rest easy knowing that you have the most up to date version available\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eEVERY SINGLE DAY!\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eOur laminated posters are made to last! Full color print with a double sided, air and water tight, industrial grade laminate. These posters will last in even the harshest workplace conditions.\u003cspan\u003e\u00a0\u003c\/span\u003e\u003c\/p\u003e\n\u003cp style=\"float: right;\"\u003eNeed peace of mind? These come with our\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWORRY FREE GUARANTEE!\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eIf our posters are\u00a0updated labor law posters are\u00a0not 100% up to date on the d\u003cimg alt=\"\" src=\"\/\/cdn.shopify.com\/s\/files\/1\/0113\/5575\/0464\/files\/cw_guar_medium.png?v=1544803414\" style=\"float: right; margin: 7px;\"\u003eay of purchase we will refund you in full AND replace your poster for FREE!\u003c\/p\u003e", 2130 | "published_at": "2018-12-14T11:02:47-05:00", 2131 | "created_at": "2018-12-14T11:18:01-05:00", 2132 | "updated_at": "2023-01-06T09:50:01-05:00", 2133 | "vendor": "Compliance Warehouse", 2134 | "product_type": "Laminated Labor Law Poster", 2135 | "tags": [], 2136 | "variants": [ 2137 | { 2138 | "id": 18070084223040, 2139 | "title": "Alabama", 2140 | "option1": "Alabama", 2141 | "option2": null, 2142 | "option3": null, 2143 | "sku": "", 2144 | "requires_shipping": true, 2145 | "taxable": true, 2146 | "featured_image": null, 2147 | "available": true, 2148 | "price": "29.99", 2149 | "grams": 113, 2150 | "compare_at_price": "29.99", 2151 | "position": 1, 2152 | "product_id": 1832380465216, 2153 | "created_at": "2018-12-14T11:18:01-05:00", 2154 | "updated_at": "2018-12-14T11:21:01-05:00" 2155 | }, 2156 | { 2157 | "id": 18070084255808, 2158 | "title": "Alaska", 2159 | "option1": "Alaska", 2160 | "option2": null, 2161 | "option3": null, 2162 | "sku": "", 2163 | "requires_shipping": true, 2164 | "taxable": true, 2165 | "featured_image": null, 2166 | "available": true, 2167 | "price": "29.99", 2168 | "grams": 113, 2169 | "compare_at_price": "29.99", 2170 | "position": 2, 2171 | "product_id": 1832380465216, 2172 | "created_at": "2018-12-14T11:18:01-05:00", 2173 | "updated_at": "2018-12-14T11:21:01-05:00" 2174 | }, 2175 | { 2176 | "id": 18070084321344, 2177 | "title": "Arizona", 2178 | "option1": "Arizona", 2179 | "option2": null, 2180 | "option3": null, 2181 | "sku": "", 2182 | "requires_shipping": true, 2183 | "taxable": true, 2184 | "featured_image": null, 2185 | "available": true, 2186 | "price": "29.99", 2187 | "grams": 113, 2188 | "compare_at_price": "29.99", 2189 | "position": 3, 2190 | "product_id": 1832380465216, 2191 | "created_at": "2018-12-14T11:18:01-05:00", 2192 | "updated_at": "2020-01-03T09:34:00-05:00" 2193 | }, 2194 | { 2195 | "id": 18070084386880, 2196 | "title": "Arkansas", 2197 | "option1": "Arkansas", 2198 | "option2": null, 2199 | "option3": null, 2200 | "sku": "", 2201 | "requires_shipping": true, 2202 | "taxable": true, 2203 | "featured_image": null, 2204 | "available": true, 2205 | "price": "29.99", 2206 | "grams": 113, 2207 | "compare_at_price": "29.99", 2208 | "position": 4, 2209 | "product_id": 1832380465216, 2210 | "created_at": "2018-12-14T11:18:01-05:00", 2211 | "updated_at": "2018-12-14T11:21:01-05:00" 2212 | }, 2213 | { 2214 | "id": 18070084419648, 2215 | "title": "California", 2216 | "option1": "California", 2217 | "option2": null, 2218 | "option3": null, 2219 | "sku": "", 2220 | "requires_shipping": true, 2221 | "taxable": true, 2222 | "featured_image": null, 2223 | "available": true, 2224 | "price": "29.99", 2225 | "grams": 113, 2226 | "compare_at_price": "29.99", 2227 | "position": 5, 2228 | "product_id": 1832380465216, 2229 | "created_at": "2018-12-14T11:18:01-05:00", 2230 | "updated_at": "2018-12-14T11:21:01-05:00" 2231 | }, 2232 | { 2233 | "id": 18070084485184, 2234 | "title": "Colorado", 2235 | "option1": "Colorado", 2236 | "option2": null, 2237 | "option3": null, 2238 | "sku": "", 2239 | "requires_shipping": true, 2240 | "taxable": true, 2241 | "featured_image": null, 2242 | "available": true, 2243 | "price": "29.99", 2244 | "grams": 113, 2245 | "compare_at_price": "29.99", 2246 | "position": 6, 2247 | "product_id": 1832380465216, 2248 | "created_at": "2018-12-14T11:18:01-05:00", 2249 | "updated_at": "2018-12-14T11:21:01-05:00" 2250 | }, 2251 | { 2252 | "id": 18070084550720, 2253 | "title": "Connecticut", 2254 | "option1": "Connecticut", 2255 | "option2": null, 2256 | "option3": null, 2257 | "sku": "", 2258 | "requires_shipping": true, 2259 | "taxable": true, 2260 | "featured_image": null, 2261 | "available": true, 2262 | "price": "29.99", 2263 | "grams": 113, 2264 | "compare_at_price": "29.99", 2265 | "position": 7, 2266 | "product_id": 1832380465216, 2267 | "created_at": "2018-12-14T11:18:01-05:00", 2268 | "updated_at": "2018-12-14T11:21:01-05:00" 2269 | }, 2270 | { 2271 | "id": 18070084583488, 2272 | "title": "Delaware", 2273 | "option1": "Delaware", 2274 | "option2": null, 2275 | "option3": null, 2276 | "sku": "", 2277 | "requires_shipping": true, 2278 | "taxable": true, 2279 | "featured_image": null, 2280 | "available": true, 2281 | "price": "29.99", 2282 | "grams": 113, 2283 | "compare_at_price": "29.99", 2284 | "position": 8, 2285 | "product_id": 1832380465216, 2286 | "created_at": "2018-12-14T11:18:01-05:00", 2287 | "updated_at": "2018-12-14T11:21:01-05:00" 2288 | }, 2289 | { 2290 | "id": 18070084649024, 2291 | "title": "District of Columbia (DC)", 2292 | "option1": "District of Columbia (DC)", 2293 | "option2": null, 2294 | "option3": null, 2295 | "sku": "", 2296 | "requires_shipping": true, 2297 | "taxable": true, 2298 | "featured_image": null, 2299 | "available": true, 2300 | "price": "29.99", 2301 | "grams": 113, 2302 | "compare_at_price": "29.99", 2303 | "position": 9, 2304 | "product_id": 1832380465216, 2305 | "created_at": "2018-12-14T11:18:01-05:00", 2306 | "updated_at": "2018-12-14T11:21:01-05:00" 2307 | }, 2308 | { 2309 | "id": 18070084681792, 2310 | "title": "Florida", 2311 | "option1": "Florida", 2312 | "option2": null, 2313 | "option3": null, 2314 | "sku": "", 2315 | "requires_shipping": true, 2316 | "taxable": true, 2317 | "featured_image": null, 2318 | "available": true, 2319 | "price": "29.99", 2320 | "grams": 113, 2321 | "compare_at_price": "29.99", 2322 | "position": 10, 2323 | "product_id": 1832380465216, 2324 | "created_at": "2018-12-14T11:18:01-05:00", 2325 | "updated_at": "2023-01-06T09:47:11-05:00" 2326 | }, 2327 | { 2328 | "id": 18070084747328, 2329 | "title": "Georgia", 2330 | "option1": "Georgia", 2331 | "option2": null, 2332 | "option3": null, 2333 | "sku": "", 2334 | "requires_shipping": true, 2335 | "taxable": true, 2336 | "featured_image": null, 2337 | "available": true, 2338 | "price": "29.99", 2339 | "grams": 113, 2340 | "compare_at_price": "29.99", 2341 | "position": 11, 2342 | "product_id": 1832380465216, 2343 | "created_at": "2018-12-14T11:18:01-05:00", 2344 | "updated_at": "2018-12-14T11:21:01-05:00" 2345 | }, 2346 | { 2347 | "id": 18070084780096, 2348 | "title": "Hawaii", 2349 | "option1": "Hawaii", 2350 | "option2": null, 2351 | "option3": null, 2352 | "sku": "", 2353 | "requires_shipping": true, 2354 | "taxable": true, 2355 | "featured_image": null, 2356 | "available": true, 2357 | "price": "29.99", 2358 | "grams": 113, 2359 | "compare_at_price": "29.99", 2360 | "position": 12, 2361 | "product_id": 1832380465216, 2362 | "created_at": "2018-12-14T11:18:01-05:00", 2363 | "updated_at": "2018-12-14T11:21:01-05:00" 2364 | }, 2365 | { 2366 | "id": 18070084845632, 2367 | "title": "Idaho", 2368 | "option1": "Idaho", 2369 | "option2": null, 2370 | "option3": null, 2371 | "sku": "", 2372 | "requires_shipping": true, 2373 | "taxable": true, 2374 | "featured_image": null, 2375 | "available": true, 2376 | "price": "29.99", 2377 | "grams": 113, 2378 | "compare_at_price": "29.99", 2379 | "position": 13, 2380 | "product_id": 1832380465216, 2381 | "created_at": "2018-12-14T11:18:01-05:00", 2382 | "updated_at": "2018-12-14T11:21:01-05:00" 2383 | }, 2384 | { 2385 | "id": 18070084878400, 2386 | "title": "Illinois", 2387 | "option1": "Illinois", 2388 | "option2": null, 2389 | "option3": null, 2390 | "sku": "", 2391 | "requires_shipping": true, 2392 | "taxable": true, 2393 | "featured_image": null, 2394 | "available": true, 2395 | "price": "29.99", 2396 | "grams": 113, 2397 | "compare_at_price": "29.99", 2398 | "position": 14, 2399 | "product_id": 1832380465216, 2400 | "created_at": "2018-12-14T11:18:01-05:00", 2401 | "updated_at": "2022-12-06T10:47:50-05:00" 2402 | }, 2403 | { 2404 | "id": 18070084943936, 2405 | "title": "Indiana", 2406 | "option1": "Indiana", 2407 | "option2": null, 2408 | "option3": null, 2409 | "sku": "", 2410 | "requires_shipping": true, 2411 | "taxable": true, 2412 | "featured_image": null, 2413 | "available": true, 2414 | "price": "29.99", 2415 | "grams": 113, 2416 | "compare_at_price": "29.99", 2417 | "position": 15, 2418 | "product_id": 1832380465216, 2419 | "created_at": "2018-12-14T11:18:01-05:00", 2420 | "updated_at": "2019-12-10T16:21:00-05:00" 2421 | }, 2422 | { 2423 | "id": 18070085009472, 2424 | "title": "Iowa", 2425 | "option1": "Iowa", 2426 | "option2": null, 2427 | "option3": null, 2428 | "sku": "", 2429 | "requires_shipping": true, 2430 | "taxable": true, 2431 | "featured_image": null, 2432 | "available": true, 2433 | "price": "29.99", 2434 | "grams": 113, 2435 | "compare_at_price": "29.99", 2436 | "position": 16, 2437 | "product_id": 1832380465216, 2438 | "created_at": "2018-12-14T11:18:01-05:00", 2439 | "updated_at": "2020-07-15T16:00:11-04:00" 2440 | }, 2441 | { 2442 | "id": 18070085042240, 2443 | "title": "Kansas", 2444 | "option1": "Kansas", 2445 | "option2": null, 2446 | "option3": null, 2447 | "sku": "", 2448 | "requires_shipping": true, 2449 | "taxable": true, 2450 | "featured_image": null, 2451 | "available": true, 2452 | "price": "29.99", 2453 | "grams": 113, 2454 | "compare_at_price": "29.99", 2455 | "position": 17, 2456 | "product_id": 1832380465216, 2457 | "created_at": "2018-12-14T11:18:01-05:00", 2458 | "updated_at": "2018-12-14T11:21:01-05:00" 2459 | }, 2460 | { 2461 | "id": 18070085140544, 2462 | "title": "Kentucky", 2463 | "option1": "Kentucky", 2464 | "option2": null, 2465 | "option3": null, 2466 | "sku": "", 2467 | "requires_shipping": true, 2468 | "taxable": true, 2469 | "featured_image": null, 2470 | "available": true, 2471 | "price": "29.99", 2472 | "grams": 113, 2473 | "compare_at_price": "29.99", 2474 | "position": 18, 2475 | "product_id": 1832380465216, 2476 | "created_at": "2018-12-14T11:18:01-05:00", 2477 | "updated_at": "2018-12-14T11:21:01-05:00" 2478 | }, 2479 | { 2480 | "id": 18070085173312, 2481 | "title": "Louisiana", 2482 | "option1": "Louisiana", 2483 | "option2": null, 2484 | "option3": null, 2485 | "sku": "", 2486 | "requires_shipping": true, 2487 | "taxable": true, 2488 | "featured_image": null, 2489 | "available": true, 2490 | "price": "29.99", 2491 | "grams": 113, 2492 | "compare_at_price": "29.99", 2493 | "position": 19, 2494 | "product_id": 1832380465216, 2495 | "created_at": "2018-12-14T11:18:01-05:00", 2496 | "updated_at": "2018-12-14T11:21:01-05:00" 2497 | }, 2498 | { 2499 | "id": 18070085238848, 2500 | "title": "Maine", 2501 | "option1": "Maine", 2502 | "option2": null, 2503 | "option3": null, 2504 | "sku": "", 2505 | "requires_shipping": true, 2506 | "taxable": true, 2507 | "featured_image": null, 2508 | "available": true, 2509 | "price": "29.99", 2510 | "grams": 113, 2511 | "compare_at_price": "29.99", 2512 | "position": 20, 2513 | "product_id": 1832380465216, 2514 | "created_at": "2018-12-14T11:18:01-05:00", 2515 | "updated_at": "2018-12-14T11:21:01-05:00" 2516 | }, 2517 | { 2518 | "id": 18070085271616, 2519 | "title": "Maryland", 2520 | "option1": "Maryland", 2521 | "option2": null, 2522 | "option3": null, 2523 | "sku": "", 2524 | "requires_shipping": true, 2525 | "taxable": true, 2526 | "featured_image": null, 2527 | "available": true, 2528 | "price": "29.99", 2529 | "grams": 113, 2530 | "compare_at_price": "29.99", 2531 | "position": 21, 2532 | "product_id": 1832380465216, 2533 | "created_at": "2018-12-14T11:18:01-05:00", 2534 | "updated_at": "2019-12-05T12:03:51-05:00" 2535 | }, 2536 | { 2537 | "id": 18070085337152, 2538 | "title": "Massachusetts", 2539 | "option1": "Massachusetts", 2540 | "option2": null, 2541 | "option3": null, 2542 | "sku": "", 2543 | "requires_shipping": true, 2544 | "taxable": true, 2545 | "featured_image": null, 2546 | "available": true, 2547 | "price": "29.99", 2548 | "grams": 113, 2549 | "compare_at_price": "29.99", 2550 | "position": 22, 2551 | "product_id": 1832380465216, 2552 | "created_at": "2018-12-14T11:18:01-05:00", 2553 | "updated_at": "2018-12-14T11:21:01-05:00" 2554 | }, 2555 | { 2556 | "id": 18070085402688, 2557 | "title": "Michigan", 2558 | "option1": "Michigan", 2559 | "option2": null, 2560 | "option3": null, 2561 | "sku": "", 2562 | "requires_shipping": true, 2563 | "taxable": true, 2564 | "featured_image": null, 2565 | "available": true, 2566 | "price": "29.99", 2567 | "grams": 113, 2568 | "compare_at_price": "29.99", 2569 | "position": 23, 2570 | "product_id": 1832380465216, 2571 | "created_at": "2018-12-14T11:18:01-05:00", 2572 | "updated_at": "2020-01-07T14:24:31-05:00" 2573 | }, 2574 | { 2575 | "id": 18070085435456, 2576 | "title": "Minnesota", 2577 | "option1": "Minnesota", 2578 | "option2": null, 2579 | "option3": null, 2580 | "sku": "", 2581 | "requires_shipping": true, 2582 | "taxable": true, 2583 | "featured_image": null, 2584 | "available": true, 2585 | "price": "29.99", 2586 | "grams": 113, 2587 | "compare_at_price": "29.99", 2588 | "position": 24, 2589 | "product_id": 1832380465216, 2590 | "created_at": "2018-12-14T11:18:01-05:00", 2591 | "updated_at": "2020-05-11T09:58:30-04:00" 2592 | }, 2593 | { 2594 | "id": 18070085500992, 2595 | "title": "Mississippi", 2596 | "option1": "Mississippi", 2597 | "option2": null, 2598 | "option3": null, 2599 | "sku": "", 2600 | "requires_shipping": true, 2601 | "taxable": true, 2602 | "featured_image": null, 2603 | "available": true, 2604 | "price": "29.99", 2605 | "grams": 113, 2606 | "compare_at_price": "29.99", 2607 | "position": 25, 2608 | "product_id": 1832380465216, 2609 | "created_at": "2018-12-14T11:18:01-05:00", 2610 | "updated_at": "2018-12-14T11:21:01-05:00" 2611 | }, 2612 | { 2613 | "id": 18070085566528, 2614 | "title": "Missouri", 2615 | "option1": "Missouri", 2616 | "option2": null, 2617 | "option3": null, 2618 | "sku": "", 2619 | "requires_shipping": true, 2620 | "taxable": true, 2621 | "featured_image": null, 2622 | "available": true, 2623 | "price": "29.99", 2624 | "grams": 113, 2625 | "compare_at_price": "29.99", 2626 | "position": 26, 2627 | "product_id": 1832380465216, 2628 | "created_at": "2018-12-14T11:18:01-05:00", 2629 | "updated_at": "2020-03-05T15:02:02-05:00" 2630 | }, 2631 | { 2632 | "id": 18070085599296, 2633 | "title": "Montana", 2634 | "option1": "Montana", 2635 | "option2": null, 2636 | "option3": null, 2637 | "sku": "", 2638 | "requires_shipping": true, 2639 | "taxable": true, 2640 | "featured_image": null, 2641 | "available": true, 2642 | "price": "29.99", 2643 | "grams": 113, 2644 | "compare_at_price": "29.99", 2645 | "position": 27, 2646 | "product_id": 1832380465216, 2647 | "created_at": "2018-12-14T11:18:01-05:00", 2648 | "updated_at": "2018-12-14T11:21:02-05:00" 2649 | }, 2650 | { 2651 | "id": 18070085664832, 2652 | "title": "Nebraska", 2653 | "option1": "Nebraska", 2654 | "option2": null, 2655 | "option3": null, 2656 | "sku": "", 2657 | "requires_shipping": true, 2658 | "taxable": true, 2659 | "featured_image": null, 2660 | "available": true, 2661 | "price": "29.99", 2662 | "grams": 113, 2663 | "compare_at_price": "29.99", 2664 | "position": 28, 2665 | "product_id": 1832380465216, 2666 | "created_at": "2018-12-14T11:18:02-05:00", 2667 | "updated_at": "2018-12-14T11:21:02-05:00" 2668 | }, 2669 | { 2670 | "id": 18070085730368, 2671 | "title": "Nevada", 2672 | "option1": "Nevada", 2673 | "option2": null, 2674 | "option3": null, 2675 | "sku": "", 2676 | "requires_shipping": true, 2677 | "taxable": true, 2678 | "featured_image": null, 2679 | "available": true, 2680 | "price": "29.99", 2681 | "grams": 113, 2682 | "compare_at_price": "29.99", 2683 | "position": 29, 2684 | "product_id": 1832380465216, 2685 | "created_at": "2018-12-14T11:18:02-05:00", 2686 | "updated_at": "2018-12-14T11:21:02-05:00" 2687 | }, 2688 | { 2689 | "id": 18070085795904, 2690 | "title": "New Hampshire", 2691 | "option1": "New Hampshire", 2692 | "option2": null, 2693 | "option3": null, 2694 | "sku": "", 2695 | "requires_shipping": true, 2696 | "taxable": true, 2697 | "featured_image": null, 2698 | "available": true, 2699 | "price": "29.99", 2700 | "grams": 113, 2701 | "compare_at_price": "29.99", 2702 | "position": 30, 2703 | "product_id": 1832380465216, 2704 | "created_at": "2018-12-14T11:18:02-05:00", 2705 | "updated_at": "2018-12-14T11:21:02-05:00" 2706 | }, 2707 | { 2708 | "id": 18070085828672, 2709 | "title": "New Jersey", 2710 | "option1": "New Jersey", 2711 | "option2": null, 2712 | "option3": null, 2713 | "sku": "", 2714 | "requires_shipping": true, 2715 | "taxable": true, 2716 | "featured_image": null, 2717 | "available": true, 2718 | "price": "29.99", 2719 | "grams": 113, 2720 | "compare_at_price": "29.99", 2721 | "position": 31, 2722 | "product_id": 1832380465216, 2723 | "created_at": "2018-12-14T11:18:02-05:00", 2724 | "updated_at": "2018-12-14T11:21:02-05:00" 2725 | }, 2726 | { 2727 | "id": 18070085926976, 2728 | "title": "New Mexico", 2729 | "option1": "New Mexico", 2730 | "option2": null, 2731 | "option3": null, 2732 | "sku": "", 2733 | "requires_shipping": true, 2734 | "taxable": true, 2735 | "featured_image": null, 2736 | "available": true, 2737 | "price": "29.99", 2738 | "grams": 113, 2739 | "compare_at_price": "29.99", 2740 | "position": 32, 2741 | "product_id": 1832380465216, 2742 | "created_at": "2018-12-14T11:18:02-05:00", 2743 | "updated_at": "2018-12-14T11:21:02-05:00" 2744 | }, 2745 | { 2746 | "id": 18070086025280, 2747 | "title": "New York", 2748 | "option1": "New York", 2749 | "option2": null, 2750 | "option3": null, 2751 | "sku": "", 2752 | "requires_shipping": true, 2753 | "taxable": true, 2754 | "featured_image": null, 2755 | "available": true, 2756 | "price": "29.99", 2757 | "grams": 113, 2758 | "compare_at_price": "29.99", 2759 | "position": 33, 2760 | "product_id": 1832380465216, 2761 | "created_at": "2018-12-14T11:18:02-05:00", 2762 | "updated_at": "2018-12-14T11:21:02-05:00" 2763 | }, 2764 | { 2765 | "id": 18070086090816, 2766 | "title": "North Carolina", 2767 | "option1": "North Carolina", 2768 | "option2": null, 2769 | "option3": null, 2770 | "sku": "", 2771 | "requires_shipping": true, 2772 | "taxable": true, 2773 | "featured_image": null, 2774 | "available": true, 2775 | "price": "29.99", 2776 | "grams": 113, 2777 | "compare_at_price": "29.99", 2778 | "position": 34, 2779 | "product_id": 1832380465216, 2780 | "created_at": "2018-12-14T11:18:02-05:00", 2781 | "updated_at": "2018-12-14T11:21:02-05:00" 2782 | }, 2783 | { 2784 | "id": 18070086189120, 2785 | "title": "North Dakota", 2786 | "option1": "North Dakota", 2787 | "option2": null, 2788 | "option3": null, 2789 | "sku": "", 2790 | "requires_shipping": true, 2791 | "taxable": true, 2792 | "featured_image": null, 2793 | "available": true, 2794 | "price": "29.99", 2795 | "grams": 113, 2796 | "compare_at_price": "29.99", 2797 | "position": 35, 2798 | "product_id": 1832380465216, 2799 | "created_at": "2018-12-14T11:18:02-05:00", 2800 | "updated_at": "2018-12-14T11:21:02-05:00" 2801 | }, 2802 | { 2803 | "id": 18070086254656, 2804 | "title": "Ohio", 2805 | "option1": "Ohio", 2806 | "option2": null, 2807 | "option3": null, 2808 | "sku": "", 2809 | "requires_shipping": true, 2810 | "taxable": true, 2811 | "featured_image": null, 2812 | "available": true, 2813 | "price": "29.99", 2814 | "grams": 113, 2815 | "compare_at_price": "29.99", 2816 | "position": 36, 2817 | "product_id": 1832380465216, 2818 | "created_at": "2018-12-14T11:18:02-05:00", 2819 | "updated_at": "2021-07-27T13:34:49-04:00" 2820 | }, 2821 | { 2822 | "id": 18070086320192, 2823 | "title": "Oklahoma", 2824 | "option1": "Oklahoma", 2825 | "option2": null, 2826 | "option3": null, 2827 | "sku": "", 2828 | "requires_shipping": true, 2829 | "taxable": true, 2830 | "featured_image": null, 2831 | "available": true, 2832 | "price": "29.99", 2833 | "grams": 113, 2834 | "compare_at_price": "29.99", 2835 | "position": 37, 2836 | "product_id": 1832380465216, 2837 | "created_at": "2018-12-14T11:18:02-05:00", 2838 | "updated_at": "2018-12-14T11:21:02-05:00" 2839 | }, 2840 | { 2841 | "id": 18070086385728, 2842 | "title": "Oregon", 2843 | "option1": "Oregon", 2844 | "option2": null, 2845 | "option3": null, 2846 | "sku": "", 2847 | "requires_shipping": true, 2848 | "taxable": true, 2849 | "featured_image": null, 2850 | "available": true, 2851 | "price": "29.99", 2852 | "grams": 113, 2853 | "compare_at_price": "29.99", 2854 | "position": 38, 2855 | "product_id": 1832380465216, 2856 | "created_at": "2018-12-14T11:18:02-05:00", 2857 | "updated_at": "2018-12-14T11:21:02-05:00" 2858 | }, 2859 | { 2860 | "id": 18070086451264, 2861 | "title": "Pennsylvania", 2862 | "option1": "Pennsylvania", 2863 | "option2": null, 2864 | "option3": null, 2865 | "sku": "", 2866 | "requires_shipping": true, 2867 | "taxable": true, 2868 | "featured_image": null, 2869 | "available": true, 2870 | "price": "29.99", 2871 | "grams": 113, 2872 | "compare_at_price": "29.99", 2873 | "position": 39, 2874 | "product_id": 1832380465216, 2875 | "created_at": "2018-12-14T11:18:02-05:00", 2876 | "updated_at": "2018-12-14T11:21:02-05:00" 2877 | }, 2878 | { 2879 | "id": 18070086516800, 2880 | "title": "Rhode Island", 2881 | "option1": "Rhode Island", 2882 | "option2": null, 2883 | "option3": null, 2884 | "sku": "", 2885 | "requires_shipping": true, 2886 | "taxable": true, 2887 | "featured_image": null, 2888 | "available": true, 2889 | "price": "29.99", 2890 | "grams": 113, 2891 | "compare_at_price": "29.99", 2892 | "position": 40, 2893 | "product_id": 1832380465216, 2894 | "created_at": "2018-12-14T11:18:02-05:00", 2895 | "updated_at": "2018-12-14T11:21:02-05:00" 2896 | }, 2897 | { 2898 | "id": 18070086582336, 2899 | "title": "South Carolina", 2900 | "option1": "South Carolina", 2901 | "option2": null, 2902 | "option3": null, 2903 | "sku": "", 2904 | "requires_shipping": true, 2905 | "taxable": true, 2906 | "featured_image": null, 2907 | "available": true, 2908 | "price": "29.99", 2909 | "grams": 113, 2910 | "compare_at_price": "29.99", 2911 | "position": 41, 2912 | "product_id": 1832380465216, 2913 | "created_at": "2018-12-14T11:18:02-05:00", 2914 | "updated_at": "2018-12-14T11:21:02-05:00" 2915 | }, 2916 | { 2917 | "id": 18070086680640, 2918 | "title": "South Dakota", 2919 | "option1": "South Dakota", 2920 | "option2": null, 2921 | "option3": null, 2922 | "sku": "", 2923 | "requires_shipping": true, 2924 | "taxable": true, 2925 | "featured_image": null, 2926 | "available": true, 2927 | "price": "29.99", 2928 | "grams": 113, 2929 | "compare_at_price": "29.99", 2930 | "position": 42, 2931 | "product_id": 1832380465216, 2932 | "created_at": "2018-12-14T11:18:02-05:00", 2933 | "updated_at": "2018-12-14T11:21:02-05:00" 2934 | }, 2935 | { 2936 | "id": 18070086746176, 2937 | "title": "Tennessee", 2938 | "option1": "Tennessee", 2939 | "option2": null, 2940 | "option3": null, 2941 | "sku": "", 2942 | "requires_shipping": true, 2943 | "taxable": true, 2944 | "featured_image": null, 2945 | "available": true, 2946 | "price": "29.99", 2947 | "grams": 113, 2948 | "compare_at_price": "29.99", 2949 | "position": 43, 2950 | "product_id": 1832380465216, 2951 | "created_at": "2018-12-14T11:18:02-05:00", 2952 | "updated_at": "2018-12-14T11:21:02-05:00" 2953 | }, 2954 | { 2955 | "id": 18070086844480, 2956 | "title": "Texas", 2957 | "option1": "Texas", 2958 | "option2": null, 2959 | "option3": null, 2960 | "sku": "", 2961 | "requires_shipping": true, 2962 | "taxable": true, 2963 | "featured_image": null, 2964 | "available": true, 2965 | "price": "29.99", 2966 | "grams": 113, 2967 | "compare_at_price": "29.99", 2968 | "position": 44, 2969 | "product_id": 1832380465216, 2970 | "created_at": "2018-12-14T11:18:02-05:00", 2971 | "updated_at": "2018-12-14T11:21:02-05:00" 2972 | }, 2973 | { 2974 | "id": 18070086877248, 2975 | "title": "Utah", 2976 | "option1": "Utah", 2977 | "option2": null, 2978 | "option3": null, 2979 | "sku": "", 2980 | "requires_shipping": true, 2981 | "taxable": true, 2982 | "featured_image": null, 2983 | "available": true, 2984 | "price": "29.99", 2985 | "grams": 113, 2986 | "compare_at_price": "29.99", 2987 | "position": 45, 2988 | "product_id": 1832380465216, 2989 | "created_at": "2018-12-14T11:18:02-05:00", 2990 | "updated_at": "2018-12-14T11:21:02-05:00" 2991 | }, 2992 | { 2993 | "id": 18070086975552, 2994 | "title": "Vermont", 2995 | "option1": "Vermont", 2996 | "option2": null, 2997 | "option3": null, 2998 | "sku": "", 2999 | "requires_shipping": true, 3000 | "taxable": true, 3001 | "featured_image": null, 3002 | "available": true, 3003 | "price": "29.99", 3004 | "grams": 113, 3005 | "compare_at_price": "29.99", 3006 | "position": 46, 3007 | "product_id": 1832380465216, 3008 | "created_at": "2018-12-14T11:18:02-05:00", 3009 | "updated_at": "2018-12-14T11:21:02-05:00" 3010 | }, 3011 | { 3012 | "id": 18070087041088, 3013 | "title": "Virginia", 3014 | "option1": "Virginia", 3015 | "option2": null, 3016 | "option3": null, 3017 | "sku": "", 3018 | "requires_shipping": true, 3019 | "taxable": true, 3020 | "featured_image": null, 3021 | "available": true, 3022 | "price": "29.99", 3023 | "grams": 113, 3024 | "compare_at_price": "29.99", 3025 | "position": 47, 3026 | "product_id": 1832380465216, 3027 | "created_at": "2018-12-14T11:18:02-05:00", 3028 | "updated_at": "2018-12-14T11:21:02-05:00" 3029 | }, 3030 | { 3031 | "id": 18070087106624, 3032 | "title": "Washington", 3033 | "option1": "Washington", 3034 | "option2": null, 3035 | "option3": null, 3036 | "sku": "", 3037 | "requires_shipping": true, 3038 | "taxable": true, 3039 | "featured_image": null, 3040 | "available": true, 3041 | "price": "29.99", 3042 | "grams": 113, 3043 | "compare_at_price": "29.99", 3044 | "position": 48, 3045 | "product_id": 1832380465216, 3046 | "created_at": "2018-12-14T11:18:02-05:00", 3047 | "updated_at": "2020-05-04T11:56:00-04:00" 3048 | }, 3049 | { 3050 | "id": 18070087204928, 3051 | "title": "West Virginia", 3052 | "option1": "West Virginia", 3053 | "option2": null, 3054 | "option3": null, 3055 | "sku": "", 3056 | "requires_shipping": true, 3057 | "taxable": true, 3058 | "featured_image": null, 3059 | "available": true, 3060 | "price": "29.99", 3061 | "grams": 113, 3062 | "compare_at_price": "29.99", 3063 | "position": 49, 3064 | "product_id": 1832380465216, 3065 | "created_at": "2018-12-14T11:18:02-05:00", 3066 | "updated_at": "2020-05-13T16:12:15-04:00" 3067 | }, 3068 | { 3069 | "id": 18070087303232, 3070 | "title": "Wisconsin", 3071 | "option1": "Wisconsin", 3072 | "option2": null, 3073 | "option3": null, 3074 | "sku": "", 3075 | "requires_shipping": true, 3076 | "taxable": true, 3077 | "featured_image": null, 3078 | "available": true, 3079 | "price": "29.99", 3080 | "grams": 113, 3081 | "compare_at_price": "29.99", 3082 | "position": 50, 3083 | "product_id": 1832380465216, 3084 | "created_at": "2018-12-14T11:18:02-05:00", 3085 | "updated_at": "2018-12-14T11:21:02-05:00" 3086 | }, 3087 | { 3088 | "id": 18070087336000, 3089 | "title": "Wyoming", 3090 | "option1": "Wyoming", 3091 | "option2": null, 3092 | "option3": null, 3093 | "sku": "", 3094 | "requires_shipping": true, 3095 | "taxable": true, 3096 | "featured_image": null, 3097 | "available": true, 3098 | "price": "29.99", 3099 | "grams": 113, 3100 | "compare_at_price": "29.99", 3101 | "position": 51, 3102 | "product_id": 1832380465216, 3103 | "created_at": "2018-12-14T11:18:02-05:00", 3104 | "updated_at": "2018-12-14T11:21:02-05:00" 3105 | } 3106 | ], 3107 | "images": [ 3108 | { 3109 | "id": 5564723003456, 3110 | "created_at": "2018-12-14T11:18:07-05:00", 3111 | "position": 1, 3112 | "updated_at": "2019-04-23T11:06:37-04:00", 3113 | "product_id": 1832380465216, 3114 | "variant_ids": [], 3115 | "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0113\/5575\/0464\/products\/cwgreen_98fb76f1-4d82-40cc-ad86-78af2ca9c70b.jpeg?v=1556031997", 3116 | "width": 515, 3117 | "height": 600 3118 | } 3119 | ], 3120 | "options": [ 3121 | { 3122 | "name": "State", 3123 | "position": 1, 3124 | "values": [ 3125 | "Alabama", 3126 | "Alaska", 3127 | "Arizona", 3128 | "Arkansas", 3129 | "California", 3130 | "Colorado", 3131 | "Connecticut", 3132 | "Delaware", 3133 | "District of Columbia (DC)", 3134 | "Florida", 3135 | "Georgia", 3136 | "Hawaii", 3137 | "Idaho", 3138 | "Illinois", 3139 | "Indiana", 3140 | "Iowa", 3141 | "Kansas", 3142 | "Kentucky", 3143 | "Louisiana", 3144 | "Maine", 3145 | "Maryland", 3146 | "Massachusetts", 3147 | "Michigan", 3148 | "Minnesota", 3149 | "Mississippi", 3150 | "Missouri", 3151 | "Montana", 3152 | "Nebraska", 3153 | "Nevada", 3154 | "New Hampshire", 3155 | "New Jersey", 3156 | "New Mexico", 3157 | "New York", 3158 | "North Carolina", 3159 | "North Dakota", 3160 | "Ohio", 3161 | "Oklahoma", 3162 | "Oregon", 3163 | "Pennsylvania", 3164 | "Rhode Island", 3165 | "South Carolina", 3166 | "South Dakota", 3167 | "Tennessee", 3168 | "Texas", 3169 | "Utah", 3170 | "Vermont", 3171 | "Virginia", 3172 | "Washington", 3173 | "West Virginia", 3174 | "Wisconsin", 3175 | "Wyoming" 3176 | ] 3177 | } 3178 | ] 3179 | }, 3180 | { 3181 | "id": 1832330690624, 3182 | "title": "Green (Non-Laminated) State and Federal Labor Law Poster", 3183 | "handle": "green-non-laminated-state-and-federal-labor-law-poster", 3184 | "body_html": "\u003cmeta charset=\"utf-8\"\u003e\n\u003cp\u003eOrdering your State and Federal all in one Labor Law Posters from Labor Law Poster Store is your\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWORRY FREE\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eapproach to meeting the employer posting requirements. We have a team of professionals searching for updates on a daily basis. When you order from us you can rest easy knowing that you have the most up to date version available\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eEVERY SINGLE DAY!\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eOur\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cspan\u003eGREEN\u003c\/span\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eLabor Law Posters are both\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eBUDGET FRIENDLY \u0026amp; ENVIRONMENTALLY CONSCIOUS!\u00a0\u003c\/strong\u003eThese posters are printed to order (to reduce waste) using recycled paper, recycled ink cartridges, and with renewable energy! Green posters are also NON-LAMINATED so they are 100% bio degradable and recyclable. \u00a0\u003c\/p\u003e\n\u003cp style=\"float: right;\"\u003eNeed peace of mind? These come with our\u003cspan\u003e\u00a0\u003c\/span\u003e\u003cstrong\u003eWORRY FREE GUARANTEE!\u003c\/strong\u003e\u003cspan\u003e\u00a0\u003c\/span\u003eIf our posters are\u00a0updated labor law posters are\u00a0not 100% up to date on the d\u003cimg alt=\"\" src=\"\/\/cdn.shopify.com\/s\/files\/1\/0113\/5575\/0464\/files\/cw_guar_medium.png?v=1544803414\" style=\"float: right; margin: 7px;\"\u003eay of purchase we will refund you in full AND replace your poster for FREE!\u003c\/p\u003e", 3185 | "published_at": "2018-12-14T11:02:47-05:00", 3186 | "created_at": "2018-12-14T11:12:06-05:00", 3187 | "updated_at": "2023-02-02T15:20:05-05:00", 3188 | "vendor": "Compliance Warehouse", 3189 | "product_type": "Green Labor Law Poster", 3190 | "tags": [ 3191 | "ca", 3192 | "dc", 3193 | "federal", 3194 | "fl", 3195 | "labor law", 3196 | "md", 3197 | "ny", 3198 | "poster", 3199 | "regulations", 3200 | "state", 3201 | "ut" 3202 | ], 3203 | "variants": [ 3204 | { 3205 | "id": 18069827715136, 3206 | "title": "Alabama", 3207 | "option1": "Alabama", 3208 | "option2": null, 3209 | "option3": null, 3210 | "sku": "", 3211 | "requires_shipping": true, 3212 | "taxable": true, 3213 | "featured_image": null, 3214 | "available": true, 3215 | "price": "14.99", 3216 | "grams": 113, 3217 | "compare_at_price": "29.99", 3218 | "position": 1, 3219 | "product_id": 1832330690624, 3220 | "created_at": "2018-12-14T11:12:09-05:00", 3221 | "updated_at": "2020-12-30T12:46:50-05:00" 3222 | }, 3223 | { 3224 | "id": 18069827780672, 3225 | "title": "Alaska", 3226 | "option1": "Alaska", 3227 | "option2": null, 3228 | "option3": null, 3229 | "sku": "", 3230 | "requires_shipping": true, 3231 | "taxable": true, 3232 | "featured_image": null, 3233 | "available": true, 3234 | "price": "14.99", 3235 | "grams": 113, 3236 | "compare_at_price": "29.99", 3237 | "position": 2, 3238 | "product_id": 1832330690624, 3239 | "created_at": "2018-12-14T11:12:09-05:00", 3240 | "updated_at": "2018-12-14T11:12:09-05:00" 3241 | }, 3242 | { 3243 | "id": 18069827813440, 3244 | "title": "Arizona", 3245 | "option1": "Arizona", 3246 | "option2": null, 3247 | "option3": null, 3248 | "sku": "", 3249 | "requires_shipping": true, 3250 | "taxable": true, 3251 | "featured_image": null, 3252 | "available": true, 3253 | "price": "14.99", 3254 | "grams": 113, 3255 | "compare_at_price": "29.99", 3256 | "position": 3, 3257 | "product_id": 1832330690624, 3258 | "created_at": "2018-12-14T11:12:09-05:00", 3259 | "updated_at": "2020-01-21T10:37:51-05:00" 3260 | }, 3261 | { 3262 | "id": 18069827878976, 3263 | "title": "Arkansas", 3264 | "option1": "Arkansas", 3265 | "option2": null, 3266 | "option3": null, 3267 | "sku": "", 3268 | "requires_shipping": true, 3269 | "taxable": true, 3270 | "featured_image": null, 3271 | "available": true, 3272 | "price": "14.99", 3273 | "grams": 113, 3274 | "compare_at_price": "29.99", 3275 | "position": 4, 3276 | "product_id": 1832330690624, 3277 | "created_at": "2018-12-14T11:12:09-05:00", 3278 | "updated_at": "2020-01-23T10:12:45-05:00" 3279 | }, 3280 | { 3281 | "id": 18069827944512, 3282 | "title": "California", 3283 | "option1": "California", 3284 | "option2": null, 3285 | "option3": null, 3286 | "sku": "", 3287 | "requires_shipping": true, 3288 | "taxable": true, 3289 | "featured_image": null, 3290 | "available": true, 3291 | "price": "14.99", 3292 | "grams": 113, 3293 | "compare_at_price": "29.99", 3294 | "position": 5, 3295 | "product_id": 1832330690624, 3296 | "created_at": "2018-12-14T11:12:09-05:00", 3297 | "updated_at": "2022-07-07T14:42:56-04:00" 3298 | }, 3299 | { 3300 | "id": 18069828042816, 3301 | "title": "Colorado", 3302 | "option1": "Colorado", 3303 | "option2": null, 3304 | "option3": null, 3305 | "sku": "", 3306 | "requires_shipping": true, 3307 | "taxable": true, 3308 | "featured_image": null, 3309 | "available": true, 3310 | "price": "14.99", 3311 | "grams": 113, 3312 | "compare_at_price": "29.99", 3313 | "position": 6, 3314 | "product_id": 1832330690624, 3315 | "created_at": "2018-12-14T11:12:09-05:00", 3316 | "updated_at": "2022-01-17T13:27:26-05:00" 3317 | }, 3318 | { 3319 | "id": 18069828108352, 3320 | "title": "Connecticut", 3321 | "option1": "Connecticut", 3322 | "option2": null, 3323 | "option3": null, 3324 | "sku": "", 3325 | "requires_shipping": true, 3326 | "taxable": true, 3327 | "featured_image": null, 3328 | "available": true, 3329 | "price": "14.99", 3330 | "grams": 113, 3331 | "compare_at_price": "29.99", 3332 | "position": 7, 3333 | "product_id": 1832330690624, 3334 | "created_at": "2018-12-14T11:12:09-05:00", 3335 | "updated_at": "2022-12-27T12:52:22-05:00" 3336 | }, 3337 | { 3338 | "id": 18069828206656, 3339 | "title": "Delaware", 3340 | "option1": "Delaware", 3341 | "option2": null, 3342 | "option3": null, 3343 | "sku": "", 3344 | "requires_shipping": true, 3345 | "taxable": true, 3346 | "featured_image": null, 3347 | "available": true, 3348 | "price": "14.99", 3349 | "grams": 113, 3350 | "compare_at_price": "29.99", 3351 | "position": 8, 3352 | "product_id": 1832330690624, 3353 | "created_at": "2018-12-14T11:12:09-05:00", 3354 | "updated_at": "2020-01-10T19:27:35-05:00" 3355 | }, 3356 | { 3357 | "id": 18069828304960, 3358 | "title": "District of Columbia (DC)", 3359 | "option1": "District of Columbia (DC)", 3360 | "option2": null, 3361 | "option3": null, 3362 | "sku": "", 3363 | "requires_shipping": true, 3364 | "taxable": true, 3365 | "featured_image": null, 3366 | "available": true, 3367 | "price": "14.99", 3368 | "grams": 113, 3369 | "compare_at_price": "29.99", 3370 | "position": 9, 3371 | "product_id": 1832330690624, 3372 | "created_at": "2018-12-14T11:12:09-05:00", 3373 | "updated_at": "2022-02-24T13:36:46-05:00" 3374 | }, 3375 | { 3376 | "id": 18069828337728, 3377 | "title": "Florida", 3378 | "option1": "Florida", 3379 | "option2": null, 3380 | "option3": null, 3381 | "sku": "", 3382 | "requires_shipping": true, 3383 | "taxable": true, 3384 | "featured_image": null, 3385 | "available": true, 3386 | "price": "14.99", 3387 | "grams": 113, 3388 | "compare_at_price": "29.99", 3389 | "position": 10, 3390 | "product_id": 1832330690624, 3391 | "created_at": "2018-12-14T11:12:09-05:00", 3392 | "updated_at": "2022-02-15T08:21:01-05:00" 3393 | }, 3394 | { 3395 | "id": 18069828370496, 3396 | "title": "Georgia", 3397 | "option1": "Georgia", 3398 | "option2": null, 3399 | "option3": null, 3400 | "sku": "", 3401 | "requires_shipping": true, 3402 | "taxable": true, 3403 | "featured_image": null, 3404 | "available": true, 3405 | "price": "14.99", 3406 | "grams": 113, 3407 | "compare_at_price": "29.99", 3408 | "position": 11, 3409 | "product_id": 1832330690624, 3410 | "created_at": "2018-12-14T11:12:09-05:00", 3411 | "updated_at": "2022-12-27T12:59:07-05:00" 3412 | }, 3413 | { 3414 | "id": 18069828436032, 3415 | "title": "Hawaii", 3416 | "option1": "Hawaii", 3417 | "option2": null, 3418 | "option3": null, 3419 | "sku": "", 3420 | "requires_shipping": true, 3421 | "taxable": true, 3422 | "featured_image": null, 3423 | "available": true, 3424 | "price": "14.99", 3425 | "grams": 113, 3426 | "compare_at_price": "29.99", 3427 | "position": 12, 3428 | "product_id": 1832330690624, 3429 | "created_at": "2018-12-14T11:12:09-05:00", 3430 | "updated_at": "2020-01-10T19:27:35-05:00" 3431 | }, 3432 | { 3433 | "id": 18069828468800, 3434 | "title": "Idaho", 3435 | "option1": "Idaho", 3436 | "option2": null, 3437 | "option3": null, 3438 | "sku": "", 3439 | "requires_shipping": true, 3440 | "taxable": true, 3441 | "featured_image": null, 3442 | "available": true, 3443 | "price": "14.99", 3444 | "grams": 113, 3445 | "compare_at_price": "29.99", 3446 | "position": 13, 3447 | "product_id": 1832330690624, 3448 | "created_at": "2018-12-14T11:12:09-05:00", 3449 | "updated_at": "2020-04-06T12:22:10-04:00" 3450 | }, 3451 | { 3452 | "id": 18069828501568, 3453 | "title": "Illinois", 3454 | "option1": "Illinois", 3455 | "option2": null, 3456 | "option3": null, 3457 | "sku": "", 3458 | "requires_shipping": true, 3459 | "taxable": true, 3460 | "featured_image": null, 3461 | "available": true, 3462 | "price": "14.99", 3463 | "grams": 113, 3464 | "compare_at_price": "29.99", 3465 | "position": 14, 3466 | "product_id": 1832330690624, 3467 | "created_at": "2018-12-14T11:12:09-05:00", 3468 | "updated_at": "2022-12-27T12:54:16-05:00" 3469 | }, 3470 | { 3471 | "id": 18069828534336, 3472 | "title": "Indiana", 3473 | "option1": "Indiana", 3474 | "option2": null, 3475 | "option3": null, 3476 | "sku": "", 3477 | "requires_shipping": true, 3478 | "taxable": true, 3479 | "featured_image": null, 3480 | "available": true, 3481 | "price": "14.99", 3482 | "grams": 113, 3483 | "compare_at_price": "29.99", 3484 | "position": 15, 3485 | "product_id": 1832330690624, 3486 | "created_at": "2018-12-14T11:12:09-05:00", 3487 | "updated_at": "2018-12-14T11:12:09-05:00" 3488 | }, 3489 | { 3490 | "id": 18069828567104, 3491 | "title": "Iowa", 3492 | "option1": "Iowa", 3493 | "option2": null, 3494 | "option3": null, 3495 | "sku": "", 3496 | "requires_shipping": true, 3497 | "taxable": true, 3498 | "featured_image": null, 3499 | "available": true, 3500 | "price": "14.99", 3501 | "grams": 113, 3502 | "compare_at_price": "29.99", 3503 | "position": 16, 3504 | "product_id": 1832330690624, 3505 | "created_at": "2018-12-14T11:12:09-05:00", 3506 | "updated_at": "2018-12-14T11:12:09-05:00" 3507 | }, 3508 | { 3509 | "id": 18069828599872, 3510 | "title": "Kansas", 3511 | "option1": "Kansas", 3512 | "option2": null, 3513 | "option3": null, 3514 | "sku": "", 3515 | "requires_shipping": true, 3516 | "taxable": true, 3517 | "featured_image": null, 3518 | "available": true, 3519 | "price": "14.99", 3520 | "grams": 113, 3521 | "compare_at_price": "29.99", 3522 | "position": 17, 3523 | "product_id": 1832330690624, 3524 | "created_at": "2018-12-14T11:12:09-05:00", 3525 | "updated_at": "2020-09-01T12:18:01-04:00" 3526 | }, 3527 | { 3528 | "id": 18069828632640, 3529 | "title": "Kentucky", 3530 | "option1": "Kentucky", 3531 | "option2": null, 3532 | "option3": null, 3533 | "sku": "", 3534 | "requires_shipping": true, 3535 | "taxable": true, 3536 | "featured_image": null, 3537 | "available": true, 3538 | "price": "14.99", 3539 | "grams": 113, 3540 | "compare_at_price": "29.99", 3541 | "position": 18, 3542 | "product_id": 1832330690624, 3543 | "created_at": "2018-12-14T11:12:09-05:00", 3544 | "updated_at": "2018-12-14T11:12:09-05:00" 3545 | }, 3546 | { 3547 | "id": 18069828665408, 3548 | "title": "Louisiana", 3549 | "option1": "Louisiana", 3550 | "option2": null, 3551 | "option3": null, 3552 | "sku": "", 3553 | "requires_shipping": true, 3554 | "taxable": true, 3555 | "featured_image": null, 3556 | "available": true, 3557 | "price": "14.99", 3558 | "grams": 113, 3559 | "compare_at_price": "29.99", 3560 | "position": 19, 3561 | "product_id": 1832330690624, 3562 | "created_at": "2018-12-14T11:12:09-05:00", 3563 | "updated_at": "2020-12-30T12:46:50-05:00" 3564 | }, 3565 | { 3566 | "id": 18069828698176, 3567 | "title": "Maine", 3568 | "option1": "Maine", 3569 | "option2": null, 3570 | "option3": null, 3571 | "sku": "", 3572 | "requires_shipping": true, 3573 | "taxable": true, 3574 | "featured_image": null, 3575 | "available": true, 3576 | "price": "14.99", 3577 | "grams": 113, 3578 | "compare_at_price": "29.99", 3579 | "position": 20, 3580 | "product_id": 1832330690624, 3581 | "created_at": "2018-12-14T11:12:09-05:00", 3582 | "updated_at": "2018-12-14T11:12:09-05:00" 3583 | }, 3584 | { 3585 | "id": 18069828730944, 3586 | "title": "Maryland", 3587 | "option1": "Maryland", 3588 | "option2": null, 3589 | "option3": null, 3590 | "sku": "", 3591 | "requires_shipping": true, 3592 | "taxable": true, 3593 | "featured_image": null, 3594 | "available": true, 3595 | "price": "14.99", 3596 | "grams": 113, 3597 | "compare_at_price": "29.99", 3598 | "position": 21, 3599 | "product_id": 1832330690624, 3600 | "created_at": "2018-12-14T11:12:09-05:00", 3601 | "updated_at": "2020-11-30T11:55:30-05:00" 3602 | }, 3603 | { 3604 | "id": 18069828763712, 3605 | "title": "Massachusetts", 3606 | "option1": "Massachusetts", 3607 | "option2": null, 3608 | "option3": null, 3609 | "sku": "", 3610 | "requires_shipping": true, 3611 | "taxable": true, 3612 | "featured_image": null, 3613 | "available": true, 3614 | "price": "14.99", 3615 | "grams": 113, 3616 | "compare_at_price": "29.99", 3617 | "position": 22, 3618 | "product_id": 1832330690624, 3619 | "created_at": "2018-12-14T11:12:09-05:00", 3620 | "updated_at": "2020-01-10T19:27:35-05:00" 3621 | }, 3622 | { 3623 | "id": 18069828796480, 3624 | "title": "Michigan", 3625 | "option1": "Michigan", 3626 | "option2": null, 3627 | "option3": null, 3628 | "sku": "", 3629 | "requires_shipping": true, 3630 | "taxable": true, 3631 | "featured_image": null, 3632 | "available": true, 3633 | "price": "14.99", 3634 | "grams": 113, 3635 | "compare_at_price": "29.99", 3636 | "position": 23, 3637 | "product_id": 1832330690624, 3638 | "created_at": "2018-12-14T11:12:09-05:00", 3639 | "updated_at": "2022-12-27T12:55:41-05:00" 3640 | }, 3641 | { 3642 | "id": 18069828829248, 3643 | "title": "Minnesota", 3644 | "option1": "Minnesota", 3645 | "option2": null, 3646 | "option3": null, 3647 | "sku": "", 3648 | "requires_shipping": true, 3649 | "taxable": true, 3650 | "featured_image": null, 3651 | "available": true, 3652 | "price": "14.99", 3653 | "grams": 113, 3654 | "compare_at_price": "29.99", 3655 | "position": 24, 3656 | "product_id": 1832330690624, 3657 | "created_at": "2018-12-14T11:12:09-05:00", 3658 | "updated_at": "2020-01-10T19:27:35-05:00" 3659 | }, 3660 | { 3661 | "id": 18069828862016, 3662 | "title": "Mississippi", 3663 | "option1": "Mississippi", 3664 | "option2": null, 3665 | "option3": null, 3666 | "sku": "", 3667 | "requires_shipping": true, 3668 | "taxable": true, 3669 | "featured_image": null, 3670 | "available": true, 3671 | "price": "14.99", 3672 | "grams": 113, 3673 | "compare_at_price": "29.99", 3674 | "position": 25, 3675 | "product_id": 1832330690624, 3676 | "created_at": "2018-12-14T11:12:09-05:00", 3677 | "updated_at": "2020-12-30T12:46:51-05:00" 3678 | }, 3679 | { 3680 | "id": 18069828894784, 3681 | "title": "Missouri", 3682 | "option1": "Missouri", 3683 | "option2": null, 3684 | "option3": null, 3685 | "sku": "", 3686 | "requires_shipping": true, 3687 | "taxable": true, 3688 | "featured_image": null, 3689 | "available": true, 3690 | "price": "14.99", 3691 | "grams": 113, 3692 | "compare_at_price": "29.99", 3693 | "position": 26, 3694 | "product_id": 1832330690624, 3695 | "created_at": "2018-12-14T11:12:09-05:00", 3696 | "updated_at": "2020-01-10T19:27:35-05:00" 3697 | }, 3698 | { 3699 | "id": 18069828927552, 3700 | "title": "Montana", 3701 | "option1": "Montana", 3702 | "option2": null, 3703 | "option3": null, 3704 | "sku": "", 3705 | "requires_shipping": true, 3706 | "taxable": true, 3707 | "featured_image": null, 3708 | "available": true, 3709 | "price": "14.99", 3710 | "grams": 113, 3711 | "compare_at_price": "29.99", 3712 | "position": 27, 3713 | "product_id": 1832330690624, 3714 | "created_at": "2018-12-14T11:12:09-05:00", 3715 | "updated_at": "2020-01-10T19:27:35-05:00" 3716 | }, 3717 | { 3718 | "id": 18069828960320, 3719 | "title": "Nebraska", 3720 | "option1": "Nebraska", 3721 | "option2": null, 3722 | "option3": null, 3723 | "sku": "", 3724 | "requires_shipping": true, 3725 | "taxable": true, 3726 | "featured_image": null, 3727 | "available": true, 3728 | "price": "14.99", 3729 | "grams": 113, 3730 | "compare_at_price": "29.99", 3731 | "position": 28, 3732 | "product_id": 1832330690624, 3733 | "created_at": "2018-12-14T11:12:09-05:00", 3734 | "updated_at": "2018-12-14T11:12:09-05:00" 3735 | }, 3736 | { 3737 | "id": 18069828993088, 3738 | "title": "Nevada", 3739 | "option1": "Nevada", 3740 | "option2": null, 3741 | "option3": null, 3742 | "sku": "", 3743 | "requires_shipping": true, 3744 | "taxable": true, 3745 | "featured_image": null, 3746 | "available": true, 3747 | "price": "14.99", 3748 | "grams": 113, 3749 | "compare_at_price": "29.99", 3750 | "position": 29, 3751 | "product_id": 1832330690624, 3752 | "created_at": "2018-12-14T11:12:09-05:00", 3753 | "updated_at": "2018-12-14T11:12:09-05:00" 3754 | }, 3755 | { 3756 | "id": 18069829025856, 3757 | "title": "New Hampshire", 3758 | "option1": "New Hampshire", 3759 | "option2": null, 3760 | "option3": null, 3761 | "sku": "", 3762 | "requires_shipping": true, 3763 | "taxable": true, 3764 | "featured_image": null, 3765 | "available": true, 3766 | "price": "14.99", 3767 | "grams": 113, 3768 | "compare_at_price": "29.99", 3769 | "position": 30, 3770 | "product_id": 1832330690624, 3771 | "created_at": "2018-12-14T11:12:09-05:00", 3772 | "updated_at": "2018-12-14T11:12:09-05:00" 3773 | }, 3774 | { 3775 | "id": 18069829058624, 3776 | "title": "New Jersey", 3777 | "option1": "New Jersey", 3778 | "option2": null, 3779 | "option3": null, 3780 | "sku": "", 3781 | "requires_shipping": true, 3782 | "taxable": true, 3783 | "featured_image": null, 3784 | "available": true, 3785 | "price": "14.99", 3786 | "grams": 113, 3787 | "compare_at_price": "29.99", 3788 | "position": 31, 3789 | "product_id": 1832330690624, 3790 | "created_at": "2018-12-14T11:12:09-05:00", 3791 | "updated_at": "2020-01-10T19:27:35-05:00" 3792 | }, 3793 | { 3794 | "id": 18069829091392, 3795 | "title": "New Mexico", 3796 | "option1": "New Mexico", 3797 | "option2": null, 3798 | "option3": null, 3799 | "sku": "", 3800 | "requires_shipping": true, 3801 | "taxable": true, 3802 | "featured_image": null, 3803 | "available": true, 3804 | "price": "14.99", 3805 | "grams": 113, 3806 | "compare_at_price": "29.99", 3807 | "position": 32, 3808 | "product_id": 1832330690624, 3809 | "created_at": "2018-12-14T11:12:09-05:00", 3810 | "updated_at": "2019-11-22T14:09:35-05:00" 3811 | }, 3812 | { 3813 | "id": 18069829124160, 3814 | "title": "New York", 3815 | "option1": "New York", 3816 | "option2": null, 3817 | "option3": null, 3818 | "sku": "", 3819 | "requires_shipping": true, 3820 | "taxable": true, 3821 | "featured_image": null, 3822 | "available": true, 3823 | "price": "14.99", 3824 | "grams": 113, 3825 | "compare_at_price": "29.99", 3826 | "position": 33, 3827 | "product_id": 1832330690624, 3828 | "created_at": "2018-12-14T11:12:09-05:00", 3829 | "updated_at": "2023-01-10T19:34:58-05:00" 3830 | }, 3831 | { 3832 | "id": 18069829156928, 3833 | "title": "North Carolina", 3834 | "option1": "North Carolina", 3835 | "option2": null, 3836 | "option3": null, 3837 | "sku": "", 3838 | "requires_shipping": true, 3839 | "taxable": true, 3840 | "featured_image": null, 3841 | "available": true, 3842 | "price": "14.99", 3843 | "grams": 113, 3844 | "compare_at_price": "29.99", 3845 | "position": 34, 3846 | "product_id": 1832330690624, 3847 | "created_at": "2018-12-14T11:12:10-05:00", 3848 | "updated_at": "2021-02-09T13:11:56-05:00" 3849 | }, 3850 | { 3851 | "id": 18069829189696, 3852 | "title": "North Dakota", 3853 | "option1": "North Dakota", 3854 | "option2": null, 3855 | "option3": null, 3856 | "sku": "", 3857 | "requires_shipping": true, 3858 | "taxable": true, 3859 | "featured_image": null, 3860 | "available": true, 3861 | "price": "14.99", 3862 | "grams": 113, 3863 | "compare_at_price": "29.99", 3864 | "position": 35, 3865 | "product_id": 1832330690624, 3866 | "created_at": "2018-12-14T11:12:10-05:00", 3867 | "updated_at": "2018-12-14T11:12:10-05:00" 3868 | }, 3869 | { 3870 | "id": 18069829222464, 3871 | "title": "Ohio", 3872 | "option1": "Ohio", 3873 | "option2": null, 3874 | "option3": null, 3875 | "sku": "", 3876 | "requires_shipping": true, 3877 | "taxable": true, 3878 | "featured_image": null, 3879 | "available": true, 3880 | "price": "14.99", 3881 | "grams": 113, 3882 | "compare_at_price": "29.99", 3883 | "position": 36, 3884 | "product_id": 1832330690624, 3885 | "created_at": "2018-12-14T11:12:10-05:00", 3886 | "updated_at": "2023-02-02T15:16:42-05:00" 3887 | }, 3888 | { 3889 | "id": 18069829255232, 3890 | "title": "Oklahoma", 3891 | "option1": "Oklahoma", 3892 | "option2": null, 3893 | "option3": null, 3894 | "sku": "", 3895 | "requires_shipping": true, 3896 | "taxable": true, 3897 | "featured_image": null, 3898 | "available": true, 3899 | "price": "14.99", 3900 | "grams": 113, 3901 | "compare_at_price": "29.99", 3902 | "position": 37, 3903 | "product_id": 1832330690624, 3904 | "created_at": "2018-12-14T11:12:10-05:00", 3905 | "updated_at": "2018-12-14T11:12:10-05:00" 3906 | }, 3907 | { 3908 | "id": 18069829288000, 3909 | "title": "Oregon", 3910 | "option1": "Oregon", 3911 | "option2": null, 3912 | "option3": null, 3913 | "sku": "", 3914 | "requires_shipping": true, 3915 | "taxable": true, 3916 | "featured_image": null, 3917 | "available": true, 3918 | "price": "14.99", 3919 | "grams": 113, 3920 | "compare_at_price": "29.99", 3921 | "position": 38, 3922 | "product_id": 1832330690624, 3923 | "created_at": "2018-12-14T11:12:10-05:00", 3924 | "updated_at": "2022-12-27T12:57:40-05:00" 3925 | }, 3926 | { 3927 | "id": 18069829320768, 3928 | "title": "Pennsylvania", 3929 | "option1": "Pennsylvania", 3930 | "option2": null, 3931 | "option3": null, 3932 | "sku": "", 3933 | "requires_shipping": true, 3934 | "taxable": true, 3935 | "featured_image": null, 3936 | "available": true, 3937 | "price": "14.99", 3938 | "grams": 113, 3939 | "compare_at_price": "29.99", 3940 | "position": 39, 3941 | "product_id": 1832330690624, 3942 | "created_at": "2018-12-14T11:12:10-05:00", 3943 | "updated_at": "2021-11-12T10:42:02-05:00" 3944 | }, 3945 | { 3946 | "id": 18069829353536, 3947 | "title": "Rhode Island", 3948 | "option1": "Rhode Island", 3949 | "option2": null, 3950 | "option3": null, 3951 | "sku": "", 3952 | "requires_shipping": true, 3953 | "taxable": true, 3954 | "featured_image": null, 3955 | "available": true, 3956 | "price": "14.99", 3957 | "grams": 113, 3958 | "compare_at_price": "29.99", 3959 | "position": 40, 3960 | "product_id": 1832330690624, 3961 | "created_at": "2018-12-14T11:12:10-05:00", 3962 | "updated_at": "2018-12-14T11:12:10-05:00" 3963 | }, 3964 | { 3965 | "id": 18069829419072, 3966 | "title": "South Carolina", 3967 | "option1": "South Carolina", 3968 | "option2": null, 3969 | "option3": null, 3970 | "sku": "", 3971 | "requires_shipping": true, 3972 | "taxable": true, 3973 | "featured_image": null, 3974 | "available": true, 3975 | "price": "14.99", 3976 | "grams": 113, 3977 | "compare_at_price": "29.99", 3978 | "position": 41, 3979 | "product_id": 1832330690624, 3980 | "created_at": "2018-12-14T11:12:10-05:00", 3981 | "updated_at": "2020-01-21T09:33:55-05:00" 3982 | }, 3983 | { 3984 | "id": 18069829451840, 3985 | "title": "South Dakota", 3986 | "option1": "South Dakota", 3987 | "option2": null, 3988 | "option3": null, 3989 | "sku": "", 3990 | "requires_shipping": true, 3991 | "taxable": true, 3992 | "featured_image": null, 3993 | "available": true, 3994 | "price": "14.99", 3995 | "grams": 113, 3996 | "compare_at_price": "29.99", 3997 | "position": 42, 3998 | "product_id": 1832330690624, 3999 | "created_at": "2018-12-14T11:12:10-05:00", 4000 | "updated_at": "2018-12-14T11:12:10-05:00" 4001 | }, 4002 | { 4003 | "id": 18069829517376, 4004 | "title": "Tennessee", 4005 | "option1": "Tennessee", 4006 | "option2": null, 4007 | "option3": null, 4008 | "sku": "", 4009 | "requires_shipping": true, 4010 | "taxable": true, 4011 | "featured_image": null, 4012 | "available": true, 4013 | "price": "14.99", 4014 | "grams": 113, 4015 | "compare_at_price": "29.99", 4016 | "position": 43, 4017 | "product_id": 1832330690624, 4018 | "created_at": "2018-12-14T11:12:10-05:00", 4019 | "updated_at": "2020-12-30T12:46:50-05:00" 4020 | }, 4021 | { 4022 | "id": 18069829550144, 4023 | "title": "Texas", 4024 | "option1": "Texas", 4025 | "option2": null, 4026 | "option3": null, 4027 | "sku": "", 4028 | "requires_shipping": true, 4029 | "taxable": true, 4030 | "featured_image": null, 4031 | "available": true, 4032 | "price": "14.99", 4033 | "grams": 113, 4034 | "compare_at_price": "29.99", 4035 | "position": 44, 4036 | "product_id": 1832330690624, 4037 | "created_at": "2018-12-14T11:12:10-05:00", 4038 | "updated_at": "2021-08-30T17:18:26-04:00" 4039 | }, 4040 | { 4041 | "id": 18069829582912, 4042 | "title": "Utah", 4043 | "option1": "Utah", 4044 | "option2": null, 4045 | "option3": null, 4046 | "sku": "", 4047 | "requires_shipping": true, 4048 | "taxable": true, 4049 | "featured_image": null, 4050 | "available": true, 4051 | "price": "14.99", 4052 | "grams": 113, 4053 | "compare_at_price": "29.99", 4054 | "position": 45, 4055 | "product_id": 1832330690624, 4056 | "created_at": "2018-12-14T11:12:10-05:00", 4057 | "updated_at": "2020-01-10T19:27:35-05:00" 4058 | }, 4059 | { 4060 | "id": 18069829615680, 4061 | "title": "Vermont", 4062 | "option1": "Vermont", 4063 | "option2": null, 4064 | "option3": null, 4065 | "sku": "", 4066 | "requires_shipping": true, 4067 | "taxable": true, 4068 | "featured_image": null, 4069 | "available": true, 4070 | "price": "14.99", 4071 | "grams": 113, 4072 | "compare_at_price": "29.99", 4073 | "position": 46, 4074 | "product_id": 1832330690624, 4075 | "created_at": "2018-12-14T11:12:10-05:00", 4076 | "updated_at": "2018-12-14T11:12:10-05:00" 4077 | }, 4078 | { 4079 | "id": 18069829681216, 4080 | "title": "Virginia", 4081 | "option1": "Virginia", 4082 | "option2": null, 4083 | "option3": null, 4084 | "sku": "", 4085 | "requires_shipping": true, 4086 | "taxable": true, 4087 | "featured_image": null, 4088 | "available": true, 4089 | "price": "14.99", 4090 | "grams": 113, 4091 | "compare_at_price": "29.99", 4092 | "position": 47, 4093 | "product_id": 1832330690624, 4094 | "created_at": "2018-12-14T11:12:10-05:00", 4095 | "updated_at": "2020-01-10T19:27:35-05:00" 4096 | }, 4097 | { 4098 | "id": 18069829713984, 4099 | "title": "Washington", 4100 | "option1": "Washington", 4101 | "option2": null, 4102 | "option3": null, 4103 | "sku": "", 4104 | "requires_shipping": true, 4105 | "taxable": true, 4106 | "featured_image": null, 4107 | "available": true, 4108 | "price": "14.99", 4109 | "grams": 113, 4110 | "compare_at_price": "29.99", 4111 | "position": 48, 4112 | "product_id": 1832330690624, 4113 | "created_at": "2018-12-14T11:12:10-05:00", 4114 | "updated_at": "2020-12-11T15:26:00-05:00" 4115 | }, 4116 | { 4117 | "id": 18069829746752, 4118 | "title": "West Virginia", 4119 | "option1": "West Virginia", 4120 | "option2": null, 4121 | "option3": null, 4122 | "sku": "", 4123 | "requires_shipping": true, 4124 | "taxable": true, 4125 | "featured_image": null, 4126 | "available": true, 4127 | "price": "14.99", 4128 | "grams": 113, 4129 | "compare_at_price": "29.99", 4130 | "position": 49, 4131 | "product_id": 1832330690624, 4132 | "created_at": "2018-12-14T11:12:10-05:00", 4133 | "updated_at": "2018-12-14T11:12:10-05:00" 4134 | }, 4135 | { 4136 | "id": 18069829779520, 4137 | "title": "Wisconsin", 4138 | "option1": "Wisconsin", 4139 | "option2": null, 4140 | "option3": null, 4141 | "sku": "", 4142 | "requires_shipping": true, 4143 | "taxable": true, 4144 | "featured_image": null, 4145 | "available": true, 4146 | "price": "14.99", 4147 | "grams": 113, 4148 | "compare_at_price": "29.99", 4149 | "position": 50, 4150 | "product_id": 1832330690624, 4151 | "created_at": "2018-12-14T11:12:10-05:00", 4152 | "updated_at": "2021-02-26T15:11:55-05:00" 4153 | }, 4154 | { 4155 | "id": 18069829812288, 4156 | "title": "Wyoming", 4157 | "option1": "Wyoming", 4158 | "option2": null, 4159 | "option3": null, 4160 | "sku": "", 4161 | "requires_shipping": true, 4162 | "taxable": true, 4163 | "featured_image": null, 4164 | "available": true, 4165 | "price": "14.99", 4166 | "grams": 113, 4167 | "compare_at_price": "29.99", 4168 | "position": 51, 4169 | "product_id": 1832330690624, 4170 | "created_at": "2018-12-14T11:12:10-05:00", 4171 | "updated_at": "2018-12-14T11:12:10-05:00" 4172 | } 4173 | ], 4174 | "images": [ 4175 | { 4176 | "id": 5564558966848, 4177 | "created_at": "2018-12-14T11:12:17-05:00", 4178 | "position": 1, 4179 | "updated_at": "2019-04-23T11:05:54-04:00", 4180 | "product_id": 1832330690624, 4181 | "variant_ids": [], 4182 | "src": "https:\/\/cdn.shopify.com\/s\/files\/1\/0113\/5575\/0464\/products\/cwgreen.jpeg?v=1556031954", 4183 | "width": 515, 4184 | "height": 600 4185 | } 4186 | ], 4187 | "options": [ 4188 | { 4189 | "name": "State", 4190 | "position": 1, 4191 | "values": [ 4192 | "Alabama", 4193 | "Alaska", 4194 | "Arizona", 4195 | "Arkansas", 4196 | "California", 4197 | "Colorado", 4198 | "Connecticut", 4199 | "Delaware", 4200 | "District of Columbia (DC)", 4201 | "Florida", 4202 | "Georgia", 4203 | "Hawaii", 4204 | "Idaho", 4205 | "Illinois", 4206 | "Indiana", 4207 | "Iowa", 4208 | "Kansas", 4209 | "Kentucky", 4210 | "Louisiana", 4211 | "Maine", 4212 | "Maryland", 4213 | "Massachusetts", 4214 | "Michigan", 4215 | "Minnesota", 4216 | "Mississippi", 4217 | "Missouri", 4218 | "Montana", 4219 | "Nebraska", 4220 | "Nevada", 4221 | "New Hampshire", 4222 | "New Jersey", 4223 | "New Mexico", 4224 | "New York", 4225 | "North Carolina", 4226 | "North Dakota", 4227 | "Ohio", 4228 | "Oklahoma", 4229 | "Oregon", 4230 | "Pennsylvania", 4231 | "Rhode Island", 4232 | "South Carolina", 4233 | "South Dakota", 4234 | "Tennessee", 4235 | "Texas", 4236 | "Utah", 4237 | "Vermont", 4238 | "Virginia", 4239 | "Washington", 4240 | "West Virginia", 4241 | "Wisconsin", 4242 | "Wyoming" 4243 | ] 4244 | } 4245 | ] 4246 | } 4247 | ] 4248 | } -------------------------------------------------------------------------------- /products_generated_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandas9/shopify-products/a83cac485544ca9520d8797116f20369a49e5ace/products_generated_example.csv --------------------------------------------------------------------------------