seed.json 22 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006
  1. {
  2. "store": {
  3. "currencies": [
  4. "eur",
  5. "usd"
  6. ]
  7. },
  8. "users": [
  9. {
  10. "email": "admin@medusa-test.com",
  11. "password": "supersecret"
  12. }
  13. ],
  14. "regions": [
  15. {
  16. "id": "test-region-eu",
  17. "name": "EU",
  18. "currency_code": "eur",
  19. "tax_rate": 0,
  20. "payment_providers": [
  21. "manual"
  22. ],
  23. "fulfillment_providers": [
  24. "manual"
  25. ],
  26. "countries": [
  27. "gb",
  28. "de",
  29. "dk",
  30. "se",
  31. "fr",
  32. "es",
  33. "it"
  34. ]
  35. },
  36. {
  37. "id": "test-region-na",
  38. "name": "NA",
  39. "currency_code": "usd",
  40. "tax_rate": 0,
  41. "payment_providers": [
  42. "manual"
  43. ],
  44. "fulfillment_providers": [
  45. "manual"
  46. ],
  47. "countries": [
  48. "us",
  49. "ca"
  50. ]
  51. }
  52. ],
  53. "shipping_options": [
  54. {
  55. "name": "PostFake Standard",
  56. "region_id": "test-region-eu",
  57. "provider_id": "manual",
  58. "data": {
  59. "id": "manual-fulfillment"
  60. },
  61. "price_type": "flat_rate",
  62. "amount": 1000
  63. },
  64. {
  65. "name": "PostFake Express",
  66. "region_id": "test-region-eu",
  67. "provider_id": "manual",
  68. "data": {
  69. "id": "manual-fulfillment"
  70. },
  71. "price_type": "flat_rate",
  72. "amount": 1500
  73. },
  74. {
  75. "name": "PostFake Return",
  76. "region_id": "test-region-eu",
  77. "provider_id": "manual",
  78. "data": {
  79. "id": "manual-fulfillment"
  80. },
  81. "price_type": "flat_rate",
  82. "is_return": true,
  83. "amount": 1000
  84. },
  85. {
  86. "name": "I want to return it myself",
  87. "region_id": "test-region-eu",
  88. "provider_id": "manual",
  89. "data": {
  90. "id": "manual-fulfillment"
  91. },
  92. "price_type": "flat_rate",
  93. "is_return": true,
  94. "amount": 0
  95. },
  96. {
  97. "name": "FakeEx Standard",
  98. "region_id": "test-region-na",
  99. "provider_id": "manual",
  100. "data": {
  101. "id": "manual-fulfillment"
  102. },
  103. "price_type": "flat_rate",
  104. "amount": 800
  105. },
  106. {
  107. "name": "FakeEx Express",
  108. "region_id": "test-region-na",
  109. "provider_id": "manual",
  110. "data": {
  111. "id": "manual-fulfillment"
  112. },
  113. "price_type": "flat_rate",
  114. "amount": 1200
  115. },
  116. {
  117. "name": "FakeEx Return",
  118. "region_id": "test-region-na",
  119. "provider_id": "manual",
  120. "data": {
  121. "id": "manual-fulfillment"
  122. },
  123. "price_type": "flat_rate",
  124. "is_return": true,
  125. "amount": 800
  126. },
  127. {
  128. "name": "I want to return it myself",
  129. "region_id": "test-region-na",
  130. "provider_id": "manual",
  131. "data": {
  132. "id": "manual-fulfillment"
  133. },
  134. "price_type": "flat_rate",
  135. "is_return": true,
  136. "amount": 0
  137. }
  138. ],
  139. "products": [
  140. {
  141. "title": "Medusa T-Shirt",
  142. "categories": [
  143. {
  144. "id": "pcat_shirts"
  145. }
  146. ],
  147. "subtitle": null,
  148. "description": "Reimagine the feeling of a classic T-shirt. With our cotton T-shirts, everyday essentials no longer have to be ordinary.",
  149. "handle": "t-shirt",
  150. "is_giftcard": false,
  151. "weight": 400,
  152. "images": [
  153. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-black-front.png",
  154. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-black-back.png",
  155. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-white-front.png",
  156. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-white-back.png"
  157. ],
  158. "options": [
  159. {
  160. "title": "Size",
  161. "values": [
  162. "S",
  163. "M",
  164. "L",
  165. "XL"
  166. ]
  167. },
  168. {
  169. "title": "Color",
  170. "values": [
  171. "Black",
  172. "White"
  173. ]
  174. }
  175. ],
  176. "variants": [
  177. {
  178. "title": "S / Black",
  179. "prices": [
  180. {
  181. "currency_code": "eur",
  182. "amount": 1950
  183. },
  184. {
  185. "currency_code": "usd",
  186. "amount": 2200
  187. }
  188. ],
  189. "options": [
  190. {
  191. "value": "S"
  192. },
  193. {
  194. "value": "Black"
  195. }
  196. ],
  197. "inventory_quantity": 100,
  198. "manage_inventory": true
  199. },
  200. {
  201. "title": "S / White",
  202. "prices": [
  203. {
  204. "currency_code": "eur",
  205. "amount": 1950
  206. },
  207. {
  208. "currency_code": "usd",
  209. "amount": 2200
  210. }
  211. ],
  212. "options": [
  213. {
  214. "value": "S"
  215. },
  216. {
  217. "value": "White"
  218. }
  219. ],
  220. "inventory_quantity": 100,
  221. "manage_inventory": true
  222. },
  223. {
  224. "title": "M / Black",
  225. "prices": [
  226. {
  227. "currency_code": "eur",
  228. "amount": 1950
  229. },
  230. {
  231. "currency_code": "usd",
  232. "amount": 2200
  233. }
  234. ],
  235. "options": [
  236. {
  237. "value": "M"
  238. },
  239. {
  240. "value": "Black"
  241. }
  242. ],
  243. "inventory_quantity": 100,
  244. "manage_inventory": true
  245. },
  246. {
  247. "title": "M / White",
  248. "prices": [
  249. {
  250. "currency_code": "eur",
  251. "amount": 1950
  252. },
  253. {
  254. "currency_code": "usd",
  255. "amount": 2200
  256. }
  257. ],
  258. "options": [
  259. {
  260. "value": "M"
  261. },
  262. {
  263. "value": "White"
  264. }
  265. ],
  266. "inventory_quantity": 100,
  267. "manage_inventory": true
  268. },
  269. {
  270. "title": "L / Black",
  271. "prices": [
  272. {
  273. "currency_code": "eur",
  274. "amount": 1950
  275. },
  276. {
  277. "currency_code": "usd",
  278. "amount": 2200
  279. }
  280. ],
  281. "options": [
  282. {
  283. "value": "L"
  284. },
  285. {
  286. "value": "Black"
  287. }
  288. ],
  289. "inventory_quantity": 100,
  290. "manage_inventory": true
  291. },
  292. {
  293. "title": "L / White",
  294. "prices": [
  295. {
  296. "currency_code": "eur",
  297. "amount": 1950
  298. },
  299. {
  300. "currency_code": "usd",
  301. "amount": 2200
  302. }
  303. ],
  304. "options": [
  305. {
  306. "value": "L"
  307. },
  308. {
  309. "value": "White"
  310. }
  311. ],
  312. "inventory_quantity": 100,
  313. "manage_inventory": true
  314. },
  315. {
  316. "title": "XL / Black",
  317. "prices": [
  318. {
  319. "currency_code": "eur",
  320. "amount": 1950
  321. },
  322. {
  323. "currency_code": "usd",
  324. "amount": 2200
  325. }
  326. ],
  327. "options": [
  328. {
  329. "value": "XL"
  330. },
  331. {
  332. "value": "Black"
  333. }
  334. ],
  335. "inventory_quantity": 100,
  336. "manage_inventory": true
  337. },
  338. {
  339. "title": "XL / White",
  340. "prices": [
  341. {
  342. "currency_code": "eur",
  343. "amount": 1950
  344. },
  345. {
  346. "currency_code": "usd",
  347. "amount": 2200
  348. }
  349. ],
  350. "options": [
  351. {
  352. "value": "XL"
  353. },
  354. {
  355. "value": "White"
  356. }
  357. ],
  358. "inventory_quantity": 100,
  359. "manage_inventory": true
  360. }
  361. ]
  362. },
  363. {
  364. "title": "Medusa Sweatshirt",
  365. "categories": [
  366. {
  367. "id": "pcat_shirts"
  368. }
  369. ],
  370. "subtitle": null,
  371. "description": "Reimagine the feeling of a classic sweatshirt. With our cotton sweatshirt, everyday essentials no longer have to be ordinary.",
  372. "handle": "sweatshirt",
  373. "is_giftcard": false,
  374. "weight": 400,
  375. "images": [
  376. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatshirt-vintage-front.png",
  377. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatshirt-vintage-back.png"
  378. ],
  379. "options": [
  380. {
  381. "title": "Size",
  382. "values": [
  383. "S",
  384. "M",
  385. "L",
  386. "XL"
  387. ]
  388. }
  389. ],
  390. "variants": [
  391. {
  392. "title": "S",
  393. "prices": [
  394. {
  395. "currency_code": "eur",
  396. "amount": 2950
  397. },
  398. {
  399. "currency_code": "usd",
  400. "amount": 3350
  401. }
  402. ],
  403. "options": [
  404. {
  405. "value": "S"
  406. }
  407. ],
  408. "inventory_quantity": 100,
  409. "manage_inventory": true
  410. },
  411. {
  412. "title": "M",
  413. "prices": [
  414. {
  415. "currency_code": "eur",
  416. "amount": 2950
  417. },
  418. {
  419. "currency_code": "usd",
  420. "amount": 3350
  421. }
  422. ],
  423. "options": [
  424. {
  425. "value": "M"
  426. }
  427. ],
  428. "inventory_quantity": 100,
  429. "manage_inventory": true
  430. },
  431. {
  432. "title": "L",
  433. "prices": [
  434. {
  435. "currency_code": "eur",
  436. "amount": 2950
  437. },
  438. {
  439. "currency_code": "usd",
  440. "amount": 3350
  441. }
  442. ],
  443. "options": [
  444. {
  445. "value": "L"
  446. }
  447. ],
  448. "inventory_quantity": 100,
  449. "manage_inventory": true
  450. },
  451. {
  452. "title": "XL",
  453. "prices": [
  454. {
  455. "currency_code": "eur",
  456. "amount": 2950
  457. },
  458. {
  459. "currency_code": "usd",
  460. "amount": 3350
  461. }
  462. ],
  463. "options": [
  464. {
  465. "value": "XL"
  466. }
  467. ],
  468. "inventory_quantity": 100,
  469. "manage_inventory": true
  470. }
  471. ]
  472. },
  473. {
  474. "title": "Medusa Sweatpants",
  475. "categories": [
  476. {
  477. "id": "pcat_pants"
  478. }
  479. ],
  480. "subtitle": null,
  481. "description": "Reimagine the feeling of classic sweatpants. With our cotton sweatpants, everyday essentials no longer have to be ordinary.",
  482. "handle": "sweatpants",
  483. "is_giftcard": false,
  484. "weight": 400,
  485. "images": [
  486. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatpants-gray-front.png",
  487. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatpants-gray-back.png"
  488. ],
  489. "options": [
  490. {
  491. "title": "Size",
  492. "values": [
  493. "S",
  494. "M",
  495. "L",
  496. "XL"
  497. ]
  498. }
  499. ],
  500. "variants": [
  501. {
  502. "title": "S",
  503. "prices": [
  504. {
  505. "currency_code": "eur",
  506. "amount": 2950
  507. },
  508. {
  509. "currency_code": "usd",
  510. "amount": 3350
  511. }
  512. ],
  513. "options": [
  514. {
  515. "value": "S"
  516. }
  517. ],
  518. "inventory_quantity": 100,
  519. "manage_inventory": true
  520. },
  521. {
  522. "title": "M",
  523. "prices": [
  524. {
  525. "currency_code": "eur",
  526. "amount": 2950
  527. },
  528. {
  529. "currency_code": "usd",
  530. "amount": 3350
  531. }
  532. ],
  533. "options": [
  534. {
  535. "value": "M"
  536. }
  537. ],
  538. "inventory_quantity": 100,
  539. "manage_inventory": true
  540. },
  541. {
  542. "title": "L",
  543. "prices": [
  544. {
  545. "currency_code": "eur",
  546. "amount": 2950
  547. },
  548. {
  549. "currency_code": "usd",
  550. "amount": 3350
  551. }
  552. ],
  553. "options": [
  554. {
  555. "value": "L"
  556. }
  557. ],
  558. "inventory_quantity": 100,
  559. "manage_inventory": true
  560. },
  561. {
  562. "title": "XL",
  563. "prices": [
  564. {
  565. "currency_code": "eur",
  566. "amount": 2950
  567. },
  568. {
  569. "currency_code": "usd",
  570. "amount": 3350
  571. }
  572. ],
  573. "options": [
  574. {
  575. "value": "XL"
  576. }
  577. ],
  578. "inventory_quantity": 100,
  579. "manage_inventory": true
  580. }
  581. ]
  582. },
  583. {
  584. "title": "Medusa Shorts",
  585. "categories": [
  586. {
  587. "id": "pcat_merch"
  588. }
  589. ],
  590. "subtitle": null,
  591. "description": "Reimagine the feeling of classic shorts. With our cotton shorts, everyday essentials no longer have to be ordinary.",
  592. "handle": "shorts",
  593. "is_giftcard": false,
  594. "weight": 400,
  595. "images": [
  596. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/shorts-vintage-front.png",
  597. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/shorts-vintage-back.png"
  598. ],
  599. "options": [
  600. {
  601. "title": "Size",
  602. "values": [
  603. "S",
  604. "M",
  605. "L",
  606. "XL"
  607. ]
  608. }
  609. ],
  610. "variants": [
  611. {
  612. "title": "S",
  613. "prices": [
  614. {
  615. "currency_code": "eur",
  616. "amount": 2500
  617. },
  618. {
  619. "currency_code": "usd",
  620. "amount": 2850
  621. }
  622. ],
  623. "options": [
  624. {
  625. "value": "S"
  626. }
  627. ],
  628. "inventory_quantity": 100,
  629. "manage_inventory": true
  630. },
  631. {
  632. "title": "M",
  633. "prices": [
  634. {
  635. "currency_code": "eur",
  636. "amount": 2500
  637. },
  638. {
  639. "currency_code": "usd",
  640. "amount": 2850
  641. }
  642. ],
  643. "options": [
  644. {
  645. "value": "M"
  646. }
  647. ],
  648. "inventory_quantity": 100,
  649. "manage_inventory": true
  650. },
  651. {
  652. "title": "L",
  653. "prices": [
  654. {
  655. "currency_code": "eur",
  656. "amount": 2500
  657. },
  658. {
  659. "currency_code": "usd",
  660. "amount": 2850
  661. }
  662. ],
  663. "options": [
  664. {
  665. "value": "L"
  666. }
  667. ],
  668. "inventory_quantity": 100,
  669. "manage_inventory": true
  670. },
  671. {
  672. "title": "XL",
  673. "prices": [
  674. {
  675. "currency_code": "eur",
  676. "amount": 2500
  677. },
  678. {
  679. "currency_code": "usd",
  680. "amount": 2850
  681. }
  682. ],
  683. "options": [
  684. {
  685. "value": "XL"
  686. }
  687. ],
  688. "inventory_quantity": 100,
  689. "manage_inventory": true
  690. }
  691. ]
  692. },
  693. {
  694. "title": "Medusa Hoodie",
  695. "categories": [
  696. {
  697. "id": "pcat_merch"
  698. },
  699. {
  700. "id": "pcat_hidden_featured"
  701. }
  702. ],
  703. "subtitle": null,
  704. "description": "Reimagine the feeling of a classic hoodie. With our cotton hoodie, everyday essentials no longer have to be ordinary.",
  705. "handle": "hoodie",
  706. "is_giftcard": false,
  707. "weight": 400,
  708. "images": [
  709. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/black_hoodie_front.png",
  710. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/black_hoodie_back.png"
  711. ],
  712. "options": [
  713. {
  714. "title": "Size",
  715. "values": [
  716. "S",
  717. "M",
  718. "L",
  719. "XL"
  720. ]
  721. }
  722. ],
  723. "variants": [
  724. {
  725. "title": "S",
  726. "prices": [
  727. {
  728. "currency_code": "eur",
  729. "amount": 3650
  730. },
  731. {
  732. "currency_code": "usd",
  733. "amount": 4150
  734. }
  735. ],
  736. "options": [
  737. {
  738. "value": "S"
  739. }
  740. ],
  741. "inventory_quantity": 100,
  742. "manage_inventory": true
  743. },
  744. {
  745. "title": "M",
  746. "prices": [
  747. {
  748. "currency_code": "eur",
  749. "amount": 3650
  750. },
  751. {
  752. "currency_code": "usd",
  753. "amount": 4150
  754. }
  755. ],
  756. "options": [
  757. {
  758. "value": "M"
  759. }
  760. ],
  761. "inventory_quantity": 100,
  762. "manage_inventory": true
  763. },
  764. {
  765. "title": "L",
  766. "prices": [
  767. {
  768. "currency_code": "eur",
  769. "amount": 3650
  770. },
  771. {
  772. "currency_code": "usd",
  773. "amount": 4150
  774. }
  775. ],
  776. "options": [
  777. {
  778. "value": "L"
  779. }
  780. ],
  781. "inventory_quantity": 100,
  782. "manage_inventory": true
  783. },
  784. {
  785. "title": "XL",
  786. "prices": [
  787. {
  788. "currency_code": "eur",
  789. "amount": 3650
  790. },
  791. {
  792. "currency_code": "usd",
  793. "amount": 4150
  794. }
  795. ],
  796. "options": [
  797. {
  798. "value": "XL"
  799. }
  800. ],
  801. "inventory_quantity": 100,
  802. "manage_inventory": true
  803. }
  804. ]
  805. },
  806. {
  807. "title": "Medusa Longsleeve",
  808. "categories": [
  809. {
  810. "id": "pcat_shirts"
  811. },
  812. {
  813. "id": "pcat_hidden_featured"
  814. }
  815. ],
  816. "subtitle": null,
  817. "description": "Reimagine the feeling of a classic longsleeve. With our cotton longsleeve, everyday essentials no longer have to be ordinary.",
  818. "handle": "longsleeve",
  819. "is_giftcard": false,
  820. "weight": 400,
  821. "images": [
  822. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/ls-black-front.png",
  823. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/ls-black-back.png"
  824. ],
  825. "options": [
  826. {
  827. "title": "Size",
  828. "values": [
  829. "S",
  830. "M",
  831. "L",
  832. "XL"
  833. ]
  834. }
  835. ],
  836. "variants": [
  837. {
  838. "title": "S",
  839. "prices": [
  840. {
  841. "currency_code": "eur",
  842. "amount": 3650
  843. },
  844. {
  845. "currency_code": "usd",
  846. "amount": 4150
  847. }
  848. ],
  849. "options": [
  850. {
  851. "value": "S"
  852. }
  853. ],
  854. "inventory_quantity": 100,
  855. "manage_inventory": true
  856. },
  857. {
  858. "title": "M",
  859. "prices": [
  860. {
  861. "currency_code": "eur",
  862. "amount": 3650
  863. },
  864. {
  865. "currency_code": "usd",
  866. "amount": 4150
  867. }
  868. ],
  869. "options": [
  870. {
  871. "value": "M"
  872. }
  873. ],
  874. "inventory_quantity": 100,
  875. "manage_inventory": true
  876. },
  877. {
  878. "title": "L",
  879. "prices": [
  880. {
  881. "currency_code": "eur",
  882. "amount": 3650
  883. },
  884. {
  885. "currency_code": "usd",
  886. "amount": 4150
  887. }
  888. ],
  889. "options": [
  890. {
  891. "value": "L"
  892. }
  893. ],
  894. "inventory_quantity": 100,
  895. "manage_inventory": true
  896. },
  897. {
  898. "title": "XL",
  899. "prices": [
  900. {
  901. "currency_code": "eur",
  902. "amount": 3650
  903. },
  904. {
  905. "currency_code": "usd",
  906. "amount": 4150
  907. }
  908. ],
  909. "options": [
  910. {
  911. "value": "XL"
  912. }
  913. ],
  914. "inventory_quantity": 100,
  915. "manage_inventory": true
  916. }
  917. ]
  918. },
  919. {
  920. "title": "Medusa Coffee Mug",
  921. "categories": [
  922. {
  923. "id": "pcat_merch"
  924. },
  925. {
  926. "id": "pcat_hidden_featured"
  927. }
  928. ],
  929. "subtitle": null,
  930. "description": "Every programmer's best friend.",
  931. "handle": "coffee-mug",
  932. "is_giftcard": false,
  933. "weight": 400,
  934. "images": [
  935. "https://medusa-public-images.s3.eu-west-1.amazonaws.com/coffee-mug.png"
  936. ],
  937. "options": [
  938. {
  939. "title": "Size",
  940. "values": [
  941. "One Size"
  942. ]
  943. }
  944. ],
  945. "variants": [
  946. {
  947. "title": "One Size",
  948. "prices": [
  949. {
  950. "currency_code": "eur",
  951. "amount": 1000
  952. },
  953. {
  954. "currency_code": "usd",
  955. "amount": 1200
  956. }
  957. ],
  958. "options": [
  959. {
  960. "value": "One Size"
  961. }
  962. ],
  963. "inventory_quantity": 100,
  964. "manage_inventory": true
  965. }
  966. ]
  967. }
  968. ],
  969. "categories": [
  970. {
  971. "id": "pcat_pants",
  972. "name": "Pants",
  973. "rank": 0,
  974. "category_children": [],
  975. "handle": "pants"
  976. },
  977. {
  978. "id": "pcat_shirts",
  979. "name": "Shirts",
  980. "rank": 0,
  981. "category_children": [],
  982. "handle": "shirts"
  983. },
  984. {
  985. "id": "pcat_merch",
  986. "name": "Merch",
  987. "rank": 0,
  988. "category_children": [],
  989. "handle": "merch"
  990. },
  991. {
  992. "id": "pcat_hidden_carousel",
  993. "name": "Hidden homepage carousel",
  994. "rank": 0,
  995. "category_children": [],
  996. "handle": "hidden-homepage-carousel"
  997. },
  998. {
  999. "id": "pcat_hidden_featured",
  1000. "name": "Hidden homepage featured",
  1001. "rank": 0,
  1002. "category_children": [],
  1003. "handle": "hidden-homepage-featured-items"
  1004. }
  1005. ]
  1006. }