@instruments/taxonomy 1.0.0 → 1.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.
- package/dist/index.d.ts +4 -2
- package/dist/index.js +700 -15
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -33,6 +33,8 @@ type SourceBasis =
|
|
|
33
33
|
| "authored"
|
|
34
34
|
/** Written here, but derived from measured usage in a named corpus. */
|
|
35
35
|
| "evidenced"
|
|
36
|
+
/** Written here from one or more named authoritative references, without adopting their term. */
|
|
37
|
+
| "referenced"
|
|
36
38
|
/** Adopted from a published external standard, with its identifier carried. */
|
|
37
39
|
| "standard";
|
|
38
40
|
interface TermProvenance {
|
|
@@ -200,7 +202,7 @@ type RelationPredicate =
|
|
|
200
202
|
|
|
201
203
|
declare const TAXONOMY_BASE_URI: "https://taxonomy.materialinstruments.com";
|
|
202
204
|
declare const TAXONOMY_SNAPSHOT: "2026-08-30";
|
|
203
|
-
declare const TAXONOMY_VERSION: "1.
|
|
205
|
+
declare const TAXONOMY_VERSION: "1.1.0";
|
|
204
206
|
type CanonicalConceptUri = `${typeof TAXONOMY_BASE_URI}/id/${string}`;
|
|
205
207
|
type LifecycleStatus = "active" | "deprecated";
|
|
206
208
|
interface Lifecycle {
|
|
@@ -334,7 +336,7 @@ declare const TAXONOMY_CORPUS_METADATA: {
|
|
|
334
336
|
readonly nodeCount: number;
|
|
335
337
|
readonly revision: string;
|
|
336
338
|
readonly snapshot: "2026-08-30";
|
|
337
|
-
readonly version: "1.
|
|
339
|
+
readonly version: "1.1.0";
|
|
338
340
|
};
|
|
339
341
|
|
|
340
342
|
export { type AxisNode, COLOR_SCOPE_REFERENCE_KINDS, type CanonicalConceptUri, type ColorScopeReferenceKind, type ColorScopeTarget, type ConceptNode, type ExternalReference, type FacetNode, type Governance, type GraphPredicate, KNOWLEDGE_GRAPH, type KnowledgeGraph, type KnowledgeGraphEdge, type KnowledgeGraphNode, LEXICAL_ENTRIES, type LexicalContext, type LexicalEntry, type LexicalTarget, type Lifecycle, type LifecycleStatus, type PeriodSpan, type SearchedWithout, type StyleKind, TAXONOMY_BASE_URI, TAXONOMY_CORPUS_METADATA, TAXONOMY_CORPUS_REVISION, TAXONOMY_SNAPSHOT, TAXONOMY_VERSION, type TaxonomyTarget, type TermProvenance, type TermUsage, type UsageWithheld };
|
package/dist/index.js
CHANGED
|
@@ -982,9 +982,64 @@ var ELEMENT_TERMS = [
|
|
|
982
982
|
...ELEMENT_FITOUT_TERMS
|
|
983
983
|
];
|
|
984
984
|
|
|
985
|
+
// src/materialgraph-crossover-sources.ts
|
|
986
|
+
var MATERIALGRAPH_CROSSOVER_SOURCE = "materialgraph@b55d7ad33807d9653bd4838b7908fb1d100440a8:packages/products/src/search/colour-material-lexicon.ts:46-102";
|
|
987
|
+
var COLORSCOPE_CROSSOVER_SOURCE = "materialinstruments/colorscope@c0662caabe7cd8604241a8a7b2608fa5bc71de51:packages/core/data/reference/v1/taxonomy.json";
|
|
988
|
+
var BRASS_MATERIAL_SOURCE = "https://archive.copper.org/applications/industrial/DesignGuide/terms.php";
|
|
989
|
+
var BRASS_FINISH_SOURCE = "https://nickelinstitute.org/media/lxxh1zwr/2023-nickelplatinghandbooka5_printablepdf.pdf section 5";
|
|
990
|
+
var NICKEL_MATERIAL_SOURCE = "https://nickelinstitute.org/en/nickel-applications/";
|
|
991
|
+
var NICKEL_FINISH_SOURCE = "https://nickelinstitute.org/en/nickel-applications/plating";
|
|
992
|
+
var WOOD_HANDBOOK_SOURCE = "https://research.fs.usda.gov/download/treesearch/37440.pdf";
|
|
993
|
+
var FAO_NATURAL_FIBRES_SOURCE = "https://www.fao.org/docrep/pdf/012/i0987e/i0987e00.pdf";
|
|
994
|
+
var CROSSOVER_DEFINITION_SOURCES = {
|
|
995
|
+
alabaster: "https://webapps.bgs.ac.uk/memoirs/docs/B06070.html",
|
|
996
|
+
brass: `${BRASS_MATERIAL_SOURCE}; ${BRASS_FINISH_SOURCE}`,
|
|
997
|
+
bronze: "https://archive.copper.org/applications/industrial/DesignGuide/terms.php; https://archive.copper.org/applications/architecture/arch_dhb/technical-discussion/copper_alloys/",
|
|
998
|
+
cherry: WOOD_HANDBOOK_SOURCE,
|
|
999
|
+
chestnut: WOOD_HANDBOOK_SOURCE,
|
|
1000
|
+
chrome: "ISO 1456:2009, https://www.iso.org/standard/50237.html; ISO 6158:2018, https://www.iso.org/standard/72269.html",
|
|
1001
|
+
clay: "https://pubs.usgs.gov/info/clays/",
|
|
1002
|
+
concrete: "https://www.concrete.org/frequentlyaskedquestions.aspx?faqid=640",
|
|
1003
|
+
copper: "https://archive.copper.org/applications/industrial/DesignGuide/selection/elect02.php",
|
|
1004
|
+
cork: "https://apcor.pt/en/what-it-is",
|
|
1005
|
+
cotton: FAO_NATURAL_FIBRES_SOURCE,
|
|
1006
|
+
denim: "https://cottonworks.com/encyclopedia-item/denim/",
|
|
1007
|
+
ebony: WOOD_HANDBOOK_SOURCE,
|
|
1008
|
+
gold: "https://www.usgs.gov/centers/national-minerals-information-center/gold-statistics-and-information",
|
|
1009
|
+
gunmetal: "https://live.copper.org/applications/marine/cuni/alloys/pub-206-copper-alloys-for-marine-environments.pdf",
|
|
1010
|
+
iron: "https://www.usgs.gov/centers/national-minerals-information-center/iron-and-steel-statistics-and-information",
|
|
1011
|
+
jade: "https://www.gia.edu/jade-description",
|
|
1012
|
+
jute: "https://www.fao.org/markets-and-trade/commodities-overview/fibres/jute-and-hard-fibres/",
|
|
1013
|
+
leather: "ISO 15115, https://www.iso.org/obp/ui?_escaped_fragment_=iso%3Astd%3Aiso%3A15115%3Aed-1%3Av1%3Aen",
|
|
1014
|
+
linen: "https://allianceflaxlinenhemp.eu/en/document_resources/35/download",
|
|
1015
|
+
mahogany: WOOD_HANDBOOK_SOURCE,
|
|
1016
|
+
marble: "https://www.naturalstoneinstitute.org/designprofessionals/varieties/definition/; ASTM C503 via https://www.naturalstoneinstitute.org/stoneprofessionals/astm/",
|
|
1017
|
+
nickel: `${NICKEL_MATERIAL_SOURCE}; ${NICKEL_FINISH_SOURCE}`,
|
|
1018
|
+
oak: WOOD_HANDBOOK_SOURCE,
|
|
1019
|
+
obsidian: "https://www.usgs.gov/glossary/volcano-hazards-program-glossary",
|
|
1020
|
+
onyx: "https://www.naturalstoneinstitute.org/consumers/varieties/marble/",
|
|
1021
|
+
pewter: "Getty AAT 300010979, https://www.getty.edu/vow/AATFullDisplay?find=&logic=AND¬e=&page=1&subjectid=300010979",
|
|
1022
|
+
platinum: "https://www.usgs.gov/centers/national-minerals-information-center/platinum-group-metals-statistics-and-information",
|
|
1023
|
+
rosewood: WOOD_HANDBOOK_SOURCE,
|
|
1024
|
+
silver: "https://silverinstitute.org/silver-element-essentials/",
|
|
1025
|
+
sisal: FAO_NATURAL_FIBRES_SOURCE,
|
|
1026
|
+
slate: "ASTM C629 via https://www.naturalstoneinstitute.org/stoneprofessionals/astm/",
|
|
1027
|
+
steel: "https://worldsteel.org/about-steel/what-is-steel/",
|
|
1028
|
+
stone: "https://www.naturalstoneinstitute.org/about/sponsorship-and-advertising/sponsored-content-guidelines/",
|
|
1029
|
+
suede: "ISO 15115, https://www.iso.org/obp/ui?_escaped_fragment_=iso%3Astd%3Aiso%3A15115%3Aed-1%3Av1%3Aen",
|
|
1030
|
+
teak: WOOD_HANDBOOK_SOURCE,
|
|
1031
|
+
terracotta: "Getty AAT 300047296, https://www.getty.edu/vow/AATFullDisplay?find=building&logic=AND¬e=&subjectid=300047296",
|
|
1032
|
+
travertine: "https://www.naturalstoneinstitute.org/about/sponsorship-and-advertising/sponsored-content-guidelines/",
|
|
1033
|
+
walnut: "https://research.fs.usda.gov/treesearch/32210",
|
|
1034
|
+
wood: WOOD_HANDBOOK_SOURCE,
|
|
1035
|
+
wool: FAO_NATURAL_FIBRES_SOURCE
|
|
1036
|
+
};
|
|
1037
|
+
var crossoverSource = (phrase) => `${MATERIALGRAPH_CROSSOVER_SOURCE}; ${CROSSOVER_DEFINITION_SOURCES[phrase]}; ${COLORSCOPE_CROSSOVER_SOURCE}`;
|
|
1038
|
+
|
|
985
1039
|
// src/axes/finish.ts
|
|
986
1040
|
var ESTATE = "DesignShop frozen estate finish vocabulary";
|
|
987
1041
|
var ESTATE_SNAPSHOT = "2026-08-25";
|
|
1042
|
+
var CROSSOVER_SNAPSHOT = "2026-08-30";
|
|
988
1043
|
var MG_SHEEN = "materialgraph ms_sheen";
|
|
989
1044
|
var MG_TEXTURE = "materialgraph ms_texture";
|
|
990
1045
|
var MG_SNAPSHOT = "2026-08-27";
|
|
@@ -1013,6 +1068,26 @@ var repaired = (slug, label, definition, band, note) => ({
|
|
|
1013
1068
|
usage: { band, corpus: CORPUS, snapshot: CORPUS_SNAPSHOT }
|
|
1014
1069
|
});
|
|
1015
1070
|
var FINISH_TREATMENT_TERMS = [
|
|
1071
|
+
{
|
|
1072
|
+
definition: "An exposed brass final surface applied over nickel-plated underlayers; it does not establish that the substrate or bulk material is brass.",
|
|
1073
|
+
label: "Brass",
|
|
1074
|
+
provenance: {
|
|
1075
|
+
basis: "referenced",
|
|
1076
|
+
snapshot: CROSSOVER_SNAPSHOT,
|
|
1077
|
+
source: BRASS_FINISH_SOURCE
|
|
1078
|
+
},
|
|
1079
|
+
slug: "brass"
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
definition: "An electrodeposited chromium finish used in decorative nickel-plus-chromium coating systems or as an engineering-purpose chromium coating; it does not normalize the source word to chromium as a substance.",
|
|
1083
|
+
label: "Chrome",
|
|
1084
|
+
provenance: {
|
|
1085
|
+
basis: "standard",
|
|
1086
|
+
snapshot: CROSSOVER_SNAPSHOT,
|
|
1087
|
+
source: CROSSOVER_DEFINITION_SOURCES.chrome
|
|
1088
|
+
},
|
|
1089
|
+
slug: "chrome"
|
|
1090
|
+
},
|
|
1016
1091
|
term2("glazed", "Glazed", "Covered by a fused vitreous surface layer."),
|
|
1017
1092
|
term2(
|
|
1018
1093
|
"honed",
|
|
@@ -1024,6 +1099,16 @@ var FINISH_TREATMENT_TERMS = [
|
|
|
1024
1099
|
"Natural",
|
|
1025
1100
|
"Left close to the material's formed or worked state without an appearance-changing top finish."
|
|
1026
1101
|
),
|
|
1102
|
+
{
|
|
1103
|
+
definition: "An electrodeposited nickel coating; bright, satin, pearl, and black appearances require qualifiers, and the coating does not establish the substrate or bulk material.",
|
|
1104
|
+
label: "Nickel",
|
|
1105
|
+
provenance: {
|
|
1106
|
+
basis: "referenced",
|
|
1107
|
+
snapshot: CROSSOVER_SNAPSHOT,
|
|
1108
|
+
source: NICKEL_FINISH_SOURCE
|
|
1109
|
+
},
|
|
1110
|
+
slug: "nickel"
|
|
1111
|
+
},
|
|
1027
1112
|
term2(
|
|
1028
1113
|
"polished",
|
|
1029
1114
|
"Polished",
|
|
@@ -1228,13 +1313,47 @@ var FORMAT_TERMS = [
|
|
|
1228
1313
|
// src/axes/material.ts
|
|
1229
1314
|
var SOURCE3 = "DesignShop frozen estate and Material Instruments material vocabularies";
|
|
1230
1315
|
var SNAPSHOT3 = "2026-08-25";
|
|
1316
|
+
var CROSSOVER_SNAPSHOT2 = "2026-08-30";
|
|
1317
|
+
var NATURAL_FIBRE_SLUG = "natural-fibre";
|
|
1318
|
+
var STONE_SLUG = "stone";
|
|
1231
1319
|
var term4 = (slug, label, definition) => ({
|
|
1232
1320
|
definition,
|
|
1233
1321
|
label,
|
|
1234
1322
|
provenance: { basis: "evidenced", snapshot: SNAPSHOT3, source: SOURCE3 },
|
|
1235
1323
|
slug
|
|
1236
1324
|
});
|
|
1325
|
+
var crossoverTerm = (slug, label, definition, source, broaderSlug) => ({
|
|
1326
|
+
...broaderSlug === void 0 ? {} : { broaderSlug },
|
|
1327
|
+
definition,
|
|
1328
|
+
label,
|
|
1329
|
+
provenance: {
|
|
1330
|
+
basis: "referenced",
|
|
1331
|
+
snapshot: CROSSOVER_SNAPSHOT2,
|
|
1332
|
+
source
|
|
1333
|
+
},
|
|
1334
|
+
slug
|
|
1335
|
+
});
|
|
1336
|
+
var standardCrossoverTerm = (slug, label, definition, source) => ({
|
|
1337
|
+
...crossoverTerm(slug, label, definition, source),
|
|
1338
|
+
provenance: {
|
|
1339
|
+
basis: "standard",
|
|
1340
|
+
snapshot: CROSSOVER_SNAPSHOT2,
|
|
1341
|
+
source
|
|
1342
|
+
}
|
|
1343
|
+
});
|
|
1237
1344
|
var MATERIAL_TERMS = [
|
|
1345
|
+
crossoverTerm(
|
|
1346
|
+
"brass",
|
|
1347
|
+
"Brass",
|
|
1348
|
+
"A copper alloy whose principal alloying element is zinc.",
|
|
1349
|
+
BRASS_MATERIAL_SOURCE
|
|
1350
|
+
),
|
|
1351
|
+
crossoverTerm(
|
|
1352
|
+
"bronze",
|
|
1353
|
+
"Bronze",
|
|
1354
|
+
"A copper-alloy family historically associated with copper and tin; unmodified bronze does not identify a specific modern composition.",
|
|
1355
|
+
CROSSOVER_DEFINITION_SOURCES.bronze
|
|
1356
|
+
),
|
|
1238
1357
|
term4(
|
|
1239
1358
|
"ceramic",
|
|
1240
1359
|
"Ceramic",
|
|
@@ -1250,16 +1369,28 @@ var MATERIAL_TERMS = [
|
|
|
1250
1369
|
"Composite",
|
|
1251
1370
|
"An engineered material whose performance comes from two or more bound constituents."
|
|
1252
1371
|
),
|
|
1372
|
+
crossoverTerm(
|
|
1373
|
+
"copper",
|
|
1374
|
+
"Copper",
|
|
1375
|
+
"A metal with a designated minimum copper content of 99.3 percent in the UNS wrought-copper designation system.",
|
|
1376
|
+
CROSSOVER_DEFINITION_SOURCES.copper
|
|
1377
|
+
),
|
|
1253
1378
|
term4(
|
|
1254
1379
|
"laminate",
|
|
1255
1380
|
"Laminate",
|
|
1256
1381
|
"A layered sheet material consolidated around a decorative or protective face."
|
|
1257
1382
|
),
|
|
1258
1383
|
term4(
|
|
1259
|
-
|
|
1384
|
+
NATURAL_FIBRE_SLUG,
|
|
1260
1385
|
"Natural fibre",
|
|
1261
1386
|
"A material whose visible fibre is plant- or animal-derived."
|
|
1262
1387
|
),
|
|
1388
|
+
crossoverTerm(
|
|
1389
|
+
"nickel",
|
|
1390
|
+
"Nickel",
|
|
1391
|
+
"The metallic chemical element Ni used in solid metals and alloys; the bare term does not establish alloy, grade, or bulk composition.",
|
|
1392
|
+
NICKEL_MATERIAL_SOURCE
|
|
1393
|
+
),
|
|
1263
1394
|
term4(
|
|
1264
1395
|
"paper",
|
|
1265
1396
|
"Paper",
|
|
@@ -1270,24 +1401,243 @@ var MATERIAL_TERMS = [
|
|
|
1270
1401
|
"Solid surface",
|
|
1271
1402
|
"A homogeneous or near-homogeneous cast sheet made from resin and mineral filler."
|
|
1272
1403
|
),
|
|
1273
|
-
|
|
1274
|
-
"
|
|
1404
|
+
crossoverTerm(
|
|
1405
|
+
"silver",
|
|
1406
|
+
"Silver",
|
|
1407
|
+
"The metallic chemical element Ag, atomic number 47.",
|
|
1408
|
+
CROSSOVER_DEFINITION_SOURCES.silver
|
|
1409
|
+
),
|
|
1410
|
+
crossoverTerm(
|
|
1411
|
+
"slate",
|
|
1412
|
+
"Slate",
|
|
1413
|
+
"A commercial dimension-stone group separately specified for use as slate dimension stone.",
|
|
1414
|
+
CROSSOVER_DEFINITION_SOURCES.slate,
|
|
1415
|
+
STONE_SLUG
|
|
1416
|
+
),
|
|
1417
|
+
crossoverTerm(
|
|
1418
|
+
STONE_SLUG,
|
|
1275
1419
|
"Stone",
|
|
1276
|
-
"Naturally occurring rock quarried and worked for use as a finish or component."
|
|
1420
|
+
"Naturally occurring rock quarried and worked for use as a finish or component.",
|
|
1421
|
+
CROSSOVER_DEFINITION_SOURCES.stone
|
|
1277
1422
|
),
|
|
1278
|
-
|
|
1423
|
+
crossoverTerm(
|
|
1424
|
+
"marble",
|
|
1425
|
+
"Marble",
|
|
1426
|
+
"A commercial dimension-stone group that includes stone worked and sold as marble, including some dense or partially metamorphosed limestone.",
|
|
1427
|
+
CROSSOVER_DEFINITION_SOURCES.marble,
|
|
1428
|
+
STONE_SLUG
|
|
1429
|
+
),
|
|
1430
|
+
crossoverTerm(
|
|
1431
|
+
"steel",
|
|
1432
|
+
"Steel",
|
|
1433
|
+
"An iron-carbon alloy family spanning many grades rather than one uniform product.",
|
|
1434
|
+
CROSSOVER_DEFINITION_SOURCES.steel
|
|
1435
|
+
),
|
|
1436
|
+
crossoverTerm(
|
|
1279
1437
|
"wood",
|
|
1280
1438
|
"Wood",
|
|
1281
|
-
"Lignocellulosic material obtained from the trunk or branches of a tree or shrub."
|
|
1439
|
+
"Lignocellulosic material obtained from the trunk or branches of a tree or shrub.",
|
|
1440
|
+
CROSSOVER_DEFINITION_SOURCES.wood
|
|
1441
|
+
),
|
|
1442
|
+
crossoverTerm(
|
|
1443
|
+
"oak",
|
|
1444
|
+
"Oak",
|
|
1445
|
+
"Wood from trees in the Quercus genus, including distinct red-oak and white-oak species groups.",
|
|
1446
|
+
CROSSOVER_DEFINITION_SOURCES.oak,
|
|
1447
|
+
"wood"
|
|
1448
|
+
),
|
|
1449
|
+
crossoverTerm(
|
|
1450
|
+
"teak",
|
|
1451
|
+
"Teak",
|
|
1452
|
+
"Wood from Tectona grandis, named as timber rather than as a colour or surface treatment.",
|
|
1453
|
+
CROSSOVER_DEFINITION_SOURCES.teak,
|
|
1454
|
+
"wood"
|
|
1282
1455
|
),
|
|
1283
1456
|
{
|
|
1284
|
-
...
|
|
1457
|
+
...crossoverTerm(
|
|
1285
1458
|
"walnut",
|
|
1286
1459
|
"Walnut",
|
|
1287
|
-
"Wood obtained from a tree in the genus Juglans, named as a material rather than as a colour."
|
|
1460
|
+
"Wood obtained from a tree in the genus Juglans, named as a material rather than as a colour.",
|
|
1461
|
+
CROSSOVER_DEFINITION_SOURCES.walnut
|
|
1288
1462
|
),
|
|
1289
1463
|
broaderSlug: "wood"
|
|
1290
1464
|
},
|
|
1465
|
+
crossoverTerm(
|
|
1466
|
+
"clay",
|
|
1467
|
+
"Clay",
|
|
1468
|
+
"A naturally occurring fine-grained earthy material composed largely of clay minerals; the bare term does not mean fired ceramic.",
|
|
1469
|
+
CROSSOVER_DEFINITION_SOURCES.clay
|
|
1470
|
+
),
|
|
1471
|
+
crossoverTerm(
|
|
1472
|
+
"cotton",
|
|
1473
|
+
"Cotton",
|
|
1474
|
+
"A natural seed-hair textile fibre; the fibre identity does not establish weave, blend, dye, or finish.",
|
|
1475
|
+
CROSSOVER_DEFINITION_SOURCES.cotton,
|
|
1476
|
+
NATURAL_FIBRE_SLUG
|
|
1477
|
+
),
|
|
1478
|
+
standardCrossoverTerm(
|
|
1479
|
+
"leather",
|
|
1480
|
+
"Leather",
|
|
1481
|
+
"Tanned animal hide or skin that retains its fibrous structure; animal, layer, tanning, coating, and finish remain unspecified.",
|
|
1482
|
+
CROSSOVER_DEFINITION_SOURCES.leather
|
|
1483
|
+
),
|
|
1484
|
+
crossoverTerm(
|
|
1485
|
+
"linen",
|
|
1486
|
+
"Linen",
|
|
1487
|
+
"A flax-derived yarn or fabric material; fibre, yarn, and finished fabric are distinct forms.",
|
|
1488
|
+
CROSSOVER_DEFINITION_SOURCES.linen,
|
|
1489
|
+
NATURAL_FIBRE_SLUG
|
|
1490
|
+
),
|
|
1491
|
+
crossoverTerm(
|
|
1492
|
+
"jute",
|
|
1493
|
+
"Jute",
|
|
1494
|
+
"A plant bast fibre used as a textile and industrial fibre; the word does not establish construction, blend, treatment, or colour.",
|
|
1495
|
+
CROSSOVER_DEFINITION_SOURCES.jute,
|
|
1496
|
+
NATURAL_FIBRE_SLUG
|
|
1497
|
+
),
|
|
1498
|
+
crossoverTerm(
|
|
1499
|
+
"sisal",
|
|
1500
|
+
"Sisal",
|
|
1501
|
+
"A natural leaf fibre, distinct from a floorcovering or other product made from it.",
|
|
1502
|
+
CROSSOVER_DEFINITION_SOURCES.sisal,
|
|
1503
|
+
NATURAL_FIBRE_SLUG
|
|
1504
|
+
),
|
|
1505
|
+
crossoverTerm(
|
|
1506
|
+
"cork",
|
|
1507
|
+
"Cork",
|
|
1508
|
+
"Bark of the cork oak, Quercus suber; natural cork, agglomerate, backing, veneer, and cork-look appearance remain distinct.",
|
|
1509
|
+
CROSSOVER_DEFINITION_SOURCES.cork
|
|
1510
|
+
),
|
|
1511
|
+
crossoverTerm(
|
|
1512
|
+
"wool",
|
|
1513
|
+
"Wool",
|
|
1514
|
+
"A natural animal fibre; species, grade, blend, textile construction, and finish remain unspecified.",
|
|
1515
|
+
CROSSOVER_DEFINITION_SOURCES.wool,
|
|
1516
|
+
NATURAL_FIBRE_SLUG
|
|
1517
|
+
),
|
|
1518
|
+
standardCrossoverTerm(
|
|
1519
|
+
"suede",
|
|
1520
|
+
"Suede",
|
|
1521
|
+
"Leather or split leather whose wearing surface is mechanically finished to a velvet-like nap.",
|
|
1522
|
+
CROSSOVER_DEFINITION_SOURCES.suede
|
|
1523
|
+
),
|
|
1524
|
+
crossoverTerm(
|
|
1525
|
+
"concrete",
|
|
1526
|
+
"Concrete",
|
|
1527
|
+
"A composite of hydraulic cement, aggregates, water, and optional additions; mix, reinforcement, coating, polish, and imitation remain distinct.",
|
|
1528
|
+
CROSSOVER_DEFINITION_SOURCES.concrete
|
|
1529
|
+
),
|
|
1530
|
+
crossoverTerm(
|
|
1531
|
+
"mahogany",
|
|
1532
|
+
"Mahogany",
|
|
1533
|
+
"A commercially named wood represented by more than one botanical group; the bare name does not establish species or construction.",
|
|
1534
|
+
CROSSOVER_DEFINITION_SOURCES.mahogany,
|
|
1535
|
+
"wood"
|
|
1536
|
+
),
|
|
1537
|
+
crossoverTerm(
|
|
1538
|
+
"ebony",
|
|
1539
|
+
"Ebony",
|
|
1540
|
+
"Wood traded under ebony names across Diospyros species; the trade name is not a botanical identity or proof of black colour.",
|
|
1541
|
+
CROSSOVER_DEFINITION_SOURCES.ebony,
|
|
1542
|
+
"wood"
|
|
1543
|
+
),
|
|
1544
|
+
crossoverTerm(
|
|
1545
|
+
"cherry",
|
|
1546
|
+
"Cherry",
|
|
1547
|
+
"A timber reading that includes black cherry, Prunus serotina, in the North American trade; the common name alone does not establish species.",
|
|
1548
|
+
CROSSOVER_DEFINITION_SOURCES.cherry,
|
|
1549
|
+
"wood"
|
|
1550
|
+
),
|
|
1551
|
+
crossoverTerm(
|
|
1552
|
+
"chestnut",
|
|
1553
|
+
"Chestnut",
|
|
1554
|
+
"A timber reading that includes American chestnut, Castanea dentata; the common name does not establish species or construction.",
|
|
1555
|
+
CROSSOVER_DEFINITION_SOURCES.chestnut,
|
|
1556
|
+
"wood"
|
|
1557
|
+
),
|
|
1558
|
+
crossoverTerm(
|
|
1559
|
+
"rosewood",
|
|
1560
|
+
"Rosewood",
|
|
1561
|
+
"A trade-name wood reading spanning distinct Dalbergia timbers; species and trade substitution require separate evidence.",
|
|
1562
|
+
CROSSOVER_DEFINITION_SOURCES.rosewood,
|
|
1563
|
+
"wood"
|
|
1564
|
+
),
|
|
1565
|
+
crossoverTerm(
|
|
1566
|
+
"gold",
|
|
1567
|
+
"Gold",
|
|
1568
|
+
"The metallic chemical element Au; solid metal, alloy, leaf, plating, coating, and gold-coloured appearance are not interchangeable.",
|
|
1569
|
+
CROSSOVER_DEFINITION_SOURCES.gold
|
|
1570
|
+
),
|
|
1571
|
+
crossoverTerm(
|
|
1572
|
+
"pewter",
|
|
1573
|
+
"Pewter",
|
|
1574
|
+
"A tin-alloy family with historically variable lead, antimony, and copper content; the bare term does not identify a finish.",
|
|
1575
|
+
CROSSOVER_DEFINITION_SOURCES.pewter
|
|
1576
|
+
),
|
|
1577
|
+
crossoverTerm(
|
|
1578
|
+
"iron",
|
|
1579
|
+
"Iron",
|
|
1580
|
+
"The metallic chemical element Fe; bare usage may instead denote cast iron, wrought iron, steel, oxide, or an iron-look finish.",
|
|
1581
|
+
CROSSOVER_DEFINITION_SOURCES.iron
|
|
1582
|
+
),
|
|
1583
|
+
crossoverTerm(
|
|
1584
|
+
"gunmetal",
|
|
1585
|
+
"Gunmetal",
|
|
1586
|
+
"A copper-tin-zinc casting-alloy family with grade-dependent composition.",
|
|
1587
|
+
CROSSOVER_DEFINITION_SOURCES.gunmetal
|
|
1588
|
+
),
|
|
1589
|
+
crossoverTerm(
|
|
1590
|
+
"platinum",
|
|
1591
|
+
"Platinum",
|
|
1592
|
+
"A platinum-group metal; solid metal, alloy, plating, and platinum-coloured appearance require separate evidence.",
|
|
1593
|
+
CROSSOVER_DEFINITION_SOURCES.platinum
|
|
1594
|
+
),
|
|
1595
|
+
crossoverTerm(
|
|
1596
|
+
"onyx",
|
|
1597
|
+
"Onyx",
|
|
1598
|
+
"A commercial architectural stone, commonly translucent and distinct from commercial marble; the name does not settle every mineralogical use.",
|
|
1599
|
+
CROSSOVER_DEFINITION_SOURCES.onyx,
|
|
1600
|
+
STONE_SLUG
|
|
1601
|
+
),
|
|
1602
|
+
crossoverTerm(
|
|
1603
|
+
"travertine",
|
|
1604
|
+
"Travertine",
|
|
1605
|
+
"A named natural dimension-stone material; quarry, grade, fill, cut, and surface treatment remain unspecified.",
|
|
1606
|
+
CROSSOVER_DEFINITION_SOURCES.travertine,
|
|
1607
|
+
STONE_SLUG
|
|
1608
|
+
),
|
|
1609
|
+
crossoverTerm(
|
|
1610
|
+
"alabaster",
|
|
1611
|
+
"Alabaster",
|
|
1612
|
+
"A fine-grained, often translucent gypsum used as decorative stone; historical oriental alabaster can denote carbonate stone.",
|
|
1613
|
+
CROSSOVER_DEFINITION_SOURCES.alabaster,
|
|
1614
|
+
STONE_SLUG
|
|
1615
|
+
),
|
|
1616
|
+
crossoverTerm(
|
|
1617
|
+
"jade",
|
|
1618
|
+
"Jade",
|
|
1619
|
+
"An umbrella gem-material term for nephrite, jadeite, and, under defined conditions, green omphacite; it is not one mineral.",
|
|
1620
|
+
CROSSOVER_DEFINITION_SOURCES.jade
|
|
1621
|
+
),
|
|
1622
|
+
crossoverTerm(
|
|
1623
|
+
"obsidian",
|
|
1624
|
+
"Obsidian",
|
|
1625
|
+
"Naturally occurring dense volcanic glass, usually rhyolitic and typically but not necessarily black.",
|
|
1626
|
+
CROSSOVER_DEFINITION_SOURCES.obsidian
|
|
1627
|
+
),
|
|
1628
|
+
crossoverTerm(
|
|
1629
|
+
"terracotta",
|
|
1630
|
+
"Terracotta",
|
|
1631
|
+
"A coarse porous fired-clay material; raw clay, fired body, glaze, object type, and colour remain distinct.",
|
|
1632
|
+
CROSSOVER_DEFINITION_SOURCES.terracotta,
|
|
1633
|
+
"ceramic"
|
|
1634
|
+
),
|
|
1635
|
+
crossoverTerm(
|
|
1636
|
+
"denim",
|
|
1637
|
+
"Denim",
|
|
1638
|
+
"A woven fabric conventionally made with indigo-dyed warp and undyed filling yarns in a twill construction; blends and non-blue denim exist.",
|
|
1639
|
+
CROSSOVER_DEFINITION_SOURCES.denim
|
|
1640
|
+
),
|
|
1291
1641
|
term4(
|
|
1292
1642
|
"vinyl",
|
|
1293
1643
|
"Vinyl",
|
|
@@ -1447,7 +1797,7 @@ var PALETTE_HUE_TERMS = [
|
|
|
1447
1797
|
slug: "black"
|
|
1448
1798
|
},
|
|
1449
1799
|
{
|
|
1450
|
-
altLabels: ["warm neutral", "sand"
|
|
1800
|
+
altLabels: ["warm neutral", "sand"],
|
|
1451
1801
|
label: "Beige",
|
|
1452
1802
|
slug: "beige"
|
|
1453
1803
|
},
|
|
@@ -1467,12 +1817,12 @@ var PALETTE_HUE_TERMS = [
|
|
|
1467
1817
|
slug: "red"
|
|
1468
1818
|
},
|
|
1469
1819
|
{
|
|
1470
|
-
altLabels: ["
|
|
1820
|
+
altLabels: ["rust"],
|
|
1471
1821
|
label: "Orange",
|
|
1472
1822
|
slug: "orange"
|
|
1473
1823
|
},
|
|
1474
1824
|
{
|
|
1475
|
-
altLabels: ["
|
|
1825
|
+
altLabels: ["mustard", "ochre"],
|
|
1476
1826
|
label: "Yellow",
|
|
1477
1827
|
slug: "yellow"
|
|
1478
1828
|
},
|
|
@@ -6567,7 +6917,7 @@ var resolveReference = (reference) => INDEX.byKey.get(canonicalKey(reference));
|
|
|
6567
6917
|
// src/v1.ts
|
|
6568
6918
|
var TAXONOMY_BASE_URI = "https://taxonomy.materialinstruments.com";
|
|
6569
6919
|
var TAXONOMY_SNAPSHOT = "2026-08-30";
|
|
6570
|
-
var TAXONOMY_VERSION = "1.
|
|
6920
|
+
var TAXONOMY_VERSION = "1.1.0";
|
|
6571
6921
|
var compareText = (left, right) => {
|
|
6572
6922
|
if (left < right) {
|
|
6573
6923
|
return -1;
|
|
@@ -6813,11 +7163,12 @@ var buildKnowledgeGraph = () => {
|
|
|
6813
7163
|
};
|
|
6814
7164
|
var KNOWLEDGE_GRAPH = buildKnowledgeGraph();
|
|
6815
7165
|
var COLOR_FAMILY_REFERENCE_KIND = "color-family";
|
|
7166
|
+
var NAMED_COLOR_REFERENCE_KIND = "named-color";
|
|
6816
7167
|
var COLOR_SCOPE_REFERENCE_KINDS = [
|
|
6817
7168
|
"chroma-level",
|
|
6818
7169
|
COLOR_FAMILY_REFERENCE_KIND,
|
|
6819
7170
|
"lightness-level",
|
|
6820
|
-
|
|
7171
|
+
NAMED_COLOR_REFERENCE_KIND,
|
|
6821
7172
|
"palette-mood",
|
|
6822
7173
|
"temperature-level"
|
|
6823
7174
|
];
|
|
@@ -6839,9 +7190,64 @@ var WALNUT_MATERIAL = {
|
|
|
6839
7190
|
uri: `${TAXONOMY_BASE_URI}/id/material/walnut`
|
|
6840
7191
|
};
|
|
6841
7192
|
var WALNUT_COLOUR = {
|
|
6842
|
-
...colorScope("brown-grayish-walnut",
|
|
7193
|
+
...colorScope("brown-grayish-walnut", NAMED_COLOR_REFERENCE_KIND),
|
|
6843
7194
|
role: "secondary"
|
|
6844
7195
|
};
|
|
7196
|
+
var crossoverAmbiguity = (phrase, taxonomyUri, colorScopeIdentifier, explanation, source, additionalTaxonomyUris = []) => ({
|
|
7197
|
+
explanation,
|
|
7198
|
+
governance: lexicalGovernance(
|
|
7199
|
+
"Taxonomy preserves the evidenced readings without assigning a default, role, contextual preference, or consumer route.",
|
|
7200
|
+
{
|
|
7201
|
+
basis: "evidenced",
|
|
7202
|
+
snapshot: TAXONOMY_SNAPSHOT,
|
|
7203
|
+
source
|
|
7204
|
+
}
|
|
7205
|
+
),
|
|
7206
|
+
outcome: "ambiguous",
|
|
7207
|
+
phrase,
|
|
7208
|
+
readings: [
|
|
7209
|
+
{ authority: "taxonomy", uri: taxonomyUri },
|
|
7210
|
+
colorScope(colorScopeIdentifier, NAMED_COLOR_REFERENCE_KIND),
|
|
7211
|
+
...additionalTaxonomyUris.map((uri) => ({
|
|
7212
|
+
authority: "taxonomy",
|
|
7213
|
+
uri
|
|
7214
|
+
}))
|
|
7215
|
+
]
|
|
7216
|
+
});
|
|
7217
|
+
var crossoverEquivalent = (phrase, taxonomyUri, explanation, source) => ({
|
|
7218
|
+
explanation,
|
|
7219
|
+
governance: lexicalGovernance(
|
|
7220
|
+
"Taxonomy records the evidenced material reading without assigning a consumer route.",
|
|
7221
|
+
{
|
|
7222
|
+
basis: "evidenced",
|
|
7223
|
+
snapshot: TAXONOMY_SNAPSHOT,
|
|
7224
|
+
source
|
|
7225
|
+
}
|
|
7226
|
+
),
|
|
7227
|
+
outcome: "equivalent",
|
|
7228
|
+
phrase,
|
|
7229
|
+
target: { authority: "taxonomy", uri: taxonomyUri }
|
|
7230
|
+
});
|
|
7231
|
+
var crossoverTaxonomyAmbiguity = (phrase, readings, explanation, source) => {
|
|
7232
|
+
const [first, second] = readings;
|
|
7233
|
+
return {
|
|
7234
|
+
explanation,
|
|
7235
|
+
governance: lexicalGovernance(
|
|
7236
|
+
"Taxonomy preserves the evidenced readings without assigning a default, role, contextual preference, or consumer route.",
|
|
7237
|
+
{
|
|
7238
|
+
basis: "evidenced",
|
|
7239
|
+
snapshot: TAXONOMY_SNAPSHOT,
|
|
7240
|
+
source
|
|
7241
|
+
}
|
|
7242
|
+
),
|
|
7243
|
+
outcome: "ambiguous",
|
|
7244
|
+
phrase,
|
|
7245
|
+
readings: [
|
|
7246
|
+
{ authority: "taxonomy", uri: first },
|
|
7247
|
+
{ authority: "taxonomy", uri: second }
|
|
7248
|
+
]
|
|
7249
|
+
};
|
|
7250
|
+
};
|
|
6845
7251
|
var AUTHORED_LEXICAL_ENTRIES = [
|
|
6846
7252
|
{
|
|
6847
7253
|
explanation: "Blue is a ColorScope colour-family reading; Taxonomy references that authority rather than minting a rival colour identity.",
|
|
@@ -6857,6 +7263,285 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
6857
7263
|
phrase: "blue",
|
|
6858
7264
|
target: colorScope("blue", COLOR_FAMILY_REFERENCE_KIND)
|
|
6859
7265
|
},
|
|
7266
|
+
crossoverAmbiguity(
|
|
7267
|
+
"alabaster",
|
|
7268
|
+
`${TAXONOMY_BASE_URI}/id/material/alabaster`,
|
|
7269
|
+
"cream-soft-cream-white",
|
|
7270
|
+
"Alabaster can name decorative gypsum stone or an explicit ColorScope alias for Cream White; neither reading establishes the other.",
|
|
7271
|
+
crossoverSource("alabaster")
|
|
7272
|
+
),
|
|
7273
|
+
crossoverAmbiguity(
|
|
7274
|
+
"brass",
|
|
7275
|
+
`${TAXONOMY_BASE_URI}/id/material/brass`,
|
|
7276
|
+
"yellow-warm-brass",
|
|
7277
|
+
"Brass can name a copper-zinc alloy, an exposed applied brass finish, or a ColorScope named colour; none establishes either of the others.",
|
|
7278
|
+
crossoverSource("brass"),
|
|
7279
|
+
[`${TAXONOMY_BASE_URI}/id/finish/treatment/brass`]
|
|
7280
|
+
),
|
|
7281
|
+
crossoverAmbiguity(
|
|
7282
|
+
"bronze",
|
|
7283
|
+
`${TAXONOMY_BASE_URI}/id/material/bronze`,
|
|
7284
|
+
"brown-mid-bronze",
|
|
7285
|
+
"Bronze can name a copper-alloy family or a ColorScope named colour; the unmodified word does not identify a specific composition.",
|
|
7286
|
+
crossoverSource("bronze")
|
|
7287
|
+
),
|
|
7288
|
+
crossoverAmbiguity(
|
|
7289
|
+
"chrome",
|
|
7290
|
+
`${TAXONOMY_BASE_URI}/id/finish/treatment/chrome`,
|
|
7291
|
+
"gray-pale-chrome",
|
|
7292
|
+
"Chrome can name a metallic chromium coating or a ColorScope named colour; it is not silently normalized to chromium as a material.",
|
|
7293
|
+
crossoverSource("chrome")
|
|
7294
|
+
),
|
|
7295
|
+
crossoverAmbiguity(
|
|
7296
|
+
"cherry",
|
|
7297
|
+
`${TAXONOMY_BASE_URI}/id/material/cherry`,
|
|
7298
|
+
"red-warm-cherry-red",
|
|
7299
|
+
"Cherry can name timber or an explicit ColorScope alias for Cherry Red; the common name does not prove species or colour.",
|
|
7300
|
+
crossoverSource("cherry")
|
|
7301
|
+
),
|
|
7302
|
+
crossoverAmbiguity(
|
|
7303
|
+
"chestnut",
|
|
7304
|
+
`${TAXONOMY_BASE_URI}/id/material/chestnut`,
|
|
7305
|
+
"brown-warm-chestnut",
|
|
7306
|
+
"Chestnut can name timber or a ColorScope named colour; neither reading proves species, construction, or appearance.",
|
|
7307
|
+
crossoverSource("chestnut")
|
|
7308
|
+
),
|
|
7309
|
+
crossoverAmbiguity(
|
|
7310
|
+
"clay",
|
|
7311
|
+
`${TAXONOMY_BASE_URI}/id/material/clay`,
|
|
7312
|
+
"orange-warm-clay",
|
|
7313
|
+
"Clay can name a fine-grained earthy material or a ColorScope named colour; the word alone proves neither firing nor appearance.",
|
|
7314
|
+
crossoverSource("clay")
|
|
7315
|
+
),
|
|
7316
|
+
crossoverAmbiguity(
|
|
7317
|
+
"copper",
|
|
7318
|
+
`${TAXONOMY_BASE_URI}/id/material/copper`,
|
|
7319
|
+
"brown-mid-copper",
|
|
7320
|
+
"Copper can name a metal or a ColorScope named colour; colour resemblance does not establish copper content.",
|
|
7321
|
+
crossoverSource("copper")
|
|
7322
|
+
),
|
|
7323
|
+
crossoverAmbiguity(
|
|
7324
|
+
"denim",
|
|
7325
|
+
`${TAXONOMY_BASE_URI}/id/material/denim`,
|
|
7326
|
+
"blue-vivid-denim",
|
|
7327
|
+
"Denim can name a woven fabric construction or a ColorScope named colour; denim need not be blue.",
|
|
7328
|
+
crossoverSource("denim")
|
|
7329
|
+
),
|
|
7330
|
+
crossoverAmbiguity(
|
|
7331
|
+
"ebony",
|
|
7332
|
+
`${TAXONOMY_BASE_URI}/id/material/ebony`,
|
|
7333
|
+
"black-warm-ebony",
|
|
7334
|
+
"Ebony can name traded timber or a ColorScope named colour; the trade name does not prove botanical identity or black colour.",
|
|
7335
|
+
crossoverSource("ebony")
|
|
7336
|
+
),
|
|
7337
|
+
crossoverAmbiguity(
|
|
7338
|
+
"gold",
|
|
7339
|
+
`${TAXONOMY_BASE_URI}/id/material/gold`,
|
|
7340
|
+
"yellow-bright-gold",
|
|
7341
|
+
"Gold can name the metallic element or a ColorScope named colour; appearance does not establish composition or coating.",
|
|
7342
|
+
crossoverSource("gold")
|
|
7343
|
+
),
|
|
7344
|
+
crossoverAmbiguity(
|
|
7345
|
+
"gunmetal",
|
|
7346
|
+
`${TAXONOMY_BASE_URI}/id/material/gunmetal`,
|
|
7347
|
+
"gray-muted-gunmetal",
|
|
7348
|
+
"Gunmetal can name a casting-alloy family or a ColorScope named colour; grade and appearance remain separate claims.",
|
|
7349
|
+
crossoverSource("gunmetal")
|
|
7350
|
+
),
|
|
7351
|
+
crossoverAmbiguity(
|
|
7352
|
+
"iron",
|
|
7353
|
+
`${TAXONOMY_BASE_URI}/id/material/iron`,
|
|
7354
|
+
"gray-dark-iron",
|
|
7355
|
+
"Iron can name the metallic element or a ColorScope named colour; the bare word does not settle material form or appearance.",
|
|
7356
|
+
crossoverSource("iron")
|
|
7357
|
+
),
|
|
7358
|
+
crossoverAmbiguity(
|
|
7359
|
+
"jade",
|
|
7360
|
+
`${TAXONOMY_BASE_URI}/id/material/jade`,
|
|
7361
|
+
"green-mid-jade",
|
|
7362
|
+
"Jade can name an umbrella gem material or a ColorScope named colour; jade is not one mineral and need not be green.",
|
|
7363
|
+
crossoverSource("jade")
|
|
7364
|
+
),
|
|
7365
|
+
crossoverAmbiguity(
|
|
7366
|
+
"linen",
|
|
7367
|
+
`${TAXONOMY_BASE_URI}/id/material/linen`,
|
|
7368
|
+
"cream-pale-linen",
|
|
7369
|
+
"Linen can name a flax-derived material or a ColorScope named colour; colour does not establish fibre composition.",
|
|
7370
|
+
crossoverSource("linen")
|
|
7371
|
+
),
|
|
7372
|
+
crossoverAmbiguity(
|
|
7373
|
+
"mahogany",
|
|
7374
|
+
`${TAXONOMY_BASE_URI}/id/material/mahogany`,
|
|
7375
|
+
"brown-dark-mahogany",
|
|
7376
|
+
"Mahogany can name commercially grouped timber or a ColorScope named colour; neither reading proves species or appearance.",
|
|
7377
|
+
crossoverSource("mahogany")
|
|
7378
|
+
),
|
|
7379
|
+
crossoverAmbiguity(
|
|
7380
|
+
"nickel",
|
|
7381
|
+
`${TAXONOMY_BASE_URI}/id/material/nickel`,
|
|
7382
|
+
"gray-muted-nickel",
|
|
7383
|
+
"Nickel can name a bulk metallic material, an electrodeposited finish, or a ColorScope named colour; the bare word does not select among them.",
|
|
7384
|
+
crossoverSource("nickel"),
|
|
7385
|
+
[`${TAXONOMY_BASE_URI}/id/finish/treatment/nickel`]
|
|
7386
|
+
),
|
|
7387
|
+
crossoverAmbiguity(
|
|
7388
|
+
"obsidian",
|
|
7389
|
+
`${TAXONOMY_BASE_URI}/id/material/obsidian`,
|
|
7390
|
+
"black-cool-obsidian",
|
|
7391
|
+
"Obsidian can name volcanic glass or a ColorScope named colour; the material is not necessarily black.",
|
|
7392
|
+
crossoverSource("obsidian")
|
|
7393
|
+
),
|
|
7394
|
+
crossoverAmbiguity(
|
|
7395
|
+
"onyx",
|
|
7396
|
+
`${TAXONOMY_BASE_URI}/id/material/onyx`,
|
|
7397
|
+
"black-warm-onyx",
|
|
7398
|
+
"Onyx can name commercial architectural stone or a ColorScope named colour; architectural onyx is not necessarily black.",
|
|
7399
|
+
crossoverSource("onyx")
|
|
7400
|
+
),
|
|
7401
|
+
crossoverAmbiguity(
|
|
7402
|
+
"pewter",
|
|
7403
|
+
`${TAXONOMY_BASE_URI}/id/material/pewter`,
|
|
7404
|
+
"gray-soft-pewter",
|
|
7405
|
+
"Pewter can name a variable tin-alloy family or a ColorScope named colour; composition and appearance remain separate.",
|
|
7406
|
+
crossoverSource("pewter")
|
|
7407
|
+
),
|
|
7408
|
+
crossoverAmbiguity(
|
|
7409
|
+
"platinum",
|
|
7410
|
+
`${TAXONOMY_BASE_URI}/id/material/platinum`,
|
|
7411
|
+
"gray-light-platinum",
|
|
7412
|
+
"Platinum can name a metal or a ColorScope named colour; solid metal, plating, and appearance require separate evidence.",
|
|
7413
|
+
crossoverSource("platinum")
|
|
7414
|
+
),
|
|
7415
|
+
crossoverAmbiguity(
|
|
7416
|
+
"rosewood",
|
|
7417
|
+
`${TAXONOMY_BASE_URI}/id/material/rosewood`,
|
|
7418
|
+
"red-dark-rosewood",
|
|
7419
|
+
"Rosewood can name traded timber or a ColorScope named colour; species and appearance remain separate claims.",
|
|
7420
|
+
crossoverSource("rosewood")
|
|
7421
|
+
),
|
|
7422
|
+
crossoverAmbiguity(
|
|
7423
|
+
"silver",
|
|
7424
|
+
`${TAXONOMY_BASE_URI}/id/material/silver`,
|
|
7425
|
+
"gray-light-silver",
|
|
7426
|
+
"Silver can name the metallic element or a ColorScope named colour; appearance does not establish elemental silver.",
|
|
7427
|
+
crossoverSource("silver")
|
|
7428
|
+
),
|
|
7429
|
+
crossoverAmbiguity(
|
|
7430
|
+
"slate",
|
|
7431
|
+
`${TAXONOMY_BASE_URI}/id/material/slate`,
|
|
7432
|
+
"gray-muted-slate",
|
|
7433
|
+
"Slate can name dimension stone or a ColorScope named colour; neither reading implies the other.",
|
|
7434
|
+
crossoverSource("slate")
|
|
7435
|
+
),
|
|
7436
|
+
crossoverAmbiguity(
|
|
7437
|
+
"steel",
|
|
7438
|
+
`${TAXONOMY_BASE_URI}/id/material/steel`,
|
|
7439
|
+
"gray-cool-steel",
|
|
7440
|
+
"Steel can name an iron-carbon alloy family or a ColorScope named colour; appearance does not identify a steel grade.",
|
|
7441
|
+
crossoverSource("steel")
|
|
7442
|
+
),
|
|
7443
|
+
crossoverAmbiguity(
|
|
7444
|
+
"stone",
|
|
7445
|
+
`${TAXONOMY_BASE_URI}/id/material/stone`,
|
|
7446
|
+
"taupe-warm-stone",
|
|
7447
|
+
"Stone can name a specific building material, a retrieval-oriented material family, or a ColorScope named colour; none is a consumer route.",
|
|
7448
|
+
crossoverSource("stone"),
|
|
7449
|
+
[`${TAXONOMY_BASE_URI}/id/material-family/stone`]
|
|
7450
|
+
),
|
|
7451
|
+
crossoverAmbiguity(
|
|
7452
|
+
"terracotta",
|
|
7453
|
+
`${TAXONOMY_BASE_URI}/id/material/terracotta`,
|
|
7454
|
+
"orange-mid-terracotta",
|
|
7455
|
+
"Terracotta can name a fired-clay material or a ColorScope named colour; firing and composition do not establish orange appearance.",
|
|
7456
|
+
crossoverSource("terracotta")
|
|
7457
|
+
),
|
|
7458
|
+
crossoverEquivalent(
|
|
7459
|
+
"cotton",
|
|
7460
|
+
`${TAXONOMY_BASE_URI}/id/material/cotton`,
|
|
7461
|
+
"Cotton has one governed material reading in this corpus; fibre identity does not establish weave, blend, dye, or finish, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7462
|
+
crossoverSource("cotton")
|
|
7463
|
+
),
|
|
7464
|
+
crossoverTaxonomyAmbiguity(
|
|
7465
|
+
"leather",
|
|
7466
|
+
[
|
|
7467
|
+
`${TAXONOMY_BASE_URI}/id/material-family/leather`,
|
|
7468
|
+
`${TAXONOMY_BASE_URI}/id/material/leather`
|
|
7469
|
+
],
|
|
7470
|
+
"Leather names both a retrieval-oriented material family and a specific hide-derived material; neither reading establishes animal, layer, tanning, coating, or finish, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7471
|
+
crossoverSource("leather")
|
|
7472
|
+
),
|
|
7473
|
+
crossoverTaxonomyAmbiguity(
|
|
7474
|
+
"wood",
|
|
7475
|
+
[
|
|
7476
|
+
`${TAXONOMY_BASE_URI}/id/material-family/wood`,
|
|
7477
|
+
`${TAXONOMY_BASE_URI}/id/material/wood`
|
|
7478
|
+
],
|
|
7479
|
+
"Wood names both a retrieval-oriented material family and a specific lignocellulosic material; neither reading establishes species, construction, stain, oil, or coating, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7480
|
+
crossoverSource("wood")
|
|
7481
|
+
),
|
|
7482
|
+
crossoverEquivalent(
|
|
7483
|
+
"jute",
|
|
7484
|
+
`${TAXONOMY_BASE_URI}/id/material/jute`,
|
|
7485
|
+
"Jute has one governed material reading in this corpus; construction, blend, treatment, and colour remain unspecified, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7486
|
+
crossoverSource("jute")
|
|
7487
|
+
),
|
|
7488
|
+
crossoverEquivalent(
|
|
7489
|
+
"sisal",
|
|
7490
|
+
`${TAXONOMY_BASE_URI}/id/material/sisal`,
|
|
7491
|
+
"Sisal has one governed material reading in this corpus; fibre and products made from it remain distinct, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7492
|
+
crossoverSource("sisal")
|
|
7493
|
+
),
|
|
7494
|
+
crossoverEquivalent(
|
|
7495
|
+
"cork",
|
|
7496
|
+
`${TAXONOMY_BASE_URI}/id/material/cork`,
|
|
7497
|
+
"Cork has one governed material reading in this corpus; natural cork, agglomerate, backing, veneer, and cork-look appearance remain distinct, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7498
|
+
crossoverSource("cork")
|
|
7499
|
+
),
|
|
7500
|
+
crossoverEquivalent(
|
|
7501
|
+
"wool",
|
|
7502
|
+
`${TAXONOMY_BASE_URI}/id/material/wool`,
|
|
7503
|
+
"Wool has one governed material reading in this corpus; species, grade, blend, construction, and finish remain unspecified, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7504
|
+
crossoverSource("wool")
|
|
7505
|
+
),
|
|
7506
|
+
crossoverEquivalent(
|
|
7507
|
+
"suede",
|
|
7508
|
+
`${TAXONOMY_BASE_URI}/id/material/suede`,
|
|
7509
|
+
"Suede has one governed leather-material reading in this corpus; it does not establish a suede-look finish on another substrate, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7510
|
+
crossoverSource("suede")
|
|
7511
|
+
),
|
|
7512
|
+
crossoverTaxonomyAmbiguity(
|
|
7513
|
+
"concrete",
|
|
7514
|
+
[
|
|
7515
|
+
`${TAXONOMY_BASE_URI}/id/material-family/concrete`,
|
|
7516
|
+
`${TAXONOMY_BASE_URI}/id/material/concrete`
|
|
7517
|
+
],
|
|
7518
|
+
"Concrete names both a retrieval-oriented material family and a specific cement-and-aggregate composite; neither reading establishes mix, reinforcement, coating, polish, or imitation, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7519
|
+
crossoverSource("concrete")
|
|
7520
|
+
),
|
|
7521
|
+
crossoverEquivalent(
|
|
7522
|
+
"travertine",
|
|
7523
|
+
`${TAXONOMY_BASE_URI}/id/material/travertine`,
|
|
7524
|
+
"Travertine has one governed dimension-stone reading in this corpus; quarry, grade, fill, cut, and surface treatment remain unspecified, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7525
|
+
crossoverSource("travertine")
|
|
7526
|
+
),
|
|
7527
|
+
crossoverEquivalent(
|
|
7528
|
+
"marble",
|
|
7529
|
+
`${TAXONOMY_BASE_URI}/id/material/marble`,
|
|
7530
|
+
"Marble has one governed commercial dimension-stone reading in this corpus; its scientific and commercial boundaries remain explicit, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7531
|
+
crossoverSource("marble")
|
|
7532
|
+
),
|
|
7533
|
+
crossoverEquivalent(
|
|
7534
|
+
"oak",
|
|
7535
|
+
`${TAXONOMY_BASE_URI}/id/material/oak`,
|
|
7536
|
+
"Oak has one governed timber reading in this corpus; species group, cut, stain, coating, and appearance remain distinct, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7537
|
+
crossoverSource("oak")
|
|
7538
|
+
),
|
|
7539
|
+
crossoverEquivalent(
|
|
7540
|
+
"teak",
|
|
7541
|
+
`${TAXONOMY_BASE_URI}/id/material/teak`,
|
|
7542
|
+
"Teak has one governed timber reading in this corpus; timber, finish, and colour remain distinct, and ColorScope 7.3 has no exact named-colour identity.",
|
|
7543
|
+
crossoverSource("teak")
|
|
7544
|
+
),
|
|
6860
7545
|
{
|
|
6861
7546
|
contextualPreferences: [
|
|
6862
7547
|
{ context: "material", target: WALNUT_MATERIAL },
|
|
@@ -6869,7 +7554,7 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
6869
7554
|
{
|
|
6870
7555
|
basis: "evidenced",
|
|
6871
7556
|
snapshot: TAXONOMY_SNAPSHOT,
|
|
6872
|
-
source: "
|
|
7557
|
+
source: crossoverSource("walnut")
|
|
6873
7558
|
}
|
|
6874
7559
|
),
|
|
6875
7560
|
outcome: "ambiguous",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instruments/taxonomy",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Canonical data-only interiors and architecture knowledge graph and lexical corpus.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"repository": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@howells/lint": "^1.0.0",
|
|
36
|
-
"@instruments/colorscope": "
|
|
36
|
+
"@instruments/colorscope": "7.3.0",
|
|
37
37
|
"@types/node": "^24.0.0",
|
|
38
38
|
"tsup": "^8.5.1",
|
|
39
39
|
"typescript": "^5.7.0",
|