@segha/catalog 1.1.0 → 1.2.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.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to @segha/catalog will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.0] - 2026-02-05
9
+
10
+ ### Added
11
+
12
+ - **BREAKING** Required property `name` was added to `CatalogClothingSchema`
13
+ - **BREAKING** Required property `name` was added to `ClothingSchema`
14
+
8
15
  ## [1.1.0] - 2026-02-05
9
16
 
10
17
  ### Added
@@ -391,46 +391,6 @@
391
391
  ],
392
392
  "description": "Ropa Interior"
393
393
  },
394
- "UseCase": {
395
- "$schema": "https://json-schema.org/draft/2020-12/schema",
396
- "type": "string",
397
- "enum": [
398
- "Capsula",
399
- "Favorita",
400
- "Básico",
401
- "Deporte",
402
- "Trabajo",
403
- "Evento",
404
- "Viaje",
405
- "Casa",
406
- "Fiesta",
407
- "Playa",
408
- "Lluvia",
409
- "Frío Extremo"
410
- ]
411
- },
412
- "UseCases": {
413
- "$schema": "https://json-schema.org/draft/2020-12/schema",
414
- "description": "Casos de uso",
415
- "type": "array",
416
- "items": {
417
- "type": "string",
418
- "enum": [
419
- "Capsula",
420
- "Favorita",
421
- "Básico",
422
- "Deporte",
423
- "Trabajo",
424
- "Evento",
425
- "Viaje",
426
- "Casa",
427
- "Fiesta",
428
- "Playa",
429
- "Lluvia",
430
- "Frío Extremo"
431
- ]
432
- }
433
- },
434
394
  "Layer": {
435
395
  "$schema": "https://json-schema.org/draft/2020-12/schema",
436
396
  "type": "string",
@@ -661,6 +621,46 @@
661
621
  "Retirar"
662
622
  ]
663
623
  },
624
+ "UseCase": {
625
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
626
+ "type": "string",
627
+ "enum": [
628
+ "Capsula",
629
+ "Favorita",
630
+ "Básico",
631
+ "Deporte",
632
+ "Trabajo",
633
+ "Evento",
634
+ "Viaje",
635
+ "Casa",
636
+ "Fiesta",
637
+ "Playa",
638
+ "Lluvia",
639
+ "Frío Extremo"
640
+ ]
641
+ },
642
+ "UseCases": {
643
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
644
+ "description": "Casos de uso",
645
+ "type": "array",
646
+ "items": {
647
+ "type": "string",
648
+ "enum": [
649
+ "Capsula",
650
+ "Favorita",
651
+ "Básico",
652
+ "Deporte",
653
+ "Trabajo",
654
+ "Evento",
655
+ "Viaje",
656
+ "Casa",
657
+ "Fiesta",
658
+ "Playa",
659
+ "Lluvia",
660
+ "Frío Extremo"
661
+ ]
662
+ }
663
+ },
664
664
  "AdditionalFeatures": {
665
665
  "$schema": "https://json-schema.org/draft/2020-12/schema",
666
666
  "type": "string",
@@ -802,6 +802,804 @@
802
802
  "Reversible"
803
803
  ]
804
804
  }
805
+ },
806
+ "CatalogClothingSchema": {
807
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
808
+ "type": "object",
809
+ "properties": {
810
+ "name": {
811
+ "type": "string",
812
+ "description": "Nombre descriptivo de la prenda de ropa"
813
+ },
814
+ "garment": {
815
+ "type": "string",
816
+ "enum": [
817
+ "Camisetas Interiores",
818
+ "Calzoncillos",
819
+ "Bragas",
820
+ "Sujetadores",
821
+ "Calcetines",
822
+ "Camisetas",
823
+ "Polos",
824
+ "Camisas",
825
+ "Blusas",
826
+ "Tops",
827
+ "Jerseys",
828
+ "Sudaderas",
829
+ "Cárdigans",
830
+ "Chaquetas",
831
+ "Pantalones",
832
+ "Vaqueros",
833
+ "Chinos",
834
+ "Faldas",
835
+ "Shorts",
836
+ "Americanas",
837
+ "Abrigos",
838
+ "Gabardinas",
839
+ "Parkas",
840
+ "Cazadoras",
841
+ "Chalecos",
842
+ "Mallas",
843
+ "Ropa Técnica",
844
+ "Shorts Deportivos",
845
+ "Camisetas Técnicas",
846
+ "Vestidos",
847
+ "Monos",
848
+ "Zapatillas",
849
+ "Zapatos",
850
+ "Botas",
851
+ "Sandalias",
852
+ "Cinturones",
853
+ "Gorras",
854
+ "Sombreros",
855
+ "Bufandas",
856
+ "Guantes",
857
+ "Bolsos",
858
+ "Mochilas",
859
+ "Gafas de Sol",
860
+ "Pañuelos",
861
+ "Relojes",
862
+ "Joyas",
863
+ "Pijamas",
864
+ "Batas",
865
+ "Bañadores",
866
+ "Bikinis"
867
+ ],
868
+ "description": "Tipo de Prenda"
869
+ },
870
+ "slot": {
871
+ "type": "string",
872
+ "enum": [
873
+ "Superior",
874
+ "Inferior",
875
+ "Cuerpo Completo",
876
+ "Exterior",
877
+ "Calzado",
878
+ "Accesorios"
879
+ ],
880
+ "description": "Parte del outfit"
881
+ },
882
+ "variants": {
883
+ "description": "Detalles Estructurales",
884
+ "type": "array",
885
+ "items": {
886
+ "type": "string",
887
+ "enum": [
888
+ "Sin Mangas",
889
+ "Mangas Cortas",
890
+ "Mangas Largas",
891
+ "Cuello Redondo",
892
+ "Cuello Pico",
893
+ "Cuello Alto",
894
+ "Cuello Camisa",
895
+ "Cuello Polo",
896
+ "Cuello Panadero",
897
+ "Cuello Mao",
898
+ "Cuello Chimenea",
899
+ "Capucha",
900
+ "Overshirt",
901
+ "Cropped",
902
+ "Larga",
903
+ "Pierna Recta",
904
+ "Pitillo",
905
+ "Ancha",
906
+ "Cargo",
907
+ "Acampanado",
908
+ "Trench",
909
+ "Plumífero",
910
+ "Doble botonadura",
911
+ "Botones",
912
+ "Cremallera",
913
+ "Velcro",
914
+ "Cordones",
915
+ "Broches",
916
+ "Bolsillos",
917
+ "Sin Bolsillos",
918
+ "Reversible"
919
+ ]
920
+ }
921
+ },
922
+ "fit": {
923
+ "description": "Ajuste",
924
+ "type": "string",
925
+ "enum": [
926
+ "Entallado",
927
+ "Ajustado",
928
+ "Regular",
929
+ "Relajado",
930
+ "Holgado",
931
+ "Extragrande"
932
+ ]
933
+ },
934
+ "primary_color": {
935
+ "type": "string",
936
+ "enum": [
937
+ "Blanco",
938
+ "Negro",
939
+ "Gris",
940
+ "Beige",
941
+ "Marrón",
942
+ "Azul",
943
+ "Verde",
944
+ "Rojo",
945
+ "Burdeos",
946
+ "Rosa",
947
+ "Amarillo",
948
+ "Naranja",
949
+ "Morado",
950
+ "Camel",
951
+ "Caqui",
952
+ "Marino",
953
+ "Crema",
954
+ "Oro",
955
+ "Plata",
956
+ "Bronce"
957
+ ],
958
+ "description": "Color principal"
959
+ },
960
+ "secondary_color": {
961
+ "description": "Color secundario",
962
+ "type": "string",
963
+ "enum": [
964
+ "Blanco",
965
+ "Negro",
966
+ "Gris",
967
+ "Beige",
968
+ "Marrón",
969
+ "Azul",
970
+ "Verde",
971
+ "Rojo",
972
+ "Burdeos",
973
+ "Rosa",
974
+ "Amarillo",
975
+ "Naranja",
976
+ "Morado",
977
+ "Camel",
978
+ "Caqui",
979
+ "Marino",
980
+ "Crema",
981
+ "Oro",
982
+ "Plata",
983
+ "Bronce"
984
+ ]
985
+ },
986
+ "pattern": {
987
+ "description": "Estampado",
988
+ "type": "string",
989
+ "enum": [
990
+ "Liso",
991
+ "Rayas",
992
+ "Cuadros",
993
+ "Lunares",
994
+ "Animal Print",
995
+ "Floral",
996
+ "Geométrico",
997
+ "Camuflaje",
998
+ "EstampadoGráfico",
999
+ "Degradado"
1000
+ ]
1001
+ },
1002
+ "materials": {
1003
+ "description": "Materiales",
1004
+ "type": "array",
1005
+ "items": {
1006
+ "type": "string",
1007
+ "enum": [
1008
+ "Algodón",
1009
+ "Lino",
1010
+ "Lana",
1011
+ "Seda",
1012
+ "Cuero",
1013
+ "Cachemir",
1014
+ "Ante",
1015
+ "Poliéster",
1016
+ "Nylon",
1017
+ "Elastano",
1018
+ "Viscosa",
1019
+ "Piel Sintética",
1020
+ "Gore-Tex",
1021
+ "Denim",
1022
+ "Punto",
1023
+ "Felpa",
1024
+ "Tweed",
1025
+ "Satén",
1026
+ "Terciopelo",
1027
+ "Jacquard",
1028
+ "Franela",
1029
+ "Gabardina"
1030
+ ]
1031
+ }
1032
+ },
1033
+ "layer": {
1034
+ "type": "string",
1035
+ "enum": [
1036
+ "Base",
1037
+ "Intermedia",
1038
+ "Exterior"
1039
+ ],
1040
+ "description": "Capa Térmica"
1041
+ },
1042
+ "season": {
1043
+ "description": "Estaciones",
1044
+ "type": "string",
1045
+ "enum": [
1046
+ "Invierno",
1047
+ "Verano",
1048
+ "Entretiempo",
1049
+ "Todo el año"
1050
+ ]
1051
+ },
1052
+ "use_case": {
1053
+ "description": "Casos de uso",
1054
+ "type": "array",
1055
+ "items": {
1056
+ "type": "string",
1057
+ "enum": [
1058
+ "Capsula",
1059
+ "Favorita",
1060
+ "Básico",
1061
+ "Deporte",
1062
+ "Trabajo",
1063
+ "Evento",
1064
+ "Viaje",
1065
+ "Casa",
1066
+ "Fiesta",
1067
+ "Playa",
1068
+ "Lluvia",
1069
+ "Frío Extremo"
1070
+ ]
1071
+ }
1072
+ },
1073
+ "formality": {
1074
+ "description": "Formalidad",
1075
+ "type": "string",
1076
+ "enum": [
1077
+ "Muy Informal",
1078
+ "Casual",
1079
+ "Arreglado",
1080
+ "Formal",
1081
+ "Etiqueta"
1082
+ ]
1083
+ },
1084
+ "brand": {
1085
+ "description": "The brand of the clothing",
1086
+ "type": "string"
1087
+ }
1088
+ },
1089
+ "required": [
1090
+ "name",
1091
+ "garment",
1092
+ "slot",
1093
+ "primary_color",
1094
+ "layer"
1095
+ ],
1096
+ "additionalProperties": false,
1097
+ "description": "Prenda de ropa: Datos obtenibles de catalogación"
1098
+ },
1099
+ "ClothingSchema": {
1100
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1101
+ "type": "object",
1102
+ "properties": {
1103
+ "name": {
1104
+ "type": "string",
1105
+ "description": "Nombre descriptivo de la prenda de ropa"
1106
+ },
1107
+ "garment": {
1108
+ "type": "string",
1109
+ "enum": [
1110
+ "Camisetas Interiores",
1111
+ "Calzoncillos",
1112
+ "Bragas",
1113
+ "Sujetadores",
1114
+ "Calcetines",
1115
+ "Camisetas",
1116
+ "Polos",
1117
+ "Camisas",
1118
+ "Blusas",
1119
+ "Tops",
1120
+ "Jerseys",
1121
+ "Sudaderas",
1122
+ "Cárdigans",
1123
+ "Chaquetas",
1124
+ "Pantalones",
1125
+ "Vaqueros",
1126
+ "Chinos",
1127
+ "Faldas",
1128
+ "Shorts",
1129
+ "Americanas",
1130
+ "Abrigos",
1131
+ "Gabardinas",
1132
+ "Parkas",
1133
+ "Cazadoras",
1134
+ "Chalecos",
1135
+ "Mallas",
1136
+ "Ropa Técnica",
1137
+ "Shorts Deportivos",
1138
+ "Camisetas Técnicas",
1139
+ "Vestidos",
1140
+ "Monos",
1141
+ "Zapatillas",
1142
+ "Zapatos",
1143
+ "Botas",
1144
+ "Sandalias",
1145
+ "Cinturones",
1146
+ "Gorras",
1147
+ "Sombreros",
1148
+ "Bufandas",
1149
+ "Guantes",
1150
+ "Bolsos",
1151
+ "Mochilas",
1152
+ "Gafas de Sol",
1153
+ "Pañuelos",
1154
+ "Relojes",
1155
+ "Joyas",
1156
+ "Pijamas",
1157
+ "Batas",
1158
+ "Bañadores",
1159
+ "Bikinis"
1160
+ ],
1161
+ "description": "Tipo de Prenda"
1162
+ },
1163
+ "slot": {
1164
+ "type": "string",
1165
+ "enum": [
1166
+ "Superior",
1167
+ "Inferior",
1168
+ "Cuerpo Completo",
1169
+ "Exterior",
1170
+ "Calzado",
1171
+ "Accesorios"
1172
+ ],
1173
+ "description": "Parte del outfit"
1174
+ },
1175
+ "variants": {
1176
+ "description": "Detalles Estructurales",
1177
+ "type": "array",
1178
+ "items": {
1179
+ "type": "string",
1180
+ "enum": [
1181
+ "Sin Mangas",
1182
+ "Mangas Cortas",
1183
+ "Mangas Largas",
1184
+ "Cuello Redondo",
1185
+ "Cuello Pico",
1186
+ "Cuello Alto",
1187
+ "Cuello Camisa",
1188
+ "Cuello Polo",
1189
+ "Cuello Panadero",
1190
+ "Cuello Mao",
1191
+ "Cuello Chimenea",
1192
+ "Capucha",
1193
+ "Overshirt",
1194
+ "Cropped",
1195
+ "Larga",
1196
+ "Pierna Recta",
1197
+ "Pitillo",
1198
+ "Ancha",
1199
+ "Cargo",
1200
+ "Acampanado",
1201
+ "Trench",
1202
+ "Plumífero",
1203
+ "Doble botonadura",
1204
+ "Botones",
1205
+ "Cremallera",
1206
+ "Velcro",
1207
+ "Cordones",
1208
+ "Broches",
1209
+ "Bolsillos",
1210
+ "Sin Bolsillos",
1211
+ "Reversible"
1212
+ ]
1213
+ }
1214
+ },
1215
+ "fit": {
1216
+ "description": "Ajuste",
1217
+ "type": "string",
1218
+ "enum": [
1219
+ "Entallado",
1220
+ "Ajustado",
1221
+ "Regular",
1222
+ "Relajado",
1223
+ "Holgado",
1224
+ "Extragrande"
1225
+ ]
1226
+ },
1227
+ "primary_color": {
1228
+ "type": "string",
1229
+ "enum": [
1230
+ "Blanco",
1231
+ "Negro",
1232
+ "Gris",
1233
+ "Beige",
1234
+ "Marrón",
1235
+ "Azul",
1236
+ "Verde",
1237
+ "Rojo",
1238
+ "Burdeos",
1239
+ "Rosa",
1240
+ "Amarillo",
1241
+ "Naranja",
1242
+ "Morado",
1243
+ "Camel",
1244
+ "Caqui",
1245
+ "Marino",
1246
+ "Crema",
1247
+ "Oro",
1248
+ "Plata",
1249
+ "Bronce"
1250
+ ],
1251
+ "description": "Color principal"
1252
+ },
1253
+ "secondary_color": {
1254
+ "description": "Color secundario",
1255
+ "type": "string",
1256
+ "enum": [
1257
+ "Blanco",
1258
+ "Negro",
1259
+ "Gris",
1260
+ "Beige",
1261
+ "Marrón",
1262
+ "Azul",
1263
+ "Verde",
1264
+ "Rojo",
1265
+ "Burdeos",
1266
+ "Rosa",
1267
+ "Amarillo",
1268
+ "Naranja",
1269
+ "Morado",
1270
+ "Camel",
1271
+ "Caqui",
1272
+ "Marino",
1273
+ "Crema",
1274
+ "Oro",
1275
+ "Plata",
1276
+ "Bronce"
1277
+ ]
1278
+ },
1279
+ "pattern": {
1280
+ "description": "Estampado",
1281
+ "type": "string",
1282
+ "enum": [
1283
+ "Liso",
1284
+ "Rayas",
1285
+ "Cuadros",
1286
+ "Lunares",
1287
+ "Animal Print",
1288
+ "Floral",
1289
+ "Geométrico",
1290
+ "Camuflaje",
1291
+ "EstampadoGráfico",
1292
+ "Degradado"
1293
+ ]
1294
+ },
1295
+ "materials": {
1296
+ "description": "Materiales",
1297
+ "type": "array",
1298
+ "items": {
1299
+ "type": "string",
1300
+ "enum": [
1301
+ "Algodón",
1302
+ "Lino",
1303
+ "Lana",
1304
+ "Seda",
1305
+ "Cuero",
1306
+ "Cachemir",
1307
+ "Ante",
1308
+ "Poliéster",
1309
+ "Nylon",
1310
+ "Elastano",
1311
+ "Viscosa",
1312
+ "Piel Sintética",
1313
+ "Gore-Tex",
1314
+ "Denim",
1315
+ "Punto",
1316
+ "Felpa",
1317
+ "Tweed",
1318
+ "Satén",
1319
+ "Terciopelo",
1320
+ "Jacquard",
1321
+ "Franela",
1322
+ "Gabardina"
1323
+ ]
1324
+ }
1325
+ },
1326
+ "layer": {
1327
+ "type": "string",
1328
+ "enum": [
1329
+ "Base",
1330
+ "Intermedia",
1331
+ "Exterior"
1332
+ ],
1333
+ "description": "Capa Térmica"
1334
+ },
1335
+ "season": {
1336
+ "description": "Estaciones",
1337
+ "type": "string",
1338
+ "enum": [
1339
+ "Invierno",
1340
+ "Verano",
1341
+ "Entretiempo",
1342
+ "Todo el año"
1343
+ ]
1344
+ },
1345
+ "use_case": {
1346
+ "description": "Casos de uso",
1347
+ "type": "array",
1348
+ "items": {
1349
+ "type": "string",
1350
+ "enum": [
1351
+ "Capsula",
1352
+ "Favorita",
1353
+ "Básico",
1354
+ "Deporte",
1355
+ "Trabajo",
1356
+ "Evento",
1357
+ "Viaje",
1358
+ "Casa",
1359
+ "Fiesta",
1360
+ "Playa",
1361
+ "Lluvia",
1362
+ "Frío Extremo"
1363
+ ]
1364
+ }
1365
+ },
1366
+ "formality": {
1367
+ "description": "Formalidad",
1368
+ "type": "string",
1369
+ "enum": [
1370
+ "Muy Informal",
1371
+ "Casual",
1372
+ "Arreglado",
1373
+ "Formal",
1374
+ "Etiqueta"
1375
+ ]
1376
+ },
1377
+ "brand": {
1378
+ "description": "The brand of the clothing",
1379
+ "type": "string"
1380
+ },
1381
+ "cares": {
1382
+ "description": "Cuidados",
1383
+ "type": "array",
1384
+ "items": {
1385
+ "type": "string",
1386
+ "enum": [
1387
+ "Lavado a mano",
1388
+ "Lavado a máquina",
1389
+ "Lavado en seco",
1390
+ "Frio",
1391
+ "Caliente",
1392
+ "Planchado",
1393
+ "Planchado a vapor"
1394
+ ]
1395
+ }
1396
+ },
1397
+ "status": {
1398
+ "default": "Bien",
1399
+ "description": "Estado",
1400
+ "type": "string",
1401
+ "enum": [
1402
+ "Nuevo",
1403
+ "Bien",
1404
+ "Gastado",
1405
+ "Dañado",
1406
+ "Retirar"
1407
+ ]
1408
+ },
1409
+ "size": {
1410
+ "type": "string",
1411
+ "enum": [
1412
+ "28",
1413
+ "30",
1414
+ "32",
1415
+ "34",
1416
+ "36",
1417
+ "37",
1418
+ "38",
1419
+ "39",
1420
+ "40",
1421
+ "41",
1422
+ "42",
1423
+ "43",
1424
+ "44",
1425
+ "45",
1426
+ "46",
1427
+ "48",
1428
+ "XS",
1429
+ "S",
1430
+ "M",
1431
+ "L",
1432
+ "XL",
1433
+ "XXL",
1434
+ "XXXL"
1435
+ ]
1436
+ },
1437
+ "measurements": {
1438
+ "description": "Medidas",
1439
+ "type": "array",
1440
+ "items": {
1441
+ "type": "number"
1442
+ }
1443
+ },
1444
+ "type": {
1445
+ "type": "string",
1446
+ "const": "[[Recursos]]"
1447
+ },
1448
+ "subtype": {
1449
+ "type": "string",
1450
+ "const": "[[Prendas]]"
1451
+ },
1452
+ "areas": {
1453
+ "type": "array",
1454
+ "items": {
1455
+ "type": "string",
1456
+ "const": "[[Hogar]]"
1457
+ }
1458
+ },
1459
+ "color": {
1460
+ "type": "string",
1461
+ "const": "#CB6120"
1462
+ },
1463
+ "icon": {
1464
+ "type": "string",
1465
+ "const": "shirt"
1466
+ },
1467
+ "cover": {
1468
+ "type": "string"
1469
+ }
1470
+ },
1471
+ "required": [
1472
+ "name",
1473
+ "garment",
1474
+ "slot",
1475
+ "primary_color",
1476
+ "layer",
1477
+ "status",
1478
+ "size",
1479
+ "type",
1480
+ "subtype",
1481
+ "areas",
1482
+ "color",
1483
+ "icon"
1484
+ ],
1485
+ "additionalProperties": false,
1486
+ "description": "Prenda de ropa"
1487
+ },
1488
+ "DetailedClothingSchema": {
1489
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1490
+ "type": "object",
1491
+ "properties": {
1492
+ "cares": {
1493
+ "description": "Cuidados",
1494
+ "type": "array",
1495
+ "items": {
1496
+ "type": "string",
1497
+ "enum": [
1498
+ "Lavado a mano",
1499
+ "Lavado a máquina",
1500
+ "Lavado en seco",
1501
+ "Frio",
1502
+ "Caliente",
1503
+ "Planchado",
1504
+ "Planchado a vapor"
1505
+ ]
1506
+ }
1507
+ },
1508
+ "status": {
1509
+ "default": "Bien",
1510
+ "description": "Estado",
1511
+ "type": "string",
1512
+ "enum": [
1513
+ "Nuevo",
1514
+ "Bien",
1515
+ "Gastado",
1516
+ "Dañado",
1517
+ "Retirar"
1518
+ ]
1519
+ },
1520
+ "size": {
1521
+ "type": "string",
1522
+ "enum": [
1523
+ "28",
1524
+ "30",
1525
+ "32",
1526
+ "34",
1527
+ "36",
1528
+ "37",
1529
+ "38",
1530
+ "39",
1531
+ "40",
1532
+ "41",
1533
+ "42",
1534
+ "43",
1535
+ "44",
1536
+ "45",
1537
+ "46",
1538
+ "48",
1539
+ "XS",
1540
+ "S",
1541
+ "M",
1542
+ "L",
1543
+ "XL",
1544
+ "XXL",
1545
+ "XXXL"
1546
+ ]
1547
+ },
1548
+ "measurements": {
1549
+ "description": "Medidas",
1550
+ "type": "array",
1551
+ "items": {
1552
+ "type": "number"
1553
+ }
1554
+ }
1555
+ },
1556
+ "required": [
1557
+ "status",
1558
+ "size"
1559
+ ],
1560
+ "additionalProperties": false,
1561
+ "description": "Prenda de ropa: Datos adicionales de dificil obtención"
1562
+ },
1563
+ "MetaClothingSchema": {
1564
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
1565
+ "type": "object",
1566
+ "properties": {
1567
+ "type": {
1568
+ "type": "string",
1569
+ "const": "[[Recursos]]"
1570
+ },
1571
+ "subtype": {
1572
+ "type": "string",
1573
+ "const": "[[Prendas]]"
1574
+ },
1575
+ "areas": {
1576
+ "type": "array",
1577
+ "items": {
1578
+ "type": "string",
1579
+ "const": "[[Hogar]]"
1580
+ }
1581
+ },
1582
+ "color": {
1583
+ "type": "string",
1584
+ "const": "#CB6120"
1585
+ },
1586
+ "icon": {
1587
+ "type": "string",
1588
+ "const": "shirt"
1589
+ },
1590
+ "cover": {
1591
+ "type": "string"
1592
+ }
1593
+ },
1594
+ "required": [
1595
+ "type",
1596
+ "subtype",
1597
+ "areas",
1598
+ "color",
1599
+ "icon"
1600
+ ],
1601
+ "additionalProperties": false,
1602
+ "description": "Prenda de ropa: Metadatos de Nota"
805
1603
  }
806
1604
  }
807
1605
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@segha/catalog",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "main": "index.ts",
5
5
  "description": "Schemas for Petroglyph Catalog",
6
6
  "keywords": [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes