@segha/catalog 1.2.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (184) hide show
  1. package/CHANGELOG.md +91 -0
  2. package/README.md +335 -67
  3. package/en/Areas.ts +24 -0
  4. package/en/Article/index.ts +29 -0
  5. package/en/Article/types.ts +9 -0
  6. package/en/Book/index.ts +33 -0
  7. package/en/Book/types.ts +9 -0
  8. package/en/Clothing/Cares.ts +27 -0
  9. package/en/Clothing/Colors.ts +54 -0
  10. package/en/Clothing/Fit.ts +10 -0
  11. package/en/Clothing/Formality.ts +9 -0
  12. package/en/Clothing/Garment.ts +97 -0
  13. package/en/Clothing/Layer.ts +8 -0
  14. package/en/Clothing/Materials.ts +45 -0
  15. package/en/Clothing/Measurements.ts +5 -0
  16. package/en/Clothing/Season.ts +8 -0
  17. package/en/Clothing/Size.ts +47 -0
  18. package/en/Clothing/Slot.ts +10 -0
  19. package/en/Clothing/Status.ts +9 -0
  20. package/en/Clothing/UseCases.ts +20 -0
  21. package/en/Clothing/Variants.ts +73 -0
  22. package/en/Clothing/index.ts +51 -0
  23. package/en/Clothing/types.ts +9 -0
  24. package/en/Movie/index.ts +34 -0
  25. package/en/Movie/types.ts +9 -0
  26. package/en/Note.ts +13 -0
  27. package/en/index.ts +5 -0
  28. package/en/types.ts +9 -0
  29. package/es/Areas.ts +24 -0
  30. package/es/Article/index.ts +29 -0
  31. package/es/Article/types.ts +9 -0
  32. package/es/Book/index.ts +33 -0
  33. package/es/Book/types.ts +9 -0
  34. package/es/Clothing/index.ts +10 -10
  35. package/es/Movie/index.ts +34 -0
  36. package/es/Movie/types.ts +9 -0
  37. package/es/Note.ts +13 -0
  38. package/es/index.ts +4 -0
  39. package/es/types.ts +7 -0
  40. package/index.ts +2 -2
  41. package/json-schemas/ArticleSchema.json +103 -0
  42. package/json-schemas/BookSchema.json +124 -0
  43. package/json-schemas/CatalogArticleSchema.json +35 -0
  44. package/json-schemas/CatalogBookSchema.json +44 -0
  45. package/json-schemas/CatalogClothingSchema.json +176 -177
  46. package/json-schemas/CatalogMovieSchema.json +49 -0
  47. package/json-schemas/ClothingSchema.json +195 -196
  48. package/json-schemas/DetailedArticleSchema.json +42 -0
  49. package/json-schemas/DetailedBookSchema.json +49 -0
  50. package/json-schemas/DetailedClothingSchema.json +17 -17
  51. package/json-schemas/DetailedMovieSchema.json +48 -0
  52. package/json-schemas/MetaArticleSchema.json +46 -0
  53. package/json-schemas/MetaBookSchema.json +51 -0
  54. package/json-schemas/MetaClothingSchema.json +4 -4
  55. package/json-schemas/MetaMovieSchema.json +51 -0
  56. package/json-schemas/MovieSchema.json +128 -0
  57. package/json-schemas/NoteSchema.json +745 -0
  58. package/json-schemas/en/Area.json +21 -0
  59. package/json-schemas/en/Areas.json +25 -0
  60. package/json-schemas/en/Article/ArticleSchema.json +103 -0
  61. package/json-schemas/en/Article/CatalogArticleSchema.json +35 -0
  62. package/json-schemas/en/Article/DetailedArticleSchema.json +42 -0
  63. package/json-schemas/en/Article/MetaArticleSchema.json +46 -0
  64. package/json-schemas/en/Article/index.json +233 -0
  65. package/json-schemas/en/ArticleSchema.json +103 -0
  66. package/json-schemas/en/Book/BookSchema.json +124 -0
  67. package/json-schemas/en/Book/CatalogBookSchema.json +44 -0
  68. package/json-schemas/en/Book/DetailedBookSchema.json +49 -0
  69. package/json-schemas/en/Book/MetaBookSchema.json +51 -0
  70. package/json-schemas/en/Book/index.json +275 -0
  71. package/json-schemas/en/BookSchema.json +124 -0
  72. package/json-schemas/en/CatalogArticleSchema.json +35 -0
  73. package/json-schemas/en/CatalogBookSchema.json +44 -0
  74. package/json-schemas/en/CatalogClothingSchema.json +292 -0
  75. package/json-schemas/en/CatalogMovieSchema.json +49 -0
  76. package/json-schemas/en/Clothing/Accessories.json +18 -0
  77. package/json-schemas/en/Clothing/AdditionalFeatures.json +9 -0
  78. package/json-schemas/en/Clothing/BaseColor.json +19 -0
  79. package/json-schemas/en/Clothing/Bottom.json +12 -0
  80. package/json-schemas/en/Clothing/Care.json +13 -0
  81. package/json-schemas/en/Clothing/Cares.json +17 -0
  82. package/json-schemas/en/Clothing/CatalogClothingSchema.json +292 -0
  83. package/json-schemas/en/Clothing/Closures.json +11 -0
  84. package/json-schemas/en/Clothing/ClothingSchema.json +388 -0
  85. package/json-schemas/en/Clothing/Color.json +26 -0
  86. package/json-schemas/en/Clothing/CommonFabric.json +15 -0
  87. package/json-schemas/en/Clothing/DetailedClothingSchema.json +75 -0
  88. package/json-schemas/en/Clothing/Dress.json +9 -0
  89. package/json-schemas/en/Clothing/Fit.json +13 -0
  90. package/json-schemas/en/Clothing/Formality.json +12 -0
  91. package/json-schemas/en/Clothing/Garment.json +56 -0
  92. package/json-schemas/en/Clothing/Home.json +9 -0
  93. package/json-schemas/en/Clothing/Ironing.json +8 -0
  94. package/json-schemas/en/Clothing/Layer.json +10 -0
  95. package/json-schemas/en/Clothing/Material.json +28 -0
  96. package/json-schemas/en/Clothing/Materials.json +32 -0
  97. package/json-schemas/en/Clothing/Measurements.json +8 -0
  98. package/json-schemas/en/Clothing/MetaClothingSchema.json +41 -0
  99. package/json-schemas/en/Clothing/MetallicColor.json +9 -0
  100. package/json-schemas/en/Clothing/NaturalMaterial.json +13 -0
  101. package/json-schemas/en/Clothing/Necks.json +15 -0
  102. package/json-schemas/en/Clothing/Outerwear.json +9 -0
  103. package/json-schemas/en/Clothing/Pants.json +11 -0
  104. package/json-schemas/en/Clothing/PantsSize.json +17 -0
  105. package/json-schemas/en/Clothing/Pattern.json +17 -0
  106. package/json-schemas/en/Clothing/PrimaryColor.json +27 -0
  107. package/json-schemas/en/Clothing/Season.json +11 -0
  108. package/json-schemas/en/Clothing/SecondaryColor.json +27 -0
  109. package/json-schemas/en/Clothing/Shoes.json +11 -0
  110. package/json-schemas/en/Clothing/ShoesSize.json +16 -0
  111. package/json-schemas/en/Clothing/Size.json +29 -0
  112. package/json-schemas/en/Clothing/Sleeves.json +9 -0
  113. package/json-schemas/en/Clothing/Slot.json +13 -0
  114. package/json-schemas/en/Clothing/SpecialColor.json +10 -0
  115. package/json-schemas/en/Clothing/SpecialCuts.json +9 -0
  116. package/json-schemas/en/Clothing/Sportswear.json +11 -0
  117. package/json-schemas/en/Clothing/Status.json +13 -0
  118. package/json-schemas/en/Clothing/Swimsuits.json +9 -0
  119. package/json-schemas/en/Clothing/SyntheticMaterial.json +12 -0
  120. package/json-schemas/en/Clothing/Temperature.json +8 -0
  121. package/json-schemas/en/Clothing/Top.json +16 -0
  122. package/json-schemas/en/Clothing/TopsSize.json +13 -0
  123. package/json-schemas/en/Clothing/Underwear.json +12 -0
  124. package/json-schemas/en/Clothing/UseCase.json +18 -0
  125. package/json-schemas/en/Clothing/UseCases.json +22 -0
  126. package/json-schemas/en/Clothing/Variant.json +37 -0
  127. package/json-schemas/en/Clothing/Variants.json +41 -0
  128. package/json-schemas/en/Clothing/WashType.json +9 -0
  129. package/json-schemas/en/Clothing/index.json +1602 -0
  130. package/json-schemas/en/ClothingSchema.json +388 -0
  131. package/json-schemas/en/DetailedArticleSchema.json +42 -0
  132. package/json-schemas/en/DetailedBookSchema.json +49 -0
  133. package/json-schemas/en/DetailedClothingSchema.json +75 -0
  134. package/json-schemas/en/DetailedMovieSchema.json +48 -0
  135. package/json-schemas/en/FirstLevelArea.json +21 -0
  136. package/json-schemas/en/MetaArticleSchema.json +46 -0
  137. package/json-schemas/en/MetaBookSchema.json +51 -0
  138. package/json-schemas/en/MetaClothingSchema.json +41 -0
  139. package/json-schemas/en/MetaMovieSchema.json +51 -0
  140. package/json-schemas/en/Movie/CatalogMovieSchema.json +49 -0
  141. package/json-schemas/en/Movie/DetailedMovieSchema.json +48 -0
  142. package/json-schemas/en/Movie/MetaMovieSchema.json +51 -0
  143. package/json-schemas/en/Movie/MovieSchema.json +128 -0
  144. package/json-schemas/en/Movie/index.json +283 -0
  145. package/json-schemas/en/MovieSchema.json +128 -0
  146. package/json-schemas/en/NoteSchema.json +745 -0
  147. package/json-schemas/en/index.json +2385 -0
  148. package/json-schemas/es/Area.json +21 -0
  149. package/json-schemas/es/Areas.json +25 -0
  150. package/json-schemas/es/Article/ArticleSchema.json +103 -0
  151. package/json-schemas/es/Article/CatalogArticleSchema.json +35 -0
  152. package/json-schemas/es/Article/DetailedArticleSchema.json +42 -0
  153. package/json-schemas/es/Article/MetaArticleSchema.json +46 -0
  154. package/json-schemas/es/Article/index.json +233 -0
  155. package/json-schemas/es/ArticleSchema.json +103 -0
  156. package/json-schemas/es/Book/BookSchema.json +124 -0
  157. package/json-schemas/es/Book/CatalogBookSchema.json +44 -0
  158. package/json-schemas/es/Book/DetailedBookSchema.json +49 -0
  159. package/json-schemas/es/Book/MetaBookSchema.json +51 -0
  160. package/json-schemas/es/Book/index.json +275 -0
  161. package/json-schemas/es/BookSchema.json +124 -0
  162. package/json-schemas/es/CatalogArticleSchema.json +35 -0
  163. package/json-schemas/es/CatalogBookSchema.json +44 -0
  164. package/json-schemas/es/CatalogMovieSchema.json +49 -0
  165. package/json-schemas/es/Clothing/DetailedClothingSchema.json +1 -1
  166. package/json-schemas/es/Clothing/index.json +1 -1
  167. package/json-schemas/es/DetailedArticleSchema.json +42 -0
  168. package/json-schemas/es/DetailedBookSchema.json +49 -0
  169. package/json-schemas/es/DetailedClothingSchema.json +1 -1
  170. package/json-schemas/es/DetailedMovieSchema.json +48 -0
  171. package/json-schemas/es/FirstLevelArea.json +21 -0
  172. package/json-schemas/es/MetaArticleSchema.json +46 -0
  173. package/json-schemas/es/MetaBookSchema.json +51 -0
  174. package/json-schemas/es/MetaMovieSchema.json +51 -0
  175. package/json-schemas/es/Movie/CatalogMovieSchema.json +49 -0
  176. package/json-schemas/es/Movie/DetailedMovieSchema.json +48 -0
  177. package/json-schemas/es/Movie/MetaMovieSchema.json +51 -0
  178. package/json-schemas/es/Movie/MovieSchema.json +128 -0
  179. package/json-schemas/es/Movie/index.json +283 -0
  180. package/json-schemas/es/MovieSchema.json +128 -0
  181. package/json-schemas/es/NoteSchema.json +746 -0
  182. package/json-schemas/es/index.json +1584 -1
  183. package/json-schemas/index.json +1907 -394
  184. package/package.json +11 -3
@@ -0,0 +1,44 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "title": {
6
+ "type": "string",
7
+ "description": "Title of the book"
8
+ },
9
+ "subtitle": {
10
+ "description": "Subtitle of the book",
11
+ "type": "string"
12
+ },
13
+ "description": {
14
+ "description": "Description of the book",
15
+ "type": "string"
16
+ },
17
+ "author": {
18
+ "type": "array",
19
+ "items": {
20
+ "type": "string"
21
+ },
22
+ "description": "Authors"
23
+ },
24
+ "published": {
25
+ "type": "string",
26
+ "description": "Year of publication"
27
+ },
28
+ "categories": {
29
+ "type": "array",
30
+ "items": {
31
+ "type": "string"
32
+ },
33
+ "description": "Categories"
34
+ }
35
+ },
36
+ "required": [
37
+ "title",
38
+ "author",
39
+ "published",
40
+ "categories"
41
+ ],
42
+ "additionalProperties": false,
43
+ "description": "Book: Data obtained from catalogation"
44
+ }
@@ -0,0 +1,292 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "name": {
6
+ "type": "string",
7
+ "description": "Descriptive name of the clothing item"
8
+ },
9
+ "garment": {
10
+ "type": "string",
11
+ "enum": [
12
+ "Undershirts",
13
+ "Boxers",
14
+ "Panties",
15
+ "Bras",
16
+ "Socks",
17
+ "T-Shirts",
18
+ "Polo Shirts",
19
+ "Shirts",
20
+ "Blouses",
21
+ "Tops",
22
+ "Sweaters",
23
+ "Hoodies",
24
+ "Cardigans",
25
+ "Jackets",
26
+ "Pants",
27
+ "Jeans",
28
+ "Chinos",
29
+ "Skirts",
30
+ "Shorts",
31
+ "Blazers",
32
+ "Coats",
33
+ "Trench Coats",
34
+ "Parkas",
35
+ "Vests",
36
+ "Leggings",
37
+ "Technical Wear",
38
+ "Sports Shorts",
39
+ "Technical T-Shirts",
40
+ "Dresses",
41
+ "Jumpsuits",
42
+ "Sneakers",
43
+ "Shoes",
44
+ "Boots",
45
+ "Sandals",
46
+ "Belts",
47
+ "Caps",
48
+ "Hats",
49
+ "Scarves",
50
+ "Gloves",
51
+ "Handbags",
52
+ "Backpacks",
53
+ "Sunglasses",
54
+ "Handkerchiefs",
55
+ "Watches",
56
+ "Jewelry",
57
+ "Pajamas",
58
+ "Robes",
59
+ "Swimsuits",
60
+ "Bikinis"
61
+ ],
62
+ "description": "Garment Type"
63
+ },
64
+ "slot": {
65
+ "type": "string",
66
+ "enum": [
67
+ "Top",
68
+ "Bottom",
69
+ "Full Body",
70
+ "Outer",
71
+ "Footwear",
72
+ "Accessories"
73
+ ],
74
+ "description": "Outfit part"
75
+ },
76
+ "variants": {
77
+ "description": "Structural Details",
78
+ "type": "array",
79
+ "items": {
80
+ "type": "string",
81
+ "enum": [
82
+ "Sleeveless",
83
+ "Short Sleeves",
84
+ "Long Sleeves",
85
+ "Round Neck",
86
+ "V-Neck",
87
+ "High Neck",
88
+ "Shirt Collar",
89
+ "Polo Collar",
90
+ "Boat Neck",
91
+ "Mandarin Collar",
92
+ "Funnel Neck",
93
+ "Hood",
94
+ "Overshirt",
95
+ "Cropped",
96
+ "Long",
97
+ "Straight Leg",
98
+ "Skinny",
99
+ "Wide",
100
+ "Cargo",
101
+ "Flared",
102
+ "Trench",
103
+ "Puffer",
104
+ "Double Breasted",
105
+ "Buttons",
106
+ "Zipper",
107
+ "Velcro",
108
+ "Laces",
109
+ "Snaps",
110
+ "Pockets",
111
+ "No Pockets",
112
+ "Reversible"
113
+ ]
114
+ }
115
+ },
116
+ "fit": {
117
+ "description": "Fit",
118
+ "type": "string",
119
+ "enum": [
120
+ "Fitted",
121
+ "Slim",
122
+ "Regular",
123
+ "Relaxed",
124
+ "Loose",
125
+ "Oversized"
126
+ ]
127
+ },
128
+ "primary_color": {
129
+ "type": "string",
130
+ "enum": [
131
+ "White",
132
+ "Black",
133
+ "Gray",
134
+ "Beige",
135
+ "Brown",
136
+ "Blue",
137
+ "Green",
138
+ "Red",
139
+ "Burgundy",
140
+ "Pink",
141
+ "Yellow",
142
+ "Orange",
143
+ "Purple",
144
+ "Camel",
145
+ "Khaki",
146
+ "Navy",
147
+ "Cream",
148
+ "Gold",
149
+ "Silver",
150
+ "Bronze"
151
+ ],
152
+ "description": "Primary color"
153
+ },
154
+ "secondary_color": {
155
+ "description": "Secondary color",
156
+ "type": "string",
157
+ "enum": [
158
+ "White",
159
+ "Black",
160
+ "Gray",
161
+ "Beige",
162
+ "Brown",
163
+ "Blue",
164
+ "Green",
165
+ "Red",
166
+ "Burgundy",
167
+ "Pink",
168
+ "Yellow",
169
+ "Orange",
170
+ "Purple",
171
+ "Camel",
172
+ "Khaki",
173
+ "Navy",
174
+ "Cream",
175
+ "Gold",
176
+ "Silver",
177
+ "Bronze"
178
+ ]
179
+ },
180
+ "pattern": {
181
+ "description": "Pattern",
182
+ "type": "string",
183
+ "enum": [
184
+ "Solid",
185
+ "Stripes",
186
+ "Plaid",
187
+ "Polka Dots",
188
+ "Animal Print",
189
+ "Floral",
190
+ "Geometric",
191
+ "Camouflage",
192
+ "Graphic Print",
193
+ "Gradient"
194
+ ]
195
+ },
196
+ "materials": {
197
+ "description": "Materials",
198
+ "type": "array",
199
+ "items": {
200
+ "type": "string",
201
+ "enum": [
202
+ "Cotton",
203
+ "Linen",
204
+ "Wool",
205
+ "Silk",
206
+ "Leather",
207
+ "Cashmere",
208
+ "Suede",
209
+ "Polyester",
210
+ "Nylon",
211
+ "Elastane",
212
+ "Viscose",
213
+ "Synthetic Leather",
214
+ "Gore-Tex",
215
+ "Denim",
216
+ "Knit",
217
+ "Fleece",
218
+ "Tweed",
219
+ "Satin",
220
+ "Velvet",
221
+ "Jacquard",
222
+ "Flannel",
223
+ "Gabardine"
224
+ ]
225
+ }
226
+ },
227
+ "layer": {
228
+ "type": "string",
229
+ "enum": [
230
+ "Base",
231
+ "Mid",
232
+ "Outer"
233
+ ],
234
+ "description": "Thermal Layer"
235
+ },
236
+ "season": {
237
+ "description": "Seasons",
238
+ "type": "string",
239
+ "enum": [
240
+ "Winter",
241
+ "Summer",
242
+ "Spring/Fall",
243
+ "All Year"
244
+ ]
245
+ },
246
+ "use_case": {
247
+ "description": "Use cases",
248
+ "type": "array",
249
+ "items": {
250
+ "type": "string",
251
+ "enum": [
252
+ "Capsule",
253
+ "Favorite",
254
+ "Basic",
255
+ "Sport",
256
+ "Work",
257
+ "Event",
258
+ "Travel",
259
+ "Home",
260
+ "Party",
261
+ "Beach",
262
+ "Rain",
263
+ "Extreme Cold"
264
+ ]
265
+ }
266
+ },
267
+ "formality": {
268
+ "description": "Formality",
269
+ "type": "string",
270
+ "enum": [
271
+ "Very Casual",
272
+ "Casual",
273
+ "Smart Casual",
274
+ "Formal",
275
+ "Black Tie"
276
+ ]
277
+ },
278
+ "brand": {
279
+ "description": "The brand of the clothing",
280
+ "type": "string"
281
+ }
282
+ },
283
+ "required": [
284
+ "name",
285
+ "garment",
286
+ "slot",
287
+ "primary_color",
288
+ "layer"
289
+ ],
290
+ "additionalProperties": false,
291
+ "description": "Clothing item: Catalogable data"
292
+ }
@@ -0,0 +1,49 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "title": {
6
+ "type": "string",
7
+ "description": "Title of the movie"
8
+ },
9
+ "description": {
10
+ "type": "string",
11
+ "description": "Description of the movie"
12
+ },
13
+ "author": {
14
+ "type": "array",
15
+ "items": {
16
+ "type": "string"
17
+ },
18
+ "description": "Authors. Writers, directors, producers, etc."
19
+ },
20
+ "actors": {
21
+ "type": "array",
22
+ "items": {
23
+ "type": "string"
24
+ },
25
+ "description": "Actors"
26
+ },
27
+ "published": {
28
+ "type": "string",
29
+ "description": "Year of publication"
30
+ },
31
+ "genres": {
32
+ "type": "array",
33
+ "items": {
34
+ "type": "string"
35
+ },
36
+ "description": "Genres"
37
+ }
38
+ },
39
+ "required": [
40
+ "title",
41
+ "description",
42
+ "author",
43
+ "actors",
44
+ "published",
45
+ "genres"
46
+ ],
47
+ "additionalProperties": false,
48
+ "description": "Movie: Data obtained from catalogation"
49
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "string",
4
+ "enum": [
5
+ "Belts",
6
+ "Caps",
7
+ "Hats",
8
+ "Scarves",
9
+ "Gloves",
10
+ "Handbags",
11
+ "Backpacks",
12
+ "Sunglasses",
13
+ "Handkerchiefs",
14
+ "Watches",
15
+ "Jewelry"
16
+ ],
17
+ "description": "Accessories"
18
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "string",
4
+ "enum": [
5
+ "Pockets",
6
+ "No Pockets",
7
+ "Reversible"
8
+ ]
9
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "string",
4
+ "enum": [
5
+ "White",
6
+ "Black",
7
+ "Gray",
8
+ "Beige",
9
+ "Brown",
10
+ "Blue",
11
+ "Green",
12
+ "Red",
13
+ "Burgundy",
14
+ "Pink",
15
+ "Yellow",
16
+ "Orange",
17
+ "Purple"
18
+ ]
19
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "string",
4
+ "enum": [
5
+ "Pants",
6
+ "Jeans",
7
+ "Chinos",
8
+ "Skirts",
9
+ "Shorts"
10
+ ],
11
+ "description": "Bottom"
12
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "string",
4
+ "enum": [
5
+ "Hand Wash",
6
+ "Machine Wash",
7
+ "Dry Clean",
8
+ "Cold",
9
+ "Hot",
10
+ "Ironing",
11
+ "Steam Ironing"
12
+ ]
13
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "description": "Care Instructions",
4
+ "type": "array",
5
+ "items": {
6
+ "type": "string",
7
+ "enum": [
8
+ "Hand Wash",
9
+ "Machine Wash",
10
+ "Dry Clean",
11
+ "Cold",
12
+ "Hot",
13
+ "Ironing",
14
+ "Steam Ironing"
15
+ ]
16
+ }
17
+ }