@instruments/taxonomy 1.2.0 → 1.3.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/README.md +5 -5
- package/dist/authoring.d.ts +2 -2
- package/dist/axes/axis.d.ts +35 -0
- package/dist/axes/daylight.d.ts +7 -0
- package/dist/axes/index.d.ts +4 -33
- package/dist/axes/season.d.ts +2 -0
- package/dist/axes/space/shared.d.ts +6 -6
- package/dist/axes/tier.d.ts +3 -3
- package/dist/{materialgraph-crossover-sources.d.ts → crossover-sources.d.ts} +3 -3
- package/dist/estate/concepts.d.ts +10 -9
- package/dist/estate/index.d.ts +1 -1
- package/dist/estate/residue-report.d.ts +3 -3
- package/dist/estate/rows/architecture-projects.d.ts +2 -0
- package/dist/estate/rows/editorial-imagery.d.ts +2 -0
- package/dist/estate/rows/furnishings-retailer.d.ts +2 -0
- package/dist/estate/rows/materials-retrieval.d.ts +2 -0
- package/dist/estate/rows/paint-samples.d.ts +2 -0
- package/dist/estate/rows/rendering-pipeline.d.ts +2 -0
- package/dist/estate/sources.d.ts +77 -18
- package/dist/index.js +852 -671
- package/dist/search-corpus-source.d.ts +1 -3
- package/dist/term.d.ts +13 -7
- package/dist/v1.d.ts +4 -4
- package/package.json +1 -1
- package/dist/crosswalks/designshop.d.ts +0 -30
- package/dist/crosswalks/materialgraph.d.ts +0 -38
- package/dist/crosswalks/miu.d.ts +0 -13
- package/dist/downstream-check-policy.d.ts +0 -34
- package/dist/env.d.ts +0 -6
- package/dist/estate/rows/architizer.d.ts +0 -2
- package/dist/estate/rows/designround.d.ts +0 -2
- package/dist/estate/rows/designshop.d.ts +0 -2
- package/dist/estate/rows/materia.d.ts +0 -2
- package/dist/estate/rows/materialgraph.d.ts +0 -2
- package/dist/estate/rows/samplize.d.ts +0 -2
package/dist/index.js
CHANGED
|
@@ -4,7 +4,7 @@ import { createHash } from "crypto";
|
|
|
4
4
|
// src/dictionaries.ts
|
|
5
5
|
var AUTHORED = {
|
|
6
6
|
basis: "authored",
|
|
7
|
-
source: "@instruments/taxonomy
|
|
7
|
+
source: "@instruments/taxonomy - decomposition of a role dictionary in a materials-retrieval system (src-05), 2026-08-27"
|
|
8
8
|
};
|
|
9
9
|
var MATERIAL_FAMILY_TERMS = [
|
|
10
10
|
{ label: "Paint", slug: "paint" },
|
|
@@ -86,7 +86,7 @@ var APPLICATION_TERMS = [
|
|
|
86
86
|
{ slug: "window", label: "Window" },
|
|
87
87
|
{ slug: "facade", label: "Facade" },
|
|
88
88
|
{
|
|
89
|
-
//
|
|
89
|
+
// The role dictionary's `worksurface` is this term under the British name, and the crosswalk
|
|
90
90
|
// resolves it here rather than minting a second term for one surface.
|
|
91
91
|
altLabels: ["worksurface", "worktop"],
|
|
92
92
|
slug: "countertop",
|
|
@@ -112,7 +112,7 @@ var APPLICATION_TERMS = [
|
|
|
112
112
|
{ slug: "ornamentation", label: "Ornamentation" },
|
|
113
113
|
{ slug: "aquatic-environments", label: "Aquatic Environments" },
|
|
114
114
|
{
|
|
115
|
-
// AUTHORED, from
|
|
115
|
+
// AUTHORED, from the role dictionary's `upholstery`. TOP-LEVEL AND NOT UNDER `furniture`, which is
|
|
116
116
|
// where it first looks like it belongs: `wall_upholstered` is already a child of `wall`, so
|
|
117
117
|
// upholstery is a use that crosses two zones of this axis and cannot sit inside either.
|
|
118
118
|
// `furniture_seating` is the seat; this is the covering specified for it.
|
|
@@ -122,7 +122,7 @@ var APPLICATION_TERMS = [
|
|
|
122
122
|
provenance: AUTHORED
|
|
123
123
|
},
|
|
124
124
|
{
|
|
125
|
-
// AUTHORED, from
|
|
125
|
+
// AUTHORED, from the role dictionary's `trim`. The product-facing claim - this material may be
|
|
126
126
|
// specified as trim - and not `element.skirting` and kin, which are the installed things.
|
|
127
127
|
definition: "Specified as a linear edging, banding or moulding finishing a junction between surfaces.",
|
|
128
128
|
slug: "trim",
|
|
@@ -333,8 +333,18 @@ var APPLICATION_TERMS = [
|
|
|
333
333
|
}
|
|
334
334
|
];
|
|
335
335
|
|
|
336
|
+
// src/axes/axis.ts
|
|
337
|
+
var single = (slug, label, terms, governance) => [
|
|
338
|
+
{
|
|
339
|
+
...governance === void 0 ? {} : { governance },
|
|
340
|
+
label,
|
|
341
|
+
slug,
|
|
342
|
+
terms
|
|
343
|
+
}
|
|
344
|
+
];
|
|
345
|
+
|
|
336
346
|
// src/axes/construction.ts
|
|
337
|
-
var SOURCE = "
|
|
347
|
+
var SOURCE = "construction vocabulary in a furnishings retailer (src-03)";
|
|
338
348
|
var SNAPSHOT = "2026-08-25";
|
|
339
349
|
var term = (slug, label, definition) => ({
|
|
340
350
|
definition,
|
|
@@ -430,6 +440,86 @@ var CONSTRUCTION_TERMS = [
|
|
|
430
440
|
)
|
|
431
441
|
];
|
|
432
442
|
|
|
443
|
+
// src/axes/daylight.ts
|
|
444
|
+
var REVIEW_DATE = "2026-09-11";
|
|
445
|
+
var AUTHORED2 = {
|
|
446
|
+
basis: "authored",
|
|
447
|
+
source: "@instruments/taxonomy ADR 0006"
|
|
448
|
+
};
|
|
449
|
+
var EN_17037 = {
|
|
450
|
+
basis: "referenced",
|
|
451
|
+
snapshot: REVIEW_DATE,
|
|
452
|
+
source: "EN 17037:2018 Daylight in buildings"
|
|
453
|
+
};
|
|
454
|
+
var term2 = (provenance, slug, label, definition, extra = {}) => ({
|
|
455
|
+
definition,
|
|
456
|
+
introducedAt: REVIEW_DATE,
|
|
457
|
+
label,
|
|
458
|
+
provenance,
|
|
459
|
+
reviewedAt: REVIEW_DATE,
|
|
460
|
+
slug,
|
|
461
|
+
...extra
|
|
462
|
+
});
|
|
463
|
+
var direction = (identifier, label) => ({
|
|
464
|
+
identifier,
|
|
465
|
+
label,
|
|
466
|
+
match: "related",
|
|
467
|
+
scheme: "wikidata"
|
|
468
|
+
});
|
|
469
|
+
var DAYLIGHT_ASPECT_TERMS = [
|
|
470
|
+
term2(
|
|
471
|
+
AUTHORED2,
|
|
472
|
+
"north-facing",
|
|
473
|
+
"North-facing",
|
|
474
|
+
"Principal windows face north. A compass fact only; what the sun does with it depends on hemisphere and is recorded under Light.",
|
|
475
|
+
{ external: [direction("Q659", "north")] }
|
|
476
|
+
),
|
|
477
|
+
term2(
|
|
478
|
+
AUTHORED2,
|
|
479
|
+
"south-facing",
|
|
480
|
+
"South-facing",
|
|
481
|
+
"Principal windows face south.",
|
|
482
|
+
{ external: [direction("Q667", "south")] }
|
|
483
|
+
),
|
|
484
|
+
term2(
|
|
485
|
+
AUTHORED2,
|
|
486
|
+
"east-facing",
|
|
487
|
+
"East-facing",
|
|
488
|
+
"Principal windows face east, so the room takes the morning end of the day.",
|
|
489
|
+
{ external: [direction("Q684", "east")] }
|
|
490
|
+
),
|
|
491
|
+
term2(
|
|
492
|
+
AUTHORED2,
|
|
493
|
+
"west-facing",
|
|
494
|
+
"West-facing",
|
|
495
|
+
"Principal windows face west, so the room takes the afternoon end of the day.",
|
|
496
|
+
{ external: [direction("Q679", "west")] }
|
|
497
|
+
)
|
|
498
|
+
];
|
|
499
|
+
var DAYLIGHT_LIGHT_TERMS = [
|
|
500
|
+
term2(
|
|
501
|
+
EN_17037,
|
|
502
|
+
"low",
|
|
503
|
+
"Low light",
|
|
504
|
+
"Daylight falls short of what the room's use wants; surfaces are seen by borrowed or artificial light for much of the day.",
|
|
505
|
+
{ rank: 1 }
|
|
506
|
+
),
|
|
507
|
+
term2(
|
|
508
|
+
EN_17037,
|
|
509
|
+
"moderate",
|
|
510
|
+
"Moderate light",
|
|
511
|
+
"Daylight sufficient for the room's use without being a feature of it.",
|
|
512
|
+
{ rank: 2 }
|
|
513
|
+
),
|
|
514
|
+
term2(
|
|
515
|
+
EN_17037,
|
|
516
|
+
"bright",
|
|
517
|
+
"Bright light",
|
|
518
|
+
"Daylight is the dominant condition; surfaces read in it for most of the day.",
|
|
519
|
+
{ altLabels: ["high", "strong light", "well-lit"], rank: 3 }
|
|
520
|
+
)
|
|
521
|
+
];
|
|
522
|
+
|
|
433
523
|
// src/axes/element-shared.ts
|
|
434
524
|
var aat = (slug, label, match) => ({
|
|
435
525
|
identifier: slug,
|
|
@@ -443,7 +533,7 @@ var uniclass = (slug, label, match) => ({
|
|
|
443
533
|
match,
|
|
444
534
|
scheme: "uniclass"
|
|
445
535
|
});
|
|
446
|
-
var
|
|
536
|
+
var AUTHORED3 = {
|
|
447
537
|
basis: "authored",
|
|
448
538
|
source: "@instruments/taxonomy ADR 0001"
|
|
449
539
|
};
|
|
@@ -471,7 +561,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
471
561
|
],
|
|
472
562
|
label: "Wall",
|
|
473
563
|
placement: "field",
|
|
474
|
-
provenance:
|
|
564
|
+
provenance: AUTHORED3,
|
|
475
565
|
slug: "wall"
|
|
476
566
|
},
|
|
477
567
|
{
|
|
@@ -484,7 +574,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
484
574
|
],
|
|
485
575
|
label: "External Wall",
|
|
486
576
|
placement: "field",
|
|
487
|
-
provenance:
|
|
577
|
+
provenance: AUTHORED3,
|
|
488
578
|
slug: "external-wall"
|
|
489
579
|
},
|
|
490
580
|
{
|
|
@@ -497,7 +587,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
497
587
|
],
|
|
498
588
|
label: "Internal Wall",
|
|
499
589
|
placement: "field",
|
|
500
|
-
provenance:
|
|
590
|
+
provenance: AUTHORED3,
|
|
501
591
|
slug: "internal-wall"
|
|
502
592
|
},
|
|
503
593
|
{
|
|
@@ -509,7 +599,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
509
599
|
],
|
|
510
600
|
label: "Partition",
|
|
511
601
|
placement: "field",
|
|
512
|
-
provenance:
|
|
602
|
+
provenance: AUTHORED3,
|
|
513
603
|
slug: "partition"
|
|
514
604
|
},
|
|
515
605
|
{
|
|
@@ -518,7 +608,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
518
608
|
label: "Cladding",
|
|
519
609
|
note: "No AAT mapping. AAT 300014860 `cladding` is the metal-coating process, a different thing entirely, and a plausible wrong mapping is worse than none.",
|
|
520
610
|
placement: "field",
|
|
521
|
-
provenance:
|
|
611
|
+
provenance: AUTHORED3,
|
|
522
612
|
related: [partOf("external-wall")],
|
|
523
613
|
slug: "cladding"
|
|
524
614
|
},
|
|
@@ -529,7 +619,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
529
619
|
label: "Panelling",
|
|
530
620
|
note: "AAT's nearest term, `wainscoting`, is panelling carried only to dado height; this term covers full-height panelling too, so the AAT concept is narrower.",
|
|
531
621
|
placement: "joinery",
|
|
532
|
-
provenance:
|
|
622
|
+
provenance: AUTHORED3,
|
|
533
623
|
related: [partOf(INTERNAL_WALL)],
|
|
534
624
|
slug: "panelling"
|
|
535
625
|
},
|
|
@@ -541,7 +631,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
541
631
|
],
|
|
542
632
|
label: "Parapet",
|
|
543
633
|
placement: "field",
|
|
544
|
-
provenance:
|
|
634
|
+
provenance: AUTHORED3,
|
|
545
635
|
related: [partOf("external-wall")],
|
|
546
636
|
slug: "parapet"
|
|
547
637
|
},
|
|
@@ -554,7 +644,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
554
644
|
],
|
|
555
645
|
label: "Floor",
|
|
556
646
|
placement: "underfoot",
|
|
557
|
-
provenance:
|
|
647
|
+
provenance: AUTHORED3,
|
|
558
648
|
slug: "floor"
|
|
559
649
|
},
|
|
560
650
|
{
|
|
@@ -562,7 +652,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
562
652
|
external: [aat("300014866", "flooring", "close")],
|
|
563
653
|
label: "Floor Finish",
|
|
564
654
|
placement: "underfoot",
|
|
565
|
-
provenance:
|
|
655
|
+
provenance: AUTHORED3,
|
|
566
656
|
related: [partOf("floor")],
|
|
567
657
|
slug: "floor-finish"
|
|
568
658
|
},
|
|
@@ -576,7 +666,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
576
666
|
],
|
|
577
667
|
label: "Raised Floor",
|
|
578
668
|
placement: "underfoot",
|
|
579
|
-
provenance:
|
|
669
|
+
provenance: AUTHORED3,
|
|
580
670
|
slug: "raised-floor"
|
|
581
671
|
},
|
|
582
672
|
// ─── Ceilings ───────────────────────────────────────────────────────────────────────────────
|
|
@@ -588,7 +678,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
588
678
|
],
|
|
589
679
|
label: "Ceiling",
|
|
590
680
|
placement: "overhead",
|
|
591
|
-
provenance:
|
|
681
|
+
provenance: AUTHORED3,
|
|
592
682
|
slug: "ceiling"
|
|
593
683
|
},
|
|
594
684
|
{
|
|
@@ -601,7 +691,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
601
691
|
],
|
|
602
692
|
label: "Suspended Ceiling",
|
|
603
693
|
placement: "overhead",
|
|
604
|
-
provenance:
|
|
694
|
+
provenance: AUTHORED3,
|
|
605
695
|
slug: "suspended-ceiling"
|
|
606
696
|
},
|
|
607
697
|
{
|
|
@@ -612,7 +702,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
612
702
|
],
|
|
613
703
|
label: "Soffit",
|
|
614
704
|
placement: "overhead",
|
|
615
|
-
provenance:
|
|
705
|
+
provenance: AUTHORED3,
|
|
616
706
|
slug: "soffit"
|
|
617
707
|
},
|
|
618
708
|
// ─── Roofs ──────────────────────────────────────────────────────────────────────────────────
|
|
@@ -624,7 +714,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
624
714
|
],
|
|
625
715
|
label: "Roof",
|
|
626
716
|
placement: "overhead",
|
|
627
|
-
provenance:
|
|
717
|
+
provenance: AUTHORED3,
|
|
628
718
|
slug: "roof"
|
|
629
719
|
},
|
|
630
720
|
{
|
|
@@ -636,7 +726,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
636
726
|
],
|
|
637
727
|
label: "Flat Roof",
|
|
638
728
|
placement: "overhead",
|
|
639
|
-
provenance:
|
|
729
|
+
provenance: AUTHORED3,
|
|
640
730
|
slug: "flat-roof"
|
|
641
731
|
},
|
|
642
732
|
{
|
|
@@ -648,7 +738,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
648
738
|
],
|
|
649
739
|
label: "Pitched Roof",
|
|
650
740
|
placement: "overhead",
|
|
651
|
-
provenance:
|
|
741
|
+
provenance: AUTHORED3,
|
|
652
742
|
slug: "pitched-roof"
|
|
653
743
|
},
|
|
654
744
|
{
|
|
@@ -657,7 +747,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
657
747
|
external: [aat("300003062", "skylights", "exact")],
|
|
658
748
|
label: "Rooflight",
|
|
659
749
|
placement: "unpainted",
|
|
660
|
-
provenance:
|
|
750
|
+
provenance: AUTHORED3,
|
|
661
751
|
related: [partOf(ROOF)],
|
|
662
752
|
slug: "rooflight"
|
|
663
753
|
},
|
|
@@ -670,7 +760,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
670
760
|
],
|
|
671
761
|
label: "Door",
|
|
672
762
|
placement: "joinery",
|
|
673
|
-
provenance:
|
|
763
|
+
provenance: AUTHORED3,
|
|
674
764
|
slug: "door"
|
|
675
765
|
},
|
|
676
766
|
{
|
|
@@ -681,7 +771,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
681
771
|
],
|
|
682
772
|
label: "Window",
|
|
683
773
|
placement: "trim",
|
|
684
|
-
provenance:
|
|
774
|
+
provenance: AUTHORED3,
|
|
685
775
|
slug: "window"
|
|
686
776
|
},
|
|
687
777
|
{
|
|
@@ -689,7 +779,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
689
779
|
label: "Glazing",
|
|
690
780
|
note: "No AAT mapping. AAT carries `glazing` only as processes and `glass` only as a material, and neither of those is this element.",
|
|
691
781
|
placement: "unpainted",
|
|
692
|
-
provenance:
|
|
782
|
+
provenance: AUTHORED3,
|
|
693
783
|
related: [partOf(WINDOW), partOf("curtain-walling")],
|
|
694
784
|
slug: "glazing"
|
|
695
785
|
},
|
|
@@ -703,7 +793,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
703
793
|
],
|
|
704
794
|
label: "Curtain Walling",
|
|
705
795
|
placement: "unpainted",
|
|
706
|
-
provenance:
|
|
796
|
+
provenance: AUTHORED3,
|
|
707
797
|
slug: "curtain-walling"
|
|
708
798
|
},
|
|
709
799
|
{
|
|
@@ -712,7 +802,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
712
802
|
external: [aat("300003173", "shutters (opening covers)", "exact")],
|
|
713
803
|
label: "Shutter",
|
|
714
804
|
placement: "trim",
|
|
715
|
-
provenance:
|
|
805
|
+
provenance: AUTHORED3,
|
|
716
806
|
related: [partOf(WINDOW)],
|
|
717
807
|
slug: "shutter"
|
|
718
808
|
},
|
|
@@ -725,7 +815,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
725
815
|
],
|
|
726
816
|
label: "Ironmongery",
|
|
727
817
|
placement: "unpainted",
|
|
728
|
-
provenance:
|
|
818
|
+
provenance: AUTHORED3,
|
|
729
819
|
related: [partOf(DOOR), partOf(WINDOW)],
|
|
730
820
|
slug: "ironmongery"
|
|
731
821
|
},
|
|
@@ -740,7 +830,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
740
830
|
],
|
|
741
831
|
label: "Stair",
|
|
742
832
|
placement: "underfoot",
|
|
743
|
-
provenance:
|
|
833
|
+
provenance: AUTHORED3,
|
|
744
834
|
slug: "stair"
|
|
745
835
|
},
|
|
746
836
|
{
|
|
@@ -748,7 +838,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
748
838
|
external: [aat("300003326", "treads", "exact")],
|
|
749
839
|
label: "Stair Tread",
|
|
750
840
|
placement: "underfoot",
|
|
751
|
-
provenance:
|
|
841
|
+
provenance: AUTHORED3,
|
|
752
842
|
related: [partOf(STAIR)],
|
|
753
843
|
slug: "stair-tread"
|
|
754
844
|
},
|
|
@@ -757,7 +847,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
757
847
|
external: [aat("300003325", "risers (step components)", "exact")],
|
|
758
848
|
label: "Stair Riser",
|
|
759
849
|
placement: "underfoot",
|
|
760
|
-
provenance:
|
|
850
|
+
provenance: AUTHORED3,
|
|
761
851
|
related: [partOf(STAIR)],
|
|
762
852
|
slug: "stair-riser"
|
|
763
853
|
},
|
|
@@ -771,7 +861,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
771
861
|
],
|
|
772
862
|
label: "Balustrade",
|
|
773
863
|
placement: "trim",
|
|
774
|
-
provenance:
|
|
864
|
+
provenance: AUTHORED3,
|
|
775
865
|
related: [partOf(STAIR)],
|
|
776
866
|
slug: "balustrade"
|
|
777
867
|
},
|
|
@@ -780,7 +870,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
780
870
|
external: [aat("300002022", "handrails", "exact")],
|
|
781
871
|
label: "Handrail",
|
|
782
872
|
placement: "trim",
|
|
783
|
-
provenance:
|
|
873
|
+
provenance: AUTHORED3,
|
|
784
874
|
related: [partOf(BALUSTRADE)],
|
|
785
875
|
slug: "handrail"
|
|
786
876
|
},
|
|
@@ -790,7 +880,7 @@ var ELEMENT_FABRIC_TERMS = [
|
|
|
790
880
|
external: [aat("300003296", "newels", "exact")],
|
|
791
881
|
label: "Newel",
|
|
792
882
|
placement: "trim",
|
|
793
|
-
provenance:
|
|
883
|
+
provenance: AUTHORED3,
|
|
794
884
|
related: [partOf(BALUSTRADE)],
|
|
795
885
|
slug: "newel"
|
|
796
886
|
}
|
|
@@ -808,7 +898,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
808
898
|
],
|
|
809
899
|
label: "Millwork",
|
|
810
900
|
placement: "joinery",
|
|
811
|
-
provenance:
|
|
901
|
+
provenance: AUTHORED3,
|
|
812
902
|
slug: "millwork"
|
|
813
903
|
},
|
|
814
904
|
{
|
|
@@ -822,7 +912,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
822
912
|
],
|
|
823
913
|
label: "Cabinetry",
|
|
824
914
|
placement: "joinery",
|
|
825
|
-
provenance:
|
|
915
|
+
provenance: AUTHORED3,
|
|
826
916
|
slug: "cabinetry"
|
|
827
917
|
},
|
|
828
918
|
{
|
|
@@ -831,7 +921,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
831
921
|
external: [aat("300375691", "countertops", "exact")],
|
|
832
922
|
label: "Worktop",
|
|
833
923
|
placement: "joinery",
|
|
834
|
-
provenance:
|
|
924
|
+
provenance: AUTHORED3,
|
|
835
925
|
related: [partOf("cabinetry")],
|
|
836
926
|
slug: "worktop"
|
|
837
927
|
},
|
|
@@ -843,7 +933,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
843
933
|
],
|
|
844
934
|
label: "Shelving",
|
|
845
935
|
placement: "joinery",
|
|
846
|
-
provenance:
|
|
936
|
+
provenance: AUTHORED3,
|
|
847
937
|
slug: "shelving"
|
|
848
938
|
},
|
|
849
939
|
{
|
|
@@ -854,7 +944,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
854
944
|
label: "Wardrobe",
|
|
855
945
|
note: "AAT splits `wardrobes` into a room sense and a loose-furniture sense, and a fitted wardrobe is neither, so the broader `built-in furniture` is carried instead.",
|
|
856
946
|
placement: "joinery",
|
|
857
|
-
provenance:
|
|
947
|
+
provenance: AUTHORED3,
|
|
858
948
|
slug: "wardrobe"
|
|
859
949
|
},
|
|
860
950
|
// ─── Visible services ───────────────────────────────────────────────────────────────────────
|
|
@@ -867,7 +957,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
867
957
|
label: "Radiator",
|
|
868
958
|
note: "The Uniclass match is `related`, not `broad`: EF_60_40_37 is the heating FUNCTION, and a radiator is not a kind of function.",
|
|
869
959
|
placement: "field",
|
|
870
|
-
provenance:
|
|
960
|
+
provenance: AUTHORED3,
|
|
871
961
|
slug: "radiator"
|
|
872
962
|
},
|
|
873
963
|
{
|
|
@@ -879,7 +969,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
879
969
|
],
|
|
880
970
|
label: "Luminaire",
|
|
881
971
|
placement: "unpainted",
|
|
882
|
-
provenance:
|
|
972
|
+
provenance: AUTHORED3,
|
|
883
973
|
slug: "luminaire"
|
|
884
974
|
},
|
|
885
975
|
{
|
|
@@ -888,7 +978,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
888
978
|
external: [aat("300052575", "plumbing fixtures", "close")],
|
|
889
979
|
label: "Sanitaryware",
|
|
890
980
|
placement: "unpainted",
|
|
891
|
-
provenance:
|
|
981
|
+
provenance: AUTHORED3,
|
|
892
982
|
slug: "sanitaryware"
|
|
893
983
|
},
|
|
894
984
|
{
|
|
@@ -900,7 +990,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
900
990
|
],
|
|
901
991
|
label: "Tapware",
|
|
902
992
|
placement: "unpainted",
|
|
903
|
-
provenance:
|
|
993
|
+
provenance: AUTHORED3,
|
|
904
994
|
related: [partOf("sanitaryware")],
|
|
905
995
|
slug: "tapware"
|
|
906
996
|
},
|
|
@@ -913,7 +1003,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
913
1003
|
],
|
|
914
1004
|
label: "Socket & Switch",
|
|
915
1005
|
placement: "unpainted",
|
|
916
|
-
provenance:
|
|
1006
|
+
provenance: AUTHORED3,
|
|
917
1007
|
slug: "socket-outlet"
|
|
918
1008
|
},
|
|
919
1009
|
// ─── Trim and thresholds ────────────────────────────────────────────────────────────────────
|
|
@@ -923,7 +1013,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
923
1013
|
external: [aat("300002681", "baseboards", "exact")],
|
|
924
1014
|
label: "Skirting",
|
|
925
1015
|
placement: "trim",
|
|
926
|
-
provenance:
|
|
1016
|
+
provenance: AUTHORED3,
|
|
927
1017
|
related: [partOf(INTERNAL_WALL)],
|
|
928
1018
|
slug: "skirting"
|
|
929
1019
|
},
|
|
@@ -934,7 +1024,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
934
1024
|
label: "Architrave",
|
|
935
1025
|
note: "AAT 300001780 `architraves (entablature)` is the classical member and not this term, despite the shared word; the broader `moldings` concept is carried instead.",
|
|
936
1026
|
placement: "trim",
|
|
937
|
-
provenance:
|
|
1027
|
+
provenance: AUTHORED3,
|
|
938
1028
|
related: [partOf(DOOR)],
|
|
939
1029
|
slug: "architrave"
|
|
940
1030
|
},
|
|
@@ -944,7 +1034,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
944
1034
|
external: [aat("300001788", "cornices", "exact")],
|
|
945
1035
|
label: "Cornice",
|
|
946
1036
|
placement: "overhead",
|
|
947
|
-
provenance:
|
|
1037
|
+
provenance: AUTHORED3,
|
|
948
1038
|
related: [partOf(INTERNAL_WALL)],
|
|
949
1039
|
slug: "cornice"
|
|
950
1040
|
},
|
|
@@ -954,7 +1044,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
954
1044
|
external: [aat("300002684", "chair rails", "exact")],
|
|
955
1045
|
label: "Dado Rail",
|
|
956
1046
|
placement: "trim",
|
|
957
|
-
provenance:
|
|
1047
|
+
provenance: AUTHORED3,
|
|
958
1048
|
related: [partOf(INTERNAL_WALL)],
|
|
959
1049
|
slug: "dado-rail"
|
|
960
1050
|
},
|
|
@@ -963,7 +1053,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
963
1053
|
external: [aat("300002687", "picture rails", "exact")],
|
|
964
1054
|
label: "Picture Rail",
|
|
965
1055
|
placement: "trim",
|
|
966
|
-
provenance:
|
|
1056
|
+
provenance: AUTHORED3,
|
|
967
1057
|
related: [partOf(INTERNAL_WALL)],
|
|
968
1058
|
slug: "picture-rail"
|
|
969
1059
|
},
|
|
@@ -978,7 +1068,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
978
1068
|
label: "Column",
|
|
979
1069
|
note: "The Uniclass match is `related`: a column is a component of a framed structure, not a kind of one. The same holds for `beam` and `truss`.",
|
|
980
1070
|
placement: "field",
|
|
981
|
-
provenance:
|
|
1071
|
+
provenance: AUTHORED3,
|
|
982
1072
|
slug: "column"
|
|
983
1073
|
},
|
|
984
1074
|
{
|
|
@@ -990,7 +1080,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
990
1080
|
],
|
|
991
1081
|
label: "Beam",
|
|
992
1082
|
placement: "overhead",
|
|
993
|
-
provenance:
|
|
1083
|
+
provenance: AUTHORED3,
|
|
994
1084
|
slug: "beam"
|
|
995
1085
|
},
|
|
996
1086
|
{
|
|
@@ -1001,7 +1091,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
1001
1091
|
],
|
|
1002
1092
|
label: "Truss",
|
|
1003
1093
|
placement: "overhead",
|
|
1004
|
-
provenance:
|
|
1094
|
+
provenance: AUTHORED3,
|
|
1005
1095
|
related: [partOf(ROOF)],
|
|
1006
1096
|
slug: "truss"
|
|
1007
1097
|
},
|
|
@@ -1011,7 +1101,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
1011
1101
|
external: [aat("300052267", "fireplaces", "exact")],
|
|
1012
1102
|
label: "Fireplace",
|
|
1013
1103
|
placement: "joinery",
|
|
1014
|
-
provenance:
|
|
1104
|
+
provenance: AUTHORED3,
|
|
1015
1105
|
slug: "fireplace"
|
|
1016
1106
|
},
|
|
1017
1107
|
{
|
|
@@ -1020,7 +1110,7 @@ var ELEMENT_FITOUT_TERMS = [
|
|
|
1020
1110
|
external: [aat("300052347", "mantels (fireplace components)", "exact")],
|
|
1021
1111
|
label: "Chimneypiece",
|
|
1022
1112
|
placement: "joinery",
|
|
1023
|
-
provenance:
|
|
1113
|
+
provenance: AUTHORED3,
|
|
1024
1114
|
related: [partOf("fireplace")],
|
|
1025
1115
|
slug: "chimneypiece"
|
|
1026
1116
|
}
|
|
@@ -1032,8 +1122,8 @@ var ELEMENT_TERMS = [
|
|
|
1032
1122
|
...ELEMENT_FITOUT_TERMS
|
|
1033
1123
|
];
|
|
1034
1124
|
|
|
1035
|
-
// src/
|
|
1036
|
-
var
|
|
1125
|
+
// src/crossover-sources.ts
|
|
1126
|
+
var RETRIEVAL_LEXICON_SOURCE = "colour-material lexicon in a materials-retrieval system (src-05)";
|
|
1037
1127
|
var COLORSCOPE_CROSSOVER_SOURCE = "materialinstruments/colorscope@c0662caabe7cd8604241a8a7b2608fa5bc71de51:packages/core/data/reference/v1/taxonomy.json";
|
|
1038
1128
|
var BRASS_MATERIAL_SOURCE = "https://archive.copper.org/applications/industrial/DesignGuide/terms.php";
|
|
1039
1129
|
var BRASS_FINISH_SOURCE = "https://nickelinstitute.org/media/lxxh1zwr/2023-nickelplatinghandbooka5_printablepdf.pdf section 5";
|
|
@@ -1085,19 +1175,19 @@ var CROSSOVER_DEFINITION_SOURCES = {
|
|
|
1085
1175
|
wood: WOOD_HANDBOOK_SOURCE,
|
|
1086
1176
|
wool: FAO_NATURAL_FIBRES_SOURCE
|
|
1087
1177
|
};
|
|
1088
|
-
var crossoverSource = (phrase) => `${
|
|
1178
|
+
var crossoverSource = (phrase) => `${RETRIEVAL_LEXICON_SOURCE}; ${CROSSOVER_DEFINITION_SOURCES[phrase]}; ${COLORSCOPE_CROSSOVER_SOURCE}`;
|
|
1089
1179
|
|
|
1090
1180
|
// src/axes/finish.ts
|
|
1091
|
-
var ESTATE = "
|
|
1181
|
+
var ESTATE = "finish vocabulary in a furnishings retailer (src-03)";
|
|
1092
1182
|
var ESTATE_SNAPSHOT = "2026-08-25";
|
|
1093
1183
|
var CROSSOVER_SNAPSHOT = "2026-08-30";
|
|
1094
|
-
var
|
|
1095
|
-
var
|
|
1096
|
-
var
|
|
1097
|
-
var CORPUS = "
|
|
1184
|
+
var RETRIEVAL_SHEEN = "ms_sheen, a sheen dictionary in a materials-retrieval system (src-05)";
|
|
1185
|
+
var RETRIEVAL_TEXTURE = "ms_texture, a texture dictionary in a materials-retrieval system (src-05)";
|
|
1186
|
+
var RETRIEVAL_SNAPSHOT = "2026-08-27";
|
|
1187
|
+
var CORPUS = "the surface_texture column in a materials-marketplace catalogue (src-04)";
|
|
1098
1188
|
var CORPUS_SNAPSHOT = "2026-08-27";
|
|
1099
1189
|
var DROPPED = "Restored 2026-08-27. Dropped in normalisation.";
|
|
1100
|
-
var
|
|
1190
|
+
var term3 = (slug, label, definition) => ({
|
|
1101
1191
|
definition,
|
|
1102
1192
|
label,
|
|
1103
1193
|
provenance: { basis: "evidenced", snapshot: ESTATE_SNAPSHOT, source: ESTATE },
|
|
@@ -1106,7 +1196,7 @@ var term2 = (slug, label, definition) => ({
|
|
|
1106
1196
|
var vendored = (source, slug, label, definition, rank) => ({
|
|
1107
1197
|
definition,
|
|
1108
1198
|
label,
|
|
1109
|
-
provenance: { basis: "vendored", snapshot:
|
|
1199
|
+
provenance: { basis: "vendored", snapshot: RETRIEVAL_SNAPSHOT, source },
|
|
1110
1200
|
slug,
|
|
1111
1201
|
...rank === void 0 ? {} : { rank }
|
|
1112
1202
|
});
|
|
@@ -1139,13 +1229,13 @@ var FINISH_TREATMENT_TERMS = [
|
|
|
1139
1229
|
},
|
|
1140
1230
|
slug: "chrome"
|
|
1141
1231
|
},
|
|
1142
|
-
|
|
1143
|
-
|
|
1232
|
+
term3("glazed", "Glazed", "Covered by a fused vitreous surface layer."),
|
|
1233
|
+
term3(
|
|
1144
1234
|
"honed",
|
|
1145
1235
|
"Honed",
|
|
1146
1236
|
"Ground to a smooth, low-sheen surface without polishing to gloss."
|
|
1147
1237
|
),
|
|
1148
|
-
|
|
1238
|
+
term3(
|
|
1149
1239
|
"natural",
|
|
1150
1240
|
"Natural",
|
|
1151
1241
|
"Left close to the material's formed or worked state without an appearance-changing top finish."
|
|
@@ -1160,7 +1250,7 @@ var FINISH_TREATMENT_TERMS = [
|
|
|
1160
1250
|
},
|
|
1161
1251
|
slug: "nickel"
|
|
1162
1252
|
},
|
|
1163
|
-
|
|
1253
|
+
term3(
|
|
1164
1254
|
"polished",
|
|
1165
1255
|
"Polished",
|
|
1166
1256
|
"Mechanically refined to a smooth, reflective surface."
|
|
@@ -1168,49 +1258,49 @@ var FINISH_TREATMENT_TERMS = [
|
|
|
1168
1258
|
];
|
|
1169
1259
|
var FINISH_SHEEN_TERMS = [
|
|
1170
1260
|
vendored(
|
|
1171
|
-
|
|
1261
|
+
RETRIEVAL_SHEEN,
|
|
1172
1262
|
"dead-matte",
|
|
1173
1263
|
"Dead matte",
|
|
1174
1264
|
"Reflects almost nothing; no visible sheen at any angle.",
|
|
1175
1265
|
1
|
|
1176
1266
|
),
|
|
1177
1267
|
vendored(
|
|
1178
|
-
|
|
1268
|
+
RETRIEVAL_SHEEN,
|
|
1179
1269
|
"matte",
|
|
1180
1270
|
"Matte",
|
|
1181
1271
|
"Low-sheen, with diffuse rather than specular reflection.",
|
|
1182
1272
|
2
|
|
1183
1273
|
),
|
|
1184
1274
|
vendored(
|
|
1185
|
-
|
|
1275
|
+
RETRIEVAL_SHEEN,
|
|
1186
1276
|
"eggshell",
|
|
1187
1277
|
"Eggshell",
|
|
1188
1278
|
"A trace of sheen, visible only at a glancing angle.",
|
|
1189
1279
|
3
|
|
1190
1280
|
),
|
|
1191
1281
|
vendored(
|
|
1192
|
-
|
|
1282
|
+
RETRIEVAL_SHEEN,
|
|
1193
1283
|
"soft-lustre",
|
|
1194
1284
|
"Soft lustre",
|
|
1195
1285
|
"A gentle, low-contrast sheen across the surface.",
|
|
1196
1286
|
4
|
|
1197
1287
|
),
|
|
1198
1288
|
vendored(
|
|
1199
|
-
|
|
1289
|
+
RETRIEVAL_SHEEN,
|
|
1200
1290
|
"satin",
|
|
1201
1291
|
"Satin",
|
|
1202
1292
|
"An even mid sheen, softer than semi-gloss and clearly not matte.",
|
|
1203
1293
|
5
|
|
1204
1294
|
),
|
|
1205
1295
|
vendored(
|
|
1206
|
-
|
|
1296
|
+
RETRIEVAL_SHEEN,
|
|
1207
1297
|
"semi-gloss",
|
|
1208
1298
|
"Semi-gloss",
|
|
1209
1299
|
"Strongly reflective while still scattering the highlight.",
|
|
1210
1300
|
6
|
|
1211
1301
|
),
|
|
1212
1302
|
vendored(
|
|
1213
|
-
|
|
1303
|
+
RETRIEVAL_SHEEN,
|
|
1214
1304
|
"high-gloss",
|
|
1215
1305
|
"High gloss",
|
|
1216
1306
|
"Returns a sharp, mirror-like specular reflection.",
|
|
@@ -1219,7 +1309,7 @@ var FINISH_SHEEN_TERMS = [
|
|
|
1219
1309
|
];
|
|
1220
1310
|
var FINISH_TEXTURE_TERMS = [
|
|
1221
1311
|
vendored(
|
|
1222
|
-
|
|
1312
|
+
RETRIEVAL_TEXTURE,
|
|
1223
1313
|
"flat",
|
|
1224
1314
|
"Flat",
|
|
1225
1315
|
"No perceptible relief; the surface reads as a single plane."
|
|
@@ -1231,33 +1321,38 @@ var FINISH_TEXTURE_TERMS = [
|
|
|
1231
1321
|
"dominant",
|
|
1232
1322
|
"Restored 2026-08-27. The most frequent value in the source column, and absent from the normalisation that consumed it."
|
|
1233
1323
|
),
|
|
1234
|
-
vendored(MG_TEXTURE, "fine", "Fine", "A shallow, close-grained tooth."),
|
|
1235
1324
|
vendored(
|
|
1236
|
-
|
|
1325
|
+
RETRIEVAL_TEXTURE,
|
|
1326
|
+
"fine",
|
|
1327
|
+
"Fine",
|
|
1328
|
+
"A shallow, close-grained tooth."
|
|
1329
|
+
),
|
|
1330
|
+
vendored(
|
|
1331
|
+
RETRIEVAL_TEXTURE,
|
|
1237
1332
|
"brushed",
|
|
1238
1333
|
"Brushed",
|
|
1239
1334
|
"Directional marks left by abrading along one axis."
|
|
1240
1335
|
),
|
|
1241
1336
|
vendored(
|
|
1242
|
-
|
|
1337
|
+
RETRIEVAL_TEXTURE,
|
|
1243
1338
|
"grained",
|
|
1244
1339
|
"Grained",
|
|
1245
1340
|
"Reads with the material's own fibre or bedding."
|
|
1246
1341
|
),
|
|
1247
1342
|
vendored(
|
|
1248
|
-
|
|
1343
|
+
RETRIEVAL_TEXTURE,
|
|
1249
1344
|
"woven",
|
|
1250
1345
|
"Woven",
|
|
1251
1346
|
"Surface relief produced by interlaced structure."
|
|
1252
1347
|
),
|
|
1253
1348
|
vendored(
|
|
1254
|
-
|
|
1349
|
+
RETRIEVAL_TEXTURE,
|
|
1255
1350
|
"napped",
|
|
1256
1351
|
"Napped",
|
|
1257
1352
|
"A raised pile that shades differently with direction."
|
|
1258
1353
|
),
|
|
1259
1354
|
vendored(
|
|
1260
|
-
|
|
1355
|
+
RETRIEVAL_TEXTURE,
|
|
1261
1356
|
"ribbed",
|
|
1262
1357
|
"Ribbed",
|
|
1263
1358
|
"Regular parallel relief across the surface."
|
|
@@ -1284,13 +1379,13 @@ var FINISH_TEXTURE_TERMS = [
|
|
|
1284
1379
|
DROPPED
|
|
1285
1380
|
),
|
|
1286
1381
|
vendored(
|
|
1287
|
-
|
|
1382
|
+
RETRIEVAL_TEXTURE,
|
|
1288
1383
|
"hand-worked",
|
|
1289
1384
|
"Hand-worked",
|
|
1290
1385
|
"Irregular relief left by hand tooling."
|
|
1291
1386
|
),
|
|
1292
1387
|
vendored(
|
|
1293
|
-
|
|
1388
|
+
RETRIEVAL_TEXTURE,
|
|
1294
1389
|
"heavily-reliefed",
|
|
1295
1390
|
"Heavily reliefed",
|
|
1296
1391
|
"Deep, strongly modelled relief."
|
|
@@ -1303,22 +1398,20 @@ var FINISH_TERMS = [
|
|
|
1303
1398
|
];
|
|
1304
1399
|
|
|
1305
1400
|
// src/search-corpus-source.ts
|
|
1306
|
-
var
|
|
1307
|
-
var
|
|
1308
|
-
var
|
|
1309
|
-
var MATERIALGRAPH_SEARCH_CORPUS = `materialgraph@${MATERIALGRAPH_SEARCH_CORPUS_COMMIT}:${MATERIALGRAPH_SEARCH_CORPUS_PATH}`;
|
|
1310
|
-
var searchCorpusEvidence = (phrases) => `${MATERIALGRAPH_SEARCH_CORPUS} (244-query external search corpus; phrase and admission evidence: ${phrases}; canonical boundary authored by Taxonomy)`;
|
|
1401
|
+
var SEARCH_CORPUS_SNAPSHOT = "2026-07-31";
|
|
1402
|
+
var SEARCH_CORPUS = "a search benchmark in a materials-retrieval system (src-05)";
|
|
1403
|
+
var searchCorpusEvidence = (phrases) => `${SEARCH_CORPUS} (244-query external search corpus; phrase and admission evidence: ${phrases}; canonical boundary authored by Taxonomy)`;
|
|
1311
1404
|
|
|
1312
1405
|
// src/axes/format.ts
|
|
1313
|
-
var SOURCE2 = "
|
|
1406
|
+
var SOURCE2 = "format vocabulary in a furnishings retailer (src-03)";
|
|
1314
1407
|
var SNAPSHOT2 = "2026-08-25";
|
|
1315
1408
|
var SEARCH_REVIEW_DATE = "2026-08-31";
|
|
1316
1409
|
var searchCorpusProvenance = (evidence) => ({
|
|
1317
1410
|
basis: "evidenced",
|
|
1318
|
-
snapshot:
|
|
1411
|
+
snapshot: SEARCH_CORPUS_SNAPSHOT,
|
|
1319
1412
|
source: searchCorpusEvidence(evidence)
|
|
1320
1413
|
});
|
|
1321
|
-
var
|
|
1414
|
+
var term4 = (slug, label, definition, extra = {}) => ({
|
|
1322
1415
|
definition,
|
|
1323
1416
|
label,
|
|
1324
1417
|
provenance: { basis: "evidenced", snapshot: SNAPSHOT2, source: SOURCE2 },
|
|
@@ -1326,28 +1419,28 @@ var term3 = (slug, label, definition, extra = {}) => ({
|
|
|
1326
1419
|
...extra
|
|
1327
1420
|
});
|
|
1328
1421
|
var FORMAT_TERMS = [
|
|
1329
|
-
|
|
1330
|
-
|
|
1422
|
+
term4("area-rug", "Area rug", "A bounded loose-laid textile floor covering."),
|
|
1423
|
+
term4(
|
|
1331
1424
|
"hide",
|
|
1332
1425
|
"Hide",
|
|
1333
1426
|
"A whole or hide-shaped supplied piece rather than a roll or modular unit."
|
|
1334
1427
|
),
|
|
1335
|
-
|
|
1428
|
+
term4(
|
|
1336
1429
|
"liquid",
|
|
1337
1430
|
"Liquid",
|
|
1338
1431
|
"Supplied wet and formed into its finished surface in place."
|
|
1339
1432
|
),
|
|
1340
|
-
|
|
1433
|
+
term4(
|
|
1341
1434
|
"modular",
|
|
1342
1435
|
"Modular",
|
|
1343
1436
|
"Supplied as repeatable units intended for interchangeable installation."
|
|
1344
1437
|
),
|
|
1345
|
-
|
|
1438
|
+
term4(
|
|
1346
1439
|
"mural",
|
|
1347
1440
|
"Mural",
|
|
1348
1441
|
"Supplied as a multi-panel image composed into one continuous scene."
|
|
1349
1442
|
),
|
|
1350
|
-
|
|
1443
|
+
term4(
|
|
1351
1444
|
"mosaic",
|
|
1352
1445
|
"Mosaic",
|
|
1353
1446
|
"Supplied as small pieces assembled or mounted together to install as one composed field, independent of material and visible motif.",
|
|
@@ -1357,28 +1450,28 @@ var FORMAT_TERMS = [
|
|
|
1357
1450
|
reviewedAt: SEARCH_REVIEW_DATE
|
|
1358
1451
|
}
|
|
1359
1452
|
),
|
|
1360
|
-
|
|
1453
|
+
term4(
|
|
1361
1454
|
"panel",
|
|
1362
1455
|
"Panel",
|
|
1363
1456
|
"A broad rigid or semi-rigid sheet installed as a discrete unit."
|
|
1364
1457
|
),
|
|
1365
|
-
|
|
1458
|
+
term4(
|
|
1366
1459
|
"plank",
|
|
1367
1460
|
"Plank",
|
|
1368
1461
|
"An elongated rigid unit whose length is materially greater than its width."
|
|
1369
1462
|
),
|
|
1370
|
-
|
|
1463
|
+
term4(
|
|
1371
1464
|
"roll",
|
|
1372
1465
|
"Roll",
|
|
1373
1466
|
"A flexible continuous sheet supplied wound around a core."
|
|
1374
1467
|
),
|
|
1375
|
-
|
|
1468
|
+
term4(
|
|
1376
1469
|
"slab",
|
|
1377
1470
|
"Slab",
|
|
1378
1471
|
"A large rigid sheet intended to minimise joints or be fabricated to shape."
|
|
1379
1472
|
),
|
|
1380
|
-
|
|
1381
|
-
|
|
1473
|
+
term4("tile", "Tile", "A discrete modular surface unit."),
|
|
1474
|
+
term4(
|
|
1382
1475
|
"penny-round",
|
|
1383
1476
|
"Penny round",
|
|
1384
1477
|
"A legacy fused identity for a small circular tile supplied for installation as a field.",
|
|
@@ -1393,7 +1486,7 @@ var FORMAT_TERMS = [
|
|
|
1393
1486
|
supersededByReference: "format.tile"
|
|
1394
1487
|
}
|
|
1395
1488
|
),
|
|
1396
|
-
|
|
1489
|
+
term4(
|
|
1397
1490
|
"veneer",
|
|
1398
1491
|
"Veneer",
|
|
1399
1492
|
"A thin facing layer supplied to be bonded or fixed to a substrate, independent of the material from which the facing is made.",
|
|
@@ -1403,7 +1496,7 @@ var FORMAT_TERMS = [
|
|
|
1403
1496
|
reviewedAt: SEARCH_REVIEW_DATE
|
|
1404
1497
|
}
|
|
1405
1498
|
),
|
|
1406
|
-
|
|
1499
|
+
term4(
|
|
1407
1500
|
"wide-plank",
|
|
1408
1501
|
"Wide plank",
|
|
1409
1502
|
"A plank intentionally wider than conventional strip flooring."
|
|
@@ -1411,95 +1504,95 @@ var FORMAT_TERMS = [
|
|
|
1411
1504
|
];
|
|
1412
1505
|
|
|
1413
1506
|
// src/axes/installation-layout.ts
|
|
1414
|
-
var
|
|
1507
|
+
var REVIEW_DATE2 = "2026-08-31";
|
|
1415
1508
|
var REVIEW_SOURCE = "@instruments/taxonomy TAX-45 reviewed implementation contract";
|
|
1416
|
-
var ZIGZAG_EVIDENCE_SOURCE = "Linear TAX-45 reviewed implementation contract;
|
|
1417
|
-
var
|
|
1509
|
+
var ZIGZAG_EVIDENCE_SOURCE = "Linear TAX-45 reviewed implementation contract; herringbone and chevron product-language audit in a materials-retrieval system (src-05)";
|
|
1510
|
+
var term5 = (slug, label, definition, extra = {}) => ({
|
|
1418
1511
|
definition,
|
|
1419
|
-
introducedAt:
|
|
1512
|
+
introducedAt: REVIEW_DATE2,
|
|
1420
1513
|
label,
|
|
1421
1514
|
provenance: { basis: "authored", source: REVIEW_SOURCE },
|
|
1422
|
-
reviewedAt:
|
|
1515
|
+
reviewedAt: REVIEW_DATE2,
|
|
1423
1516
|
slug,
|
|
1424
1517
|
...extra
|
|
1425
1518
|
});
|
|
1426
1519
|
var INSTALLATION_LAYOUT_TERMS = [
|
|
1427
|
-
|
|
1520
|
+
term5(
|
|
1428
1521
|
"stack-bond",
|
|
1429
1522
|
"Stack bond",
|
|
1430
1523
|
"Equal units align in straight rows and columns with joints continuing across both directions."
|
|
1431
1524
|
),
|
|
1432
|
-
|
|
1525
|
+
term5(
|
|
1433
1526
|
"running-bond",
|
|
1434
1527
|
"Running bond",
|
|
1435
1528
|
"Successive courses are displaced along the units' long direction without asserting an exact offset fraction."
|
|
1436
1529
|
),
|
|
1437
|
-
|
|
1530
|
+
term5(
|
|
1438
1531
|
"offset-grid",
|
|
1439
1532
|
"Offset grid",
|
|
1440
1533
|
"Units occupy a repeated grid whose adjacent rows or columns are displaced, without the directional course identity of running bond."
|
|
1441
1534
|
),
|
|
1442
|
-
|
|
1535
|
+
term5(
|
|
1443
1536
|
"herringbone",
|
|
1444
1537
|
"Herringbone layout",
|
|
1445
1538
|
"Elongated units meet at alternating right or oblique angles to form staggered broken zigzags.",
|
|
1446
1539
|
{
|
|
1447
1540
|
provenance: {
|
|
1448
1541
|
basis: "referenced",
|
|
1449
|
-
snapshot:
|
|
1542
|
+
snapshot: REVIEW_DATE2,
|
|
1450
1543
|
source: ZIGZAG_EVIDENCE_SOURCE
|
|
1451
1544
|
}
|
|
1452
1545
|
}
|
|
1453
1546
|
),
|
|
1454
|
-
|
|
1547
|
+
term5(
|
|
1455
1548
|
"chevron",
|
|
1456
1549
|
"Chevron layout",
|
|
1457
1550
|
"Units meet at mitred or shaped ends to form continuous aligned V-shaped zigzags; it does not require one V-shaped physical unit.",
|
|
1458
1551
|
{
|
|
1459
1552
|
provenance: {
|
|
1460
1553
|
basis: "referenced",
|
|
1461
|
-
snapshot:
|
|
1554
|
+
snapshot: REVIEW_DATE2,
|
|
1462
1555
|
source: ZIGZAG_EVIDENCE_SOURCE
|
|
1463
1556
|
}
|
|
1464
1557
|
}
|
|
1465
1558
|
),
|
|
1466
|
-
|
|
1559
|
+
term5(
|
|
1467
1560
|
"basketweave",
|
|
1468
1561
|
"Basketweave",
|
|
1469
1562
|
"Small parallel groups alternate direction to produce an interlaced block arrangement."
|
|
1470
1563
|
),
|
|
1471
|
-
|
|
1564
|
+
term5(
|
|
1472
1565
|
"pinwheel",
|
|
1473
1566
|
"Pinwheel",
|
|
1474
1567
|
"Units rotate around repeated centres, commonly with a smaller central unit."
|
|
1475
1568
|
),
|
|
1476
|
-
|
|
1569
|
+
term5(
|
|
1477
1570
|
"multi-size-modular",
|
|
1478
1571
|
"Multi-size modular",
|
|
1479
1572
|
"Two or more unit sizes repeat as one governed modular installation sequence."
|
|
1480
1573
|
),
|
|
1481
|
-
|
|
1574
|
+
term5(
|
|
1482
1575
|
"ashlar",
|
|
1483
1576
|
"Ashlar",
|
|
1484
1577
|
"Rectangular units of varied lengths or sizes form coursed horizontal joints with controlled vertical-joint displacement."
|
|
1485
1578
|
),
|
|
1486
|
-
|
|
1579
|
+
term5(
|
|
1487
1580
|
"random-stagger",
|
|
1488
1581
|
"Random stagger",
|
|
1489
1582
|
"Elongated units form courses whose end joints vary without a stable repeating offset."
|
|
1490
1583
|
),
|
|
1491
|
-
|
|
1584
|
+
term5(
|
|
1492
1585
|
"radial",
|
|
1493
1586
|
"Radial layout",
|
|
1494
1587
|
"Units or real joints are persistently arranged around a centre or along radiating paths.",
|
|
1495
1588
|
{ altLabels: ["Fan"] }
|
|
1496
1589
|
),
|
|
1497
|
-
|
|
1590
|
+
term5(
|
|
1498
1591
|
"periodic-multi-shape",
|
|
1499
1592
|
"Periodic multi-shape",
|
|
1500
1593
|
"Two or more physical unit shapes recur in one stable repeating assembly."
|
|
1501
1594
|
),
|
|
1502
|
-
|
|
1595
|
+
term5(
|
|
1503
1596
|
"irregular-field",
|
|
1504
1597
|
"Irregular field",
|
|
1505
1598
|
"Discrete units form a positively observed non-periodic field with persistent real joints."
|
|
@@ -1507,14 +1600,14 @@ var INSTALLATION_LAYOUT_TERMS = [
|
|
|
1507
1600
|
];
|
|
1508
1601
|
|
|
1509
1602
|
// src/axes/material.ts
|
|
1510
|
-
var SOURCE3 = "
|
|
1603
|
+
var SOURCE3 = "material vocabularies in a furnishings retailer (src-03) and in-house";
|
|
1511
1604
|
var SNAPSHOT3 = "2026-08-25";
|
|
1512
1605
|
var CROSSOVER_SNAPSHOT2 = "2026-08-30";
|
|
1513
1606
|
var NATURAL_FIBRE_SLUG = "natural-fibre";
|
|
1514
1607
|
var STONE_SLUG = "stone";
|
|
1515
1608
|
var STONE_TARGET = "material.stone";
|
|
1516
1609
|
var WOOD_TARGET = "material.wood";
|
|
1517
|
-
var
|
|
1610
|
+
var term6 = (slug, label, definition) => ({
|
|
1518
1611
|
definition,
|
|
1519
1612
|
label,
|
|
1520
1613
|
provenance: { basis: "evidenced", snapshot: SNAPSHOT3, source: SOURCE3 },
|
|
@@ -1546,7 +1639,7 @@ var searchCorpusMaterial = (slug, label, definition, broaderSlug, referenceSourc
|
|
|
1546
1639
|
label,
|
|
1547
1640
|
provenance: {
|
|
1548
1641
|
basis: "evidenced",
|
|
1549
|
-
snapshot:
|
|
1642
|
+
snapshot: SEARCH_CORPUS_SNAPSHOT,
|
|
1550
1643
|
source: `${searchCorpusEvidence(label)}; ${referenceSource}`
|
|
1551
1644
|
},
|
|
1552
1645
|
reviewedAt: "2026-08-31",
|
|
@@ -1565,13 +1658,13 @@ var MATERIAL_TERMS = [
|
|
|
1565
1658
|
"A copper-alloy family historically associated with copper and tin; unmodified bronze does not identify a specific modern composition.",
|
|
1566
1659
|
CROSSOVER_DEFINITION_SOURCES.bronze
|
|
1567
1660
|
),
|
|
1568
|
-
|
|
1661
|
+
term6(
|
|
1569
1662
|
"ceramic",
|
|
1570
1663
|
"Ceramic",
|
|
1571
1664
|
"A fired inorganic non-metallic body other than porcelain."
|
|
1572
1665
|
),
|
|
1573
1666
|
{
|
|
1574
|
-
...
|
|
1667
|
+
...term6(
|
|
1575
1668
|
"porcelain",
|
|
1576
1669
|
"Porcelain",
|
|
1577
1670
|
"A dense, low-porosity fired ceramic body meeting porcelain classification."
|
|
@@ -1583,7 +1676,7 @@ var MATERIAL_TERMS = [
|
|
|
1583
1676
|
]
|
|
1584
1677
|
},
|
|
1585
1678
|
{
|
|
1586
|
-
...
|
|
1679
|
+
...term6(
|
|
1587
1680
|
"composite",
|
|
1588
1681
|
"Composite",
|
|
1589
1682
|
"An engineered material whose performance comes from two or more bound constituents."
|
|
@@ -1597,7 +1690,7 @@ var MATERIAL_TERMS = [
|
|
|
1597
1690
|
CROSSOVER_DEFINITION_SOURCES.copper
|
|
1598
1691
|
),
|
|
1599
1692
|
{
|
|
1600
|
-
...
|
|
1693
|
+
...term6(
|
|
1601
1694
|
"laminate",
|
|
1602
1695
|
"Laminate",
|
|
1603
1696
|
"A layered sheet material consolidated around a decorative or protective face."
|
|
@@ -1607,7 +1700,7 @@ var MATERIAL_TERMS = [
|
|
|
1607
1700
|
{ predicate: "reads-as", target: STONE_TARGET }
|
|
1608
1701
|
]
|
|
1609
1702
|
},
|
|
1610
|
-
|
|
1703
|
+
term6(
|
|
1611
1704
|
NATURAL_FIBRE_SLUG,
|
|
1612
1705
|
"Natural fibre",
|
|
1613
1706
|
"A material whose visible fibre is plant- or animal-derived."
|
|
@@ -1618,13 +1711,13 @@ var MATERIAL_TERMS = [
|
|
|
1618
1711
|
"The metallic chemical element Ni used in solid metals and alloys; the bare term does not establish alloy, grade, or bulk composition.",
|
|
1619
1712
|
NICKEL_MATERIAL_SOURCE
|
|
1620
1713
|
),
|
|
1621
|
-
|
|
1714
|
+
term6(
|
|
1622
1715
|
"paper",
|
|
1623
1716
|
"Paper",
|
|
1624
1717
|
"A sheet material formed primarily from cellulose fibres."
|
|
1625
1718
|
),
|
|
1626
1719
|
{
|
|
1627
|
-
...
|
|
1720
|
+
...term6(
|
|
1628
1721
|
"solid-surface",
|
|
1629
1722
|
"Solid surface",
|
|
1630
1723
|
"A homogeneous or near-homogeneous cast sheet made from resin and mineral filler."
|
|
@@ -1894,7 +1987,7 @@ var MATERIAL_TERMS = [
|
|
|
1894
1987
|
CROSSOVER_DEFINITION_SOURCES.denim
|
|
1895
1988
|
),
|
|
1896
1989
|
{
|
|
1897
|
-
...
|
|
1990
|
+
...term6(
|
|
1898
1991
|
"vinyl",
|
|
1899
1992
|
"Vinyl",
|
|
1900
1993
|
"A resilient material system whose principal polymer is polyvinyl chloride."
|
|
@@ -1909,7 +2002,7 @@ var MATERIAL_TERMS = [
|
|
|
1909
2002
|
|
|
1910
2003
|
// src/axes/mood.ts
|
|
1911
2004
|
var SNAPSHOT4 = "2026-08-21";
|
|
1912
|
-
var MS_MOOD = "
|
|
2005
|
+
var MS_MOOD = "ms_mood, a mood dictionary in a materials-retrieval system (src-05)";
|
|
1913
2006
|
var ADR = "@instruments/taxonomy ADR 0001";
|
|
1914
2007
|
var MOOD_TERMS = [
|
|
1915
2008
|
{
|
|
@@ -1947,7 +2040,7 @@ var MOOD_TERMS = [
|
|
|
1947
2040
|
{
|
|
1948
2041
|
definition: "Staged and theatrical: strong contrast, deliberate focal points, a room that performs.",
|
|
1949
2042
|
label: "Dramatic",
|
|
1950
|
-
note: "Authored here.
|
|
2043
|
+
note: "Authored here. ms_mood's `moody` conflates darkness with theatricality; a pale, high-contrast gallery is dramatic and not moody, and a dim snug is moody and not dramatic.",
|
|
1951
2044
|
provenance: { basis: "authored", source: ADR },
|
|
1952
2045
|
slug: "dramatic"
|
|
1953
2046
|
},
|
|
@@ -1973,7 +2066,7 @@ var MOOD_TERMS = [
|
|
|
1973
2066
|
altLabels: ["ascetic"],
|
|
1974
2067
|
definition: "Deliberately without comfort or ornament, where the absence is the point rather than a shortage of budget.",
|
|
1975
2068
|
label: "Austere",
|
|
1976
|
-
note: "Authored here. Two estate vocabularies carry a monastic register (
|
|
2069
|
+
note: "Authored here. Two estate vocabularies carry a monastic register (a rendering pipeline's `tactile-monastic`, a materials-retrieval system's `monastic`) that no ms_mood term reaches: `calm` and `serious` both understate it, and neither carries the renunciation.",
|
|
1977
2070
|
provenance: { basis: "authored", source: ADR },
|
|
1978
2071
|
slug: "austere"
|
|
1979
2072
|
},
|
|
@@ -2000,7 +2093,7 @@ var MOOD_TERMS = [
|
|
|
2000
2093
|
{
|
|
2001
2094
|
definition: "Expense legible and intended to be read as expense; the declared opposite of quiet luxury.",
|
|
2002
2095
|
label: "Luxurious",
|
|
2003
|
-
note: "Authored here.
|
|
2096
|
+
note: "Authored here. ms_mood carries only the quiet register, but four estate terms (`art-deco-luxe`, `Contemporary Luxury`, `residential_luxury`, `hospitality_luxury`) mean the loud one, and collapsing them into `quiet_luxury` would invert their sense. TWO OF THOSE FOUR ARE NOT SETTLED: `residential_luxury` and `hospitality_luxury` read equally well as sector plus TIER - a luxury-tier hotel project rather than a room that looks expensive - and their source dictionary describes itself as routing handles, which does not decide it either way. They are left pointed here because that is where they were found, and recorded as ambiguous rather than resolved by guess. The same declining move as `Modern`.",
|
|
2004
2097
|
provenance: { basis: "authored", source: ADR },
|
|
2005
2098
|
related: [{ predicate: "related-to", target: "tier.market.luxury" }],
|
|
2006
2099
|
slug: "luxurious"
|
|
@@ -2026,7 +2119,7 @@ var MOOD_TERMS = [
|
|
|
2026
2119
|
];
|
|
2027
2120
|
|
|
2028
2121
|
// src/axes/palette.ts
|
|
2029
|
-
var COLOUR_MOOD = "
|
|
2122
|
+
var COLOUR_MOOD = "colour_mood, a mood dictionary in a materials-retrieval system (src-05)";
|
|
2030
2123
|
var SNAPSHOT5 = "2026-08-21";
|
|
2031
2124
|
var COLORSCOPE_AUTHORITY_URI = "https://colorscope.materialinstruments.com";
|
|
2032
2125
|
var PALETTE_MOOD = "palette-mood";
|
|
@@ -2113,13 +2206,13 @@ var PALETTE_HUE_TERMS = [
|
|
|
2113
2206
|
label: "Pink",
|
|
2114
2207
|
slug: "pink"
|
|
2115
2208
|
}
|
|
2116
|
-
].map((
|
|
2117
|
-
...
|
|
2118
|
-
canonicalAuthority: colorScopeAuthority(
|
|
2209
|
+
].map((term12) => ({
|
|
2210
|
+
...term12,
|
|
2211
|
+
canonicalAuthority: colorScopeAuthority(term12.slug, "color-family"),
|
|
2119
2212
|
provenance: {
|
|
2120
2213
|
basis: "vendored",
|
|
2121
2214
|
snapshot: SNAPSHOT5,
|
|
2122
|
-
source: "@instruments/colorscope COLOR_FAMILIES
|
|
2215
|
+
source: "@instruments/colorscope COLOR_FAMILIES"
|
|
2123
2216
|
}
|
|
2124
2217
|
}));
|
|
2125
2218
|
var PALETTE_TEMPERATURE_TERMS = [
|
|
@@ -2138,13 +2231,13 @@ var PALETTE_TEMPERATURE_TERMS = [
|
|
|
2138
2231
|
label: "Neutral",
|
|
2139
2232
|
slug: "neutral"
|
|
2140
2233
|
}
|
|
2141
|
-
].map((
|
|
2142
|
-
...
|
|
2143
|
-
canonicalAuthority: colorScopeAuthority(
|
|
2234
|
+
].map((term12) => ({
|
|
2235
|
+
...term12,
|
|
2236
|
+
canonicalAuthority: colorScopeAuthority(term12.slug, "temperature-level"),
|
|
2144
2237
|
provenance: {
|
|
2145
2238
|
basis: "vendored",
|
|
2146
2239
|
snapshot: SNAPSHOT5,
|
|
2147
|
-
source: "
|
|
2240
|
+
source: "colour_undertone, an undertone dictionary in a materials-retrieval system (src-05)"
|
|
2148
2241
|
}
|
|
2149
2242
|
}));
|
|
2150
2243
|
var PALETTE_CHARACTER_TERMS = [
|
|
@@ -2166,7 +2259,7 @@ var PALETTE_CHARACTER_TERMS = [
|
|
|
2166
2259
|
altLabels: ["sun-bleached", "washed"],
|
|
2167
2260
|
definition: "Chroma reduced as if by age, wear or light, rather than chosen low. Distinct from muted: faded implies a stronger original.",
|
|
2168
2261
|
label: "Faded",
|
|
2169
|
-
note: "Authored here. Two estate vocabularies need it (
|
|
2262
|
+
note: "Authored here. Two estate vocabularies need it (a rendering pipeline's `faded` keyword and `sun-bleached-mediterranean`) and colorscope's palette moods do not reach it.",
|
|
2170
2263
|
provenance: { basis: "authored", source: "@instruments/taxonomy ADR 0001" },
|
|
2171
2264
|
slug: "faded"
|
|
2172
2265
|
},
|
|
@@ -2174,7 +2267,7 @@ var PALETTE_CHARACTER_TERMS = [
|
|
|
2174
2267
|
canonicalAuthority: colorScopeAuthority("mid", "lightness-level"),
|
|
2175
2268
|
definition: "Mid-range lightness across the scheme: neither pale nor deep. The midpoint that `light` and `dark` imply and neither states.",
|
|
2176
2269
|
label: "Mid",
|
|
2177
|
-
note: "NOT authored here, and the first draft of this term was the exact mistake this package exists to stop.
|
|
2270
|
+
note: "NOT authored here, and the first draft of this term was the exact mistake this package exists to stop. A paint-sample retailer bands every sample as light, medium or dark and the midpoint is its largest band, so a `medium` term was minted for it - without checking that colorscope already governs a five-level lightness scale with `mid` in the middle. An eighth vocabulary coining a word a governed vocabulary already had. Corrected to colorscope's id, with the retailer's spelling recorded under Seen in the wild where it belongs.",
|
|
2178
2271
|
provenance: {
|
|
2179
2272
|
basis: "vendored",
|
|
2180
2273
|
snapshot: SNAPSHOT5,
|
|
@@ -2229,17 +2322,17 @@ var PALETTE_CHARACTER_TERMS = [
|
|
|
2229
2322
|
];
|
|
2230
2323
|
|
|
2231
2324
|
// src/axes/pattern.ts
|
|
2232
|
-
var SOURCE4 = "
|
|
2325
|
+
var SOURCE4 = "pattern vocabulary in a furnishings retailer (src-03)";
|
|
2233
2326
|
var SNAPSHOT6 = "2026-08-25";
|
|
2234
|
-
var
|
|
2235
|
-
var
|
|
2236
|
-
var
|
|
2237
|
-
var
|
|
2238
|
-
var
|
|
2327
|
+
var RETRIEVAL_SNAPSHOT2 = "2026-08-27";
|
|
2328
|
+
var RETRIEVAL_SCALE = "ms_pattern_scale, a dictionary in a materials-retrieval system (src-05)";
|
|
2329
|
+
var RETRIEVAL_DENSITY = "ms_pattern_density, a dictionary in a materials-retrieval system (src-05)";
|
|
2330
|
+
var RETRIEVAL_REGULARITY = "ms_pattern_regularity, a dictionary in a materials-retrieval system (src-05)";
|
|
2331
|
+
var RETRIEVAL_DIRECTIONALITY = "ms_directionality, a dictionary in a materials-retrieval system (src-05)";
|
|
2239
2332
|
var GEOMETRY_REVIEW_DATE = "2026-08-31";
|
|
2240
|
-
var GEOMETRY_SOURCE = "Linear TAX-45 reviewed implementation contract
|
|
2241
|
-
var GEOMETRY_EVIDENCE_SOURCE = "Linear TAX-45 reviewed implementation contract;
|
|
2242
|
-
var
|
|
2333
|
+
var GEOMETRY_SOURCE = "Linear TAX-45 reviewed implementation contract";
|
|
2334
|
+
var GEOMETRY_EVIDENCE_SOURCE = "Linear TAX-45 reviewed implementation contract; herringbone and chevron product-language audit in a materials-retrieval system (src-05)";
|
|
2335
|
+
var term7 = (slug, label, definition, extra = {}) => ({
|
|
2243
2336
|
definition,
|
|
2244
2337
|
label,
|
|
2245
2338
|
provenance: { basis: "evidenced", snapshot: SNAPSHOT6, source: SOURCE4 },
|
|
@@ -2249,64 +2342,64 @@ var term6 = (slug, label, definition, extra = {}) => ({
|
|
|
2249
2342
|
var vendored2 = (source, slug, label, definition, rank) => ({
|
|
2250
2343
|
definition,
|
|
2251
2344
|
label,
|
|
2252
|
-
provenance: { basis: "vendored", snapshot:
|
|
2345
|
+
provenance: { basis: "vendored", snapshot: RETRIEVAL_SNAPSHOT2, source },
|
|
2253
2346
|
slug,
|
|
2254
2347
|
...rank === void 0 ? {} : { rank }
|
|
2255
2348
|
});
|
|
2256
2349
|
var PATTERN_TYPE_TERMS = [
|
|
2257
|
-
|
|
2350
|
+
term7(
|
|
2258
2351
|
"plain",
|
|
2259
2352
|
"Plain",
|
|
2260
2353
|
"No deliberate repeated motif or representational surface image."
|
|
2261
2354
|
),
|
|
2262
|
-
|
|
2355
|
+
term7(
|
|
2263
2356
|
"abstract-organic",
|
|
2264
2357
|
"Abstract or organic",
|
|
2265
2358
|
"Non-representational marks organised with irregular or biomorphic movement."
|
|
2266
2359
|
),
|
|
2267
|
-
|
|
2360
|
+
term7(
|
|
2268
2361
|
"animal-print",
|
|
2269
2362
|
"Animal print",
|
|
2270
2363
|
"A motif derived from animal markings or skins."
|
|
2271
2364
|
),
|
|
2272
|
-
|
|
2365
|
+
term7(
|
|
2273
2366
|
"botanical",
|
|
2274
2367
|
"Botanical",
|
|
2275
2368
|
"A representational motif of plants, flowers, foliage or fruit."
|
|
2276
2369
|
),
|
|
2277
|
-
|
|
2370
|
+
term7(
|
|
2278
2371
|
"damask",
|
|
2279
2372
|
"Damask",
|
|
2280
2373
|
"A mirrored or scrolling ornamental repeat derived from woven damask and related brocades."
|
|
2281
2374
|
),
|
|
2282
|
-
|
|
2375
|
+
term7(
|
|
2283
2376
|
"concrete-effect",
|
|
2284
2377
|
"Concrete effect",
|
|
2285
2378
|
"A printed or formed surface intended to read as concrete rather than its substrate."
|
|
2286
2379
|
),
|
|
2287
|
-
|
|
2380
|
+
term7(
|
|
2288
2381
|
"cultural-heritage",
|
|
2289
2382
|
"Cultural heritage",
|
|
2290
2383
|
"A motif explicitly drawn from a named cultural or craft tradition."
|
|
2291
2384
|
),
|
|
2292
|
-
|
|
2385
|
+
term7(
|
|
2293
2386
|
"geometric",
|
|
2294
2387
|
"Geometric",
|
|
2295
2388
|
"A repeat organised from geometric shapes, grids or measured linework."
|
|
2296
2389
|
),
|
|
2297
|
-
|
|
2390
|
+
term7(
|
|
2298
2391
|
"herringbone-chevron",
|
|
2299
2392
|
"Herringbone or chevron",
|
|
2300
2393
|
"A legacy combined reading for directional zigzags formed by angled units or marks.",
|
|
2301
2394
|
{
|
|
2302
2395
|
introducedAt: "2026-08-30",
|
|
2303
|
-
note: "Deprecated by the Linear TAX-45 reviewed implementation contract
|
|
2396
|
+
note: "Deprecated by the Linear TAX-45 reviewed implementation contract because one combined identity could not distinguish broken herringbone from continuous chevron motifs. Zigzag preserves the non-specific historical meaning; use the narrower herringbone or chevron concept when evidence supports it.",
|
|
2304
2397
|
reviewedAt: GEOMETRY_REVIEW_DATE,
|
|
2305
2398
|
status: "deprecated",
|
|
2306
2399
|
supersededByReference: "pattern.type.zigzag"
|
|
2307
2400
|
}
|
|
2308
2401
|
),
|
|
2309
|
-
|
|
2402
|
+
term7(
|
|
2310
2403
|
"zigzag",
|
|
2311
2404
|
"Zigzag",
|
|
2312
2405
|
"A repeated motif that alternates direction through connected or visually aligned angled marks without asserting herringbone or chevron specifically.",
|
|
@@ -2320,7 +2413,7 @@ var PATTERN_TYPE_TERMS = [
|
|
|
2320
2413
|
reviewedAt: GEOMETRY_REVIEW_DATE
|
|
2321
2414
|
}
|
|
2322
2415
|
),
|
|
2323
|
-
|
|
2416
|
+
term7(
|
|
2324
2417
|
"herringbone",
|
|
2325
2418
|
"Herringbone pattern",
|
|
2326
2419
|
"A broken zigzag motif whose alternating angled marks or units terminate against one another rather than forming aligned V points.",
|
|
@@ -2335,7 +2428,7 @@ var PATTERN_TYPE_TERMS = [
|
|
|
2335
2428
|
reviewedAt: GEOMETRY_REVIEW_DATE
|
|
2336
2429
|
}
|
|
2337
2430
|
),
|
|
2338
|
-
|
|
2431
|
+
term7(
|
|
2339
2432
|
"chevron",
|
|
2340
2433
|
"Chevron pattern",
|
|
2341
2434
|
"A continuous zigzag motif organised as repeated aligned V-shaped points, independent of whether physical units establish it.",
|
|
@@ -2350,73 +2443,73 @@ var PATTERN_TYPE_TERMS = [
|
|
|
2350
2443
|
reviewedAt: GEOMETRY_REVIEW_DATE
|
|
2351
2444
|
}
|
|
2352
2445
|
),
|
|
2353
|
-
|
|
2446
|
+
term7(
|
|
2354
2447
|
"leather-effect",
|
|
2355
2448
|
"Leather effect",
|
|
2356
2449
|
"A surface intended to read as leather rather than its substrate."
|
|
2357
2450
|
),
|
|
2358
|
-
|
|
2451
|
+
term7(
|
|
2359
2452
|
"marbleised",
|
|
2360
2453
|
"Marbleised",
|
|
2361
2454
|
"Veining or clouding arranged to evoke marble."
|
|
2362
2455
|
),
|
|
2363
|
-
|
|
2456
|
+
term7(
|
|
2364
2457
|
"metal-effect",
|
|
2365
2458
|
"Metal effect",
|
|
2366
2459
|
"A surface intended to read as metal rather than its substrate."
|
|
2367
2460
|
),
|
|
2368
|
-
|
|
2461
|
+
term7(
|
|
2369
2462
|
"natural-motif",
|
|
2370
2463
|
"Natural motif",
|
|
2371
2464
|
"A non-botanical motif read as naturally occurring material or landscape incident."
|
|
2372
2465
|
),
|
|
2373
|
-
|
|
2466
|
+
term7(
|
|
2374
2467
|
"novelty",
|
|
2375
2468
|
"Novelty",
|
|
2376
2469
|
"A pictorial repeat whose subject is intentionally unexpected or conversational."
|
|
2377
2470
|
),
|
|
2378
|
-
|
|
2471
|
+
term7(
|
|
2379
2472
|
"plaid-check",
|
|
2380
2473
|
"Plaid or check",
|
|
2381
2474
|
"An orthogonal repeat of crossing bands or alternating squares."
|
|
2382
2475
|
),
|
|
2383
|
-
|
|
2476
|
+
term7(
|
|
2384
2477
|
"scenic",
|
|
2385
2478
|
"Scenic",
|
|
2386
2479
|
"A continuous or panelled representational landscape or architectural scene."
|
|
2387
2480
|
),
|
|
2388
|
-
|
|
2481
|
+
term7(
|
|
2389
2482
|
"stone-effect",
|
|
2390
2483
|
"Stone effect",
|
|
2391
2484
|
"A surface intended to read as stone rather than its substrate."
|
|
2392
2485
|
),
|
|
2393
|
-
|
|
2394
|
-
|
|
2486
|
+
term7("stripe", "Stripe", "A repeat organised as parallel bands."),
|
|
2487
|
+
term7(
|
|
2395
2488
|
"gradient",
|
|
2396
2489
|
"Gradient",
|
|
2397
2490
|
"A continuous or stepped transition in tone, colour or mark density."
|
|
2398
2491
|
),
|
|
2399
|
-
|
|
2492
|
+
term7(
|
|
2400
2493
|
"texture",
|
|
2401
2494
|
"Texture",
|
|
2402
2495
|
"A non-representational repeat whose principal reading is tactile or relief-like."
|
|
2403
2496
|
),
|
|
2404
|
-
|
|
2497
|
+
term7(
|
|
2405
2498
|
"toile",
|
|
2406
2499
|
"Toile",
|
|
2407
2500
|
"A fine-line pastoral or narrative pictorial repeat, usually in one colour."
|
|
2408
2501
|
),
|
|
2409
|
-
|
|
2502
|
+
term7(
|
|
2410
2503
|
"character",
|
|
2411
2504
|
"Whimsy and character",
|
|
2412
2505
|
"A playful illustrative motif whose principal effect is personality rather than subject fidelity."
|
|
2413
2506
|
),
|
|
2414
|
-
|
|
2507
|
+
term7(
|
|
2415
2508
|
"woodgrain-effect",
|
|
2416
2509
|
"Woodgrain effect",
|
|
2417
2510
|
"A surface intended to read as wood grain rather than its substrate."
|
|
2418
2511
|
),
|
|
2419
|
-
|
|
2512
|
+
term7(
|
|
2420
2513
|
"woven-effect",
|
|
2421
2514
|
"Woven effect",
|
|
2422
2515
|
"A surface intended to read as woven threads rather than its construction."
|
|
@@ -2424,35 +2517,35 @@ var PATTERN_TYPE_TERMS = [
|
|
|
2424
2517
|
];
|
|
2425
2518
|
var PATTERN_SCALE_TERMS = [
|
|
2426
2519
|
vendored2(
|
|
2427
|
-
|
|
2520
|
+
RETRIEVAL_SCALE,
|
|
2428
2521
|
"micro",
|
|
2429
2522
|
"Micro",
|
|
2430
2523
|
"A repeat small enough to read as texture at arm's length.",
|
|
2431
2524
|
1
|
|
2432
2525
|
),
|
|
2433
2526
|
vendored2(
|
|
2434
|
-
|
|
2527
|
+
RETRIEVAL_SCALE,
|
|
2435
2528
|
"small",
|
|
2436
2529
|
"Small",
|
|
2437
2530
|
"A repeat legible close to but not across a room.",
|
|
2438
2531
|
2
|
|
2439
2532
|
),
|
|
2440
2533
|
vendored2(
|
|
2441
|
-
|
|
2534
|
+
RETRIEVAL_SCALE,
|
|
2442
2535
|
"medium",
|
|
2443
2536
|
"Medium",
|
|
2444
2537
|
"A repeat legible at normal viewing distance.",
|
|
2445
2538
|
3
|
|
2446
2539
|
),
|
|
2447
2540
|
vendored2(
|
|
2448
|
-
|
|
2541
|
+
RETRIEVAL_SCALE,
|
|
2449
2542
|
"large",
|
|
2450
2543
|
"Large",
|
|
2451
2544
|
"A repeat that reads across a room and organises a wall.",
|
|
2452
2545
|
4
|
|
2453
2546
|
),
|
|
2454
2547
|
vendored2(
|
|
2455
|
-
|
|
2548
|
+
RETRIEVAL_SCALE,
|
|
2456
2549
|
"oversized",
|
|
2457
2550
|
"Oversized",
|
|
2458
2551
|
"A repeat larger than the surface usually carrying it, so it reads as a fragment.",
|
|
@@ -2461,42 +2554,42 @@ var PATTERN_SCALE_TERMS = [
|
|
|
2461
2554
|
];
|
|
2462
2555
|
var PATTERN_DENSITY_TERMS = [
|
|
2463
2556
|
vendored2(
|
|
2464
|
-
|
|
2557
|
+
RETRIEVAL_DENSITY,
|
|
2465
2558
|
"unpatterned",
|
|
2466
2559
|
"Unpatterned",
|
|
2467
2560
|
"No motif; a plain field.",
|
|
2468
2561
|
1
|
|
2469
2562
|
),
|
|
2470
2563
|
vendored2(
|
|
2471
|
-
|
|
2564
|
+
RETRIEVAL_DENSITY,
|
|
2472
2565
|
"sparse",
|
|
2473
2566
|
"Sparse",
|
|
2474
2567
|
"Isolated motifs with the ground clearly dominant.",
|
|
2475
2568
|
2
|
|
2476
2569
|
),
|
|
2477
2570
|
vendored2(
|
|
2478
|
-
|
|
2571
|
+
RETRIEVAL_DENSITY,
|
|
2479
2572
|
"light",
|
|
2480
2573
|
"Light",
|
|
2481
2574
|
"Motif present throughout while the ground still reads.",
|
|
2482
2575
|
3
|
|
2483
2576
|
),
|
|
2484
2577
|
vendored2(
|
|
2485
|
-
|
|
2578
|
+
RETRIEVAL_DENSITY,
|
|
2486
2579
|
"moderate",
|
|
2487
2580
|
"Moderate",
|
|
2488
2581
|
"Motif and ground hold roughly equal weight.",
|
|
2489
2582
|
4
|
|
2490
2583
|
),
|
|
2491
2584
|
vendored2(
|
|
2492
|
-
|
|
2585
|
+
RETRIEVAL_DENSITY,
|
|
2493
2586
|
"busy",
|
|
2494
2587
|
"Busy",
|
|
2495
2588
|
"Motif dominant, with the ground reduced to gaps.",
|
|
2496
2589
|
5
|
|
2497
2590
|
),
|
|
2498
2591
|
vendored2(
|
|
2499
|
-
|
|
2592
|
+
RETRIEVAL_DENSITY,
|
|
2500
2593
|
"dense",
|
|
2501
2594
|
"Dense",
|
|
2502
2595
|
"Motif covering the field, with no ground reading as ground.",
|
|
@@ -2505,35 +2598,35 @@ var PATTERN_DENSITY_TERMS = [
|
|
|
2505
2598
|
];
|
|
2506
2599
|
var PATTERN_REGULARITY_TERMS = [
|
|
2507
2600
|
vendored2(
|
|
2508
|
-
|
|
2601
|
+
RETRIEVAL_REGULARITY,
|
|
2509
2602
|
"uniform",
|
|
2510
2603
|
"Uniform",
|
|
2511
2604
|
"A mechanically exact repeat with no variation between units.",
|
|
2512
2605
|
1
|
|
2513
2606
|
),
|
|
2514
2607
|
vendored2(
|
|
2515
|
-
|
|
2608
|
+
RETRIEVAL_REGULARITY,
|
|
2516
2609
|
"ordered",
|
|
2517
2610
|
"Ordered",
|
|
2518
2611
|
"A governed repeat carrying slight, deliberate variation.",
|
|
2519
2612
|
2
|
|
2520
2613
|
),
|
|
2521
2614
|
vendored2(
|
|
2522
|
-
|
|
2615
|
+
RETRIEVAL_REGULARITY,
|
|
2523
2616
|
"relaxed",
|
|
2524
2617
|
"Relaxed",
|
|
2525
2618
|
"A repeat readable as a repeat, loosely held.",
|
|
2526
2619
|
3
|
|
2527
2620
|
),
|
|
2528
2621
|
vendored2(
|
|
2529
|
-
|
|
2622
|
+
RETRIEVAL_REGULARITY,
|
|
2530
2623
|
"irregular",
|
|
2531
2624
|
"Irregular",
|
|
2532
2625
|
"Related motifs with no governing repeat.",
|
|
2533
2626
|
4
|
|
2534
2627
|
),
|
|
2535
2628
|
vendored2(
|
|
2536
|
-
|
|
2629
|
+
RETRIEVAL_REGULARITY,
|
|
2537
2630
|
"organic",
|
|
2538
2631
|
"Organic",
|
|
2539
2632
|
"Variation reading as grown or formed rather than composed.",
|
|
@@ -2542,37 +2635,37 @@ var PATTERN_REGULARITY_TERMS = [
|
|
|
2542
2635
|
];
|
|
2543
2636
|
var PATTERN_DIRECTIONALITY_TERMS = [
|
|
2544
2637
|
vendored2(
|
|
2545
|
-
|
|
2638
|
+
RETRIEVAL_DIRECTIONALITY,
|
|
2546
2639
|
"non-directional",
|
|
2547
2640
|
"Non-directional",
|
|
2548
2641
|
"No axis; the pattern reads the same whichever way it is turned."
|
|
2549
2642
|
),
|
|
2550
2643
|
vendored2(
|
|
2551
|
-
|
|
2644
|
+
RETRIEVAL_DIRECTIONALITY,
|
|
2552
2645
|
"low",
|
|
2553
2646
|
"Low",
|
|
2554
2647
|
"A faint axis, visible without governing the composition."
|
|
2555
2648
|
),
|
|
2556
2649
|
vendored2(
|
|
2557
|
-
|
|
2650
|
+
RETRIEVAL_DIRECTIONALITY,
|
|
2558
2651
|
"linear",
|
|
2559
2652
|
"Linear",
|
|
2560
2653
|
"One clear axis the pattern runs along."
|
|
2561
2654
|
),
|
|
2562
2655
|
vendored2(
|
|
2563
|
-
|
|
2656
|
+
RETRIEVAL_DIRECTIONALITY,
|
|
2564
2657
|
"strong-linear",
|
|
2565
2658
|
"Strong linear",
|
|
2566
2659
|
"One dominant axis that fixes how the material must be hung or laid."
|
|
2567
2660
|
),
|
|
2568
2661
|
vendored2(
|
|
2569
|
-
|
|
2662
|
+
RETRIEVAL_DIRECTIONALITY,
|
|
2570
2663
|
"radial",
|
|
2571
2664
|
"Radial",
|
|
2572
2665
|
"Organised about a centre rather than along an axis."
|
|
2573
2666
|
),
|
|
2574
2667
|
vendored2(
|
|
2575
|
-
|
|
2668
|
+
RETRIEVAL_DIRECTIONALITY,
|
|
2576
2669
|
"bi-directional",
|
|
2577
2670
|
"Bi-directional",
|
|
2578
2671
|
"Two axes of equal weight, so the material reads correctly either way up."
|
|
@@ -2587,7 +2680,7 @@ var PATTERN_TERMS = [
|
|
|
2587
2680
|
];
|
|
2588
2681
|
|
|
2589
2682
|
// src/axes/period.ts
|
|
2590
|
-
var
|
|
2683
|
+
var AUTHORED4 = {
|
|
2591
2684
|
basis: "authored",
|
|
2592
2685
|
source: "@instruments/taxonomy ADR 0001"
|
|
2593
2686
|
};
|
|
@@ -2597,7 +2690,7 @@ var PERIOD_TERMS = [
|
|
|
2597
2690
|
definition: "Roughly 1100 to 1500 for anything with surviving fabric: load-bearing masonry, timber frames, and openings sized by what the structure would allow rather than by the room.",
|
|
2598
2691
|
label: "Medieval",
|
|
2599
2692
|
note: "The historical Middle Ages start far earlier, around 500, but almost nothing standing predates 1100, so the useful bracket for a building or an interior starts there.",
|
|
2600
|
-
provenance:
|
|
2693
|
+
provenance: AUTHORED4,
|
|
2601
2694
|
slug: "medieval",
|
|
2602
2695
|
span: {
|
|
2603
2696
|
circa: true,
|
|
@@ -2613,7 +2706,7 @@ var PERIOD_TERMS = [
|
|
|
2613
2706
|
definition: "Roughly 1400 to 1600 in Italy and 1500 to 1620 north of the Alps; the bracket is dated from when classical proportion arrived locally, so it moves by a century across Europe.",
|
|
2614
2707
|
label: "Renaissance",
|
|
2615
2708
|
note: "Tudor (1485-1603) and Elizabethan (1558-1603) are the British dynastic labels for the same span and are the ones the UK trade uses; neither covers the continental early Renaissance. Also a style name - see the header on the STYLE asymmetry.",
|
|
2616
|
-
provenance:
|
|
2709
|
+
provenance: AUTHORED4,
|
|
2617
2710
|
slug: "renaissance",
|
|
2618
2711
|
span: {
|
|
2619
2712
|
circa: true,
|
|
@@ -2629,7 +2722,7 @@ var PERIOD_TERMS = [
|
|
|
2629
2722
|
definition: "Roughly 1600 to 1750, between the Renaissance and the neoclassical turn.",
|
|
2630
2723
|
label: "Baroque",
|
|
2631
2724
|
note: "Stuart (1603-1714) is the British dynastic label for nearly the same span, and by this axis's own rule would be the better id; `baroque` is kept because it is what the English-language trade says of a building of this date anywhere in Europe. Jacobean (1603-1625) is a sub-span, not a synonym. Also a style name - see the header.",
|
|
2632
|
-
provenance:
|
|
2725
|
+
provenance: AUTHORED4,
|
|
2633
2726
|
slug: "baroque",
|
|
2634
2727
|
span: {
|
|
2635
2728
|
circa: true,
|
|
@@ -2645,7 +2738,7 @@ var PERIOD_TERMS = [
|
|
|
2645
2738
|
definition: "1714 to 1830, the four Georges: classical proportion applied to ordinary building, sash windows, and the terrace and square as the unit of urban development.",
|
|
2646
2739
|
label: "Georgian",
|
|
2647
2740
|
note: "Georgian is used in the US market too, usually as Georgian Colonial. Federal (roughly 1780-1830) is the US label for the later half only, not for the whole span - it starts after independence, so nothing before 1776 is Federal.",
|
|
2648
|
-
provenance:
|
|
2741
|
+
provenance: AUTHORED4,
|
|
2649
2742
|
seenAs: ["Colonial"],
|
|
2650
2743
|
slug: "georgian",
|
|
2651
2744
|
span: {
|
|
@@ -2662,7 +2755,7 @@ var PERIOD_TERMS = [
|
|
|
2662
2755
|
definition: "The last Georgian phase, roughly 1795 to 1837: stucco over brick, cast iron balconies, and classical detail thinned and stretched.",
|
|
2663
2756
|
label: "Regency",
|
|
2664
2757
|
note: "Subsumed under `georgian` because it genuinely is one - a Regency interior IS a Georgian-era interior, which is what a broader term asserts and what makes this one of the few legitimate parents on this axis. The Regency proper is only 1811-1820; the trade uses the wider bracket, and this term follows the trade.",
|
|
2665
|
-
provenance:
|
|
2758
|
+
provenance: AUTHORED4,
|
|
2666
2759
|
slug: "regency",
|
|
2667
2760
|
span: {
|
|
2668
2761
|
circa: false,
|
|
@@ -2678,7 +2771,7 @@ var PERIOD_TERMS = [
|
|
|
2678
2771
|
definition: "1837 to 1901: industrial production of building components, the bay window, pattern everywhere it could be printed or woven, and the first mass suburbs.",
|
|
2679
2772
|
label: "Victorian",
|
|
2680
2773
|
note: "Neither US label covers the span. Antebellum runs to 1861 and is regional to the American South; the Gilded Age runs roughly 1877 to 1900 and is the later half only. Between them they overlap most of the Victorian bracket and match none of it, which is why they are carried as other names with this caveat rather than a clean crosswalk.",
|
|
2681
|
-
provenance:
|
|
2774
|
+
provenance: AUTHORED4,
|
|
2682
2775
|
slug: "victorian",
|
|
2683
2776
|
span: {
|
|
2684
2777
|
circa: false,
|
|
@@ -2693,7 +2786,7 @@ var PERIOD_TERMS = [
|
|
|
2693
2786
|
definition: "1901 to 1914 in trade usage: lighter, plainer and better-lit than late Victorian, with wider plots and less pattern.",
|
|
2694
2787
|
label: "Edwardian",
|
|
2695
2788
|
note: "The reign ends in 1910 but the building manner runs to the outbreak of war, and the trade dates it that way. NO US EQUIVALENT EXISTS and none is invented here - the American labels reached for at this date (Craftsman, Arts and Crafts, Prairie) are all styles, and putting one of them here would be the exact error this axis was built to stop.",
|
|
2696
|
-
provenance:
|
|
2789
|
+
provenance: AUTHORED4,
|
|
2697
2790
|
slug: "edwardian",
|
|
2698
2791
|
span: {
|
|
2699
2792
|
circa: false,
|
|
@@ -2709,7 +2802,7 @@ var PERIOD_TERMS = [
|
|
|
2709
2802
|
definition: "1918 to 1939: the semi-detached suburb, the cinema and the lido, and the point at which modernism and revivalism were being built side by side on the same street.",
|
|
2710
2803
|
label: "Interwar",
|
|
2711
2804
|
note: "The one bracket in this axis that travels without adjustment, because the dates are the same everywhere the wars were. The US decade labels - Jazz Age, Depression era - are sub-spans and are not carried as equivalents. This is where an Art Deco building of the period sits; the style claim is separate and lives on STYLE.",
|
|
2712
|
-
provenance:
|
|
2805
|
+
provenance: AUTHORED4,
|
|
2713
2806
|
slug: "interwar",
|
|
2714
2807
|
span: {
|
|
2715
2808
|
circa: false,
|
|
@@ -2725,7 +2818,7 @@ var PERIOD_TERMS = [
|
|
|
2725
2818
|
definition: "1945 to 1970: postwar reconstruction, system building, and the first interiors designed around mass-produced furniture rather than inherited pieces.",
|
|
2726
2819
|
label: "Mid-Century",
|
|
2727
2820
|
note: "`Mid-Century Modern` is a STYLE and is listed under Seen in the wild only because sources routinely write it when they mean the date. The two come apart in both directions: a 1958 local authority housing block is mid-century and not Mid-Century Modern, and a 2023 walnut sideboard is Mid-Century Modern and not mid-century.",
|
|
2728
|
-
provenance:
|
|
2821
|
+
provenance: AUTHORED4,
|
|
2729
2822
|
seenAs: [
|
|
2730
2823
|
"Mid-Century Modern",
|
|
2731
2824
|
"mid-century",
|
|
@@ -2747,7 +2840,7 @@ var PERIOD_TERMS = [
|
|
|
2747
2840
|
definition: "1970 to 1999: the bracket after mid-century and before the millennium, covering the postmodern turn, the high-tech buildings and the first wave of warehouse conversion.",
|
|
2748
2841
|
label: "Late Twentieth Century",
|
|
2749
2842
|
note: "THE WEAKEST TERM ON THIS AXIS, and flagged rather than dressed up. The trade has no settled label for these thirty years - it dates by decade, or reaches for a style name instead - so this is a bucket the axis needs for completeness rather than a period anyone asks for by name. Expect it to be split or renamed once there is usage evidence to split it on.",
|
|
2750
|
-
provenance:
|
|
2843
|
+
provenance: AUTHORED4,
|
|
2751
2844
|
slug: "late-century",
|
|
2752
2845
|
span: {
|
|
2753
2846
|
circa: true,
|
|
@@ -2763,7 +2856,7 @@ var PERIOD_TERMS = [
|
|
|
2763
2856
|
definition: "2000 onwards: built or made in the present century, whatever it looks like.",
|
|
2764
2857
|
label: "Contemporary",
|
|
2765
2858
|
note: "DELIBERATELY OPEN-ENDED, and it will need a successor bracket eventually. Collides by name with `style.contemporary`, which means the prevailing current idiom rather than a date; the axis prefix disambiguates. A 2024 building in full Georgian pastiche is `period.contemporary` and is emphatically not `style.contemporary`, which is the case that shows why the two cannot be merged.",
|
|
2766
|
-
provenance:
|
|
2859
|
+
provenance: AUTHORED4,
|
|
2767
2860
|
seenAs: ["Contemporary", "modern", "new build"],
|
|
2768
2861
|
slug: "contemporary",
|
|
2769
2862
|
span: {
|
|
@@ -2780,7 +2873,7 @@ var PERIOD_TERMS = [
|
|
|
2780
2873
|
// src/axes/place.ts
|
|
2781
2874
|
var SNAPSHOT7 = "2026-08-21";
|
|
2782
2875
|
var ADR2 = "@instruments/taxonomy ADR 0001";
|
|
2783
|
-
var
|
|
2876
|
+
var PLATFORM_CONTEXTS = "CONTEXTS in an architecture-projects platform (src-01)";
|
|
2784
2877
|
var PLACE_REGION_TERMS = [
|
|
2785
2878
|
{
|
|
2786
2879
|
definition: "Lime-rendered mass walls, small deep openings, terracotta, shade as a planning move, and an indoor-outdoor threshold treated as habitable.",
|
|
@@ -2788,7 +2881,7 @@ var PLACE_REGION_TERMS = [
|
|
|
2788
2881
|
provenance: {
|
|
2789
2882
|
basis: "evidenced",
|
|
2790
2883
|
snapshot: SNAPSHOT7,
|
|
2791
|
-
source: "
|
|
2884
|
+
source: "a rendering pipeline (src-08) and an architecture-projects platform (src-01)"
|
|
2792
2885
|
},
|
|
2793
2886
|
slug: "mediterranean"
|
|
2794
2887
|
},
|
|
@@ -2813,7 +2906,7 @@ var PLACE_REGION_TERMS = [
|
|
|
2813
2906
|
provenance: {
|
|
2814
2907
|
basis: "evidenced",
|
|
2815
2908
|
snapshot: SNAPSHOT7,
|
|
2816
|
-
source: "
|
|
2909
|
+
source: "an editorial image library (src-02), an architecture-projects platform (src-01) and a materials-retrieval system (src-05)"
|
|
2817
2910
|
},
|
|
2818
2911
|
seenAs: ["Nordic modern", "nordic_warm", "Scandinavian"],
|
|
2819
2912
|
slug: "nordic"
|
|
@@ -2824,7 +2917,7 @@ var PLACE_REGION_TERMS = [
|
|
|
2824
2917
|
provenance: {
|
|
2825
2918
|
basis: "evidenced",
|
|
2826
2919
|
snapshot: SNAPSHOT7,
|
|
2827
|
-
source: "
|
|
2920
|
+
source: "an architecture-projects platform (src-01) and a rendering pipeline (src-08)"
|
|
2828
2921
|
},
|
|
2829
2922
|
seenAs: ["Japanese contemporary"],
|
|
2830
2923
|
slug: "japanese"
|
|
@@ -2835,7 +2928,7 @@ var PLACE_REGION_TERMS = [
|
|
|
2835
2928
|
provenance: {
|
|
2836
2929
|
basis: "evidenced",
|
|
2837
2930
|
snapshot: SNAPSHOT7,
|
|
2838
|
-
source: "
|
|
2931
|
+
source: "an editorial image library (src-02) and a furnishings retailer (src-03)"
|
|
2839
2932
|
},
|
|
2840
2933
|
seenAs: ["English Country", "Country"],
|
|
2841
2934
|
slug: "english-country"
|
|
@@ -2887,12 +2980,12 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2887
2980
|
provenance: {
|
|
2888
2981
|
basis: "evidenced",
|
|
2889
2982
|
snapshot: SNAPSHOT7,
|
|
2890
|
-
source: "
|
|
2983
|
+
source: "CONTEXTS in an architecture-projects platform (src-01), a furnishings retailer (src-03), an editorial image library (src-02), a rendering pipeline (src-08) and a materials-retrieval system (src-05)"
|
|
2891
2984
|
},
|
|
2892
2985
|
slug: "coastal",
|
|
2893
2986
|
usage: {
|
|
2894
2987
|
band: "occasional",
|
|
2895
|
-
corpus: "
|
|
2988
|
+
corpus: "room schemes in a furnishings retailer (src-03)",
|
|
2896
2989
|
snapshot: "2026-08-18"
|
|
2897
2990
|
}
|
|
2898
2991
|
},
|
|
@@ -2902,7 +2995,7 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2902
2995
|
provenance: {
|
|
2903
2996
|
basis: "vendored",
|
|
2904
2997
|
snapshot: SNAPSHOT7,
|
|
2905
|
-
source:
|
|
2998
|
+
source: PLATFORM_CONTEXTS
|
|
2906
2999
|
},
|
|
2907
3000
|
slug: "waterfront"
|
|
2908
3001
|
},
|
|
@@ -2912,7 +3005,7 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2912
3005
|
provenance: {
|
|
2913
3006
|
basis: "evidenced",
|
|
2914
3007
|
snapshot: SNAPSHOT7,
|
|
2915
|
-
source: "
|
|
3008
|
+
source: "an architecture-projects platform (src-01)"
|
|
2916
3009
|
},
|
|
2917
3010
|
seenAs: ["Tropical modernism"],
|
|
2918
3011
|
slug: "tropical"
|
|
@@ -2923,7 +3016,7 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2923
3016
|
provenance: {
|
|
2924
3017
|
basis: "vendored",
|
|
2925
3018
|
snapshot: SNAPSHOT7,
|
|
2926
|
-
source:
|
|
3019
|
+
source: PLATFORM_CONTEXTS
|
|
2927
3020
|
},
|
|
2928
3021
|
slug: "desert"
|
|
2929
3022
|
},
|
|
@@ -2934,7 +3027,7 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2934
3027
|
provenance: {
|
|
2935
3028
|
basis: "vendored",
|
|
2936
3029
|
snapshot: SNAPSHOT7,
|
|
2937
|
-
source:
|
|
3030
|
+
source: PLATFORM_CONTEXTS
|
|
2938
3031
|
},
|
|
2939
3032
|
slug: "mountain"
|
|
2940
3033
|
},
|
|
@@ -2944,7 +3037,7 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2944
3037
|
provenance: {
|
|
2945
3038
|
basis: "vendored",
|
|
2946
3039
|
snapshot: SNAPSHOT7,
|
|
2947
|
-
source:
|
|
3040
|
+
source: PLATFORM_CONTEXTS
|
|
2948
3041
|
},
|
|
2949
3042
|
slug: "forest"
|
|
2950
3043
|
},
|
|
@@ -2955,7 +3048,7 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2955
3048
|
provenance: {
|
|
2956
3049
|
basis: "vendored",
|
|
2957
3050
|
snapshot: SNAPSHOT7,
|
|
2958
|
-
source:
|
|
3051
|
+
source: PLATFORM_CONTEXTS
|
|
2959
3052
|
},
|
|
2960
3053
|
slug: "rural"
|
|
2961
3054
|
},
|
|
@@ -2965,7 +3058,7 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2965
3058
|
provenance: {
|
|
2966
3059
|
basis: "vendored",
|
|
2967
3060
|
snapshot: SNAPSHOT7,
|
|
2968
|
-
source:
|
|
3061
|
+
source: PLATFORM_CONTEXTS
|
|
2969
3062
|
},
|
|
2970
3063
|
slug: "suburban"
|
|
2971
3064
|
},
|
|
@@ -2976,7 +3069,7 @@ var PLACE_LANDSCAPE_TERMS = [
|
|
|
2976
3069
|
provenance: {
|
|
2977
3070
|
basis: "vendored",
|
|
2978
3071
|
snapshot: SNAPSHOT7,
|
|
2979
|
-
source:
|
|
3072
|
+
source: PLATFORM_CONTEXTS
|
|
2980
3073
|
},
|
|
2981
3074
|
seenAs: ["Dense urban", "Urban infill", "downtown"],
|
|
2982
3075
|
slug: "urban"
|
|
@@ -2996,12 +3089,12 @@ var searchedUniclass = (query, date = "2026-08-27") => ({
|
|
|
2996
3089
|
scheme: "uniclass",
|
|
2997
3090
|
via: "uniclass.thenbs.com/taxon, Pr table walked from Pr_20 to Pr_90"
|
|
2998
3091
|
});
|
|
2999
|
-
var ESTATE2 = "
|
|
3092
|
+
var ESTATE2 = "product vocabularies in a furnishings retailer (src-03) and in-house";
|
|
3000
3093
|
var ESTATE_SNAPSHOT2 = "2026-08-25";
|
|
3001
|
-
var CORPUS2 = "
|
|
3094
|
+
var CORPUS2 = "the us_hierarchy_category_v2 level-2 rollup in a materials-marketplace catalogue (src-04)";
|
|
3002
3095
|
var CORPUS_SNAPSHOT2 = "2026-08-27";
|
|
3003
3096
|
var SEARCH_REVIEW_DATE2 = "2026-08-31";
|
|
3004
|
-
var
|
|
3097
|
+
var term8 = (slug, label, definition, extra = {}) => ({
|
|
3005
3098
|
definition,
|
|
3006
3099
|
label,
|
|
3007
3100
|
provenance: { basis: "evidenced", snapshot: ESTATE_SNAPSHOT2, source: ESTATE2 },
|
|
@@ -3021,7 +3114,7 @@ var fromSearchCorpus = (slug, label, definition, extra = {}) => ({
|
|
|
3021
3114
|
label,
|
|
3022
3115
|
provenance: {
|
|
3023
3116
|
basis: "evidenced",
|
|
3024
|
-
snapshot:
|
|
3117
|
+
snapshot: SEARCH_CORPUS_SNAPSHOT,
|
|
3025
3118
|
source: searchCorpusEvidence(label)
|
|
3026
3119
|
},
|
|
3027
3120
|
reviewedAt: SEARCH_REVIEW_DATE2,
|
|
@@ -3029,7 +3122,7 @@ var fromSearchCorpus = (slug, label, definition, extra = {}) => ({
|
|
|
3029
3122
|
...extra
|
|
3030
3123
|
});
|
|
3031
3124
|
var PRODUCT_CATEGORY_TERMS = [
|
|
3032
|
-
|
|
3125
|
+
term8(
|
|
3033
3126
|
"tile",
|
|
3034
3127
|
"Tile",
|
|
3035
3128
|
"A modular hard-surface unit made to be installed in a repeated field.",
|
|
@@ -3037,7 +3130,7 @@ var PRODUCT_CATEGORY_TERMS = [
|
|
|
3037
3130
|
external: [uniclass2("Pr_35_93_96", "Wall and floor tile units", "exact")]
|
|
3038
3131
|
}
|
|
3039
3132
|
),
|
|
3040
|
-
|
|
3133
|
+
term8(
|
|
3041
3134
|
"carpet-and-rug",
|
|
3042
3135
|
"Carpet and rug",
|
|
3043
3136
|
"A textile floor covering, fixed or loose laid.",
|
|
@@ -3054,7 +3147,7 @@ var PRODUCT_CATEGORY_TERMS = [
|
|
|
3054
3147
|
reviewedAt: "2026-08-31"
|
|
3055
3148
|
}
|
|
3056
3149
|
),
|
|
3057
|
-
|
|
3150
|
+
term8(
|
|
3058
3151
|
"countertop",
|
|
3059
3152
|
"Countertop",
|
|
3060
3153
|
"A product or fabricated assembly supplied as a horizontal work surface.",
|
|
@@ -3064,7 +3157,7 @@ var PRODUCT_CATEGORY_TERMS = [
|
|
|
3064
3157
|
]
|
|
3065
3158
|
}
|
|
3066
3159
|
),
|
|
3067
|
-
|
|
3160
|
+
term8(
|
|
3068
3161
|
"flooring",
|
|
3069
3162
|
"Flooring",
|
|
3070
3163
|
"A product supplied to form a finished walking surface.",
|
|
@@ -3072,7 +3165,7 @@ var PRODUCT_CATEGORY_TERMS = [
|
|
|
3072
3165
|
external: [uniclass2("Pr_35_57_71", "Resilient floor coverings", "close")]
|
|
3073
3166
|
}
|
|
3074
3167
|
),
|
|
3075
|
-
|
|
3168
|
+
term8(
|
|
3076
3169
|
"wallcovering",
|
|
3077
3170
|
"Wallcovering",
|
|
3078
3171
|
"A sheet, roll or panel product applied as the visible wall surface.",
|
|
@@ -3337,71 +3430,119 @@ var PRODUCT_CATEGORY_TERMS = [
|
|
|
3337
3430
|
];
|
|
3338
3431
|
|
|
3339
3432
|
// src/axes/requirement.ts
|
|
3340
|
-
var SOURCE5 = "
|
|
3433
|
+
var SOURCE5 = "in-house residential and commercial project requirements";
|
|
3341
3434
|
var SNAPSHOT8 = "2026-08-25";
|
|
3342
|
-
var
|
|
3435
|
+
var term9 = (slug, label, definition) => ({
|
|
3343
3436
|
definition,
|
|
3344
3437
|
label,
|
|
3345
3438
|
provenance: { basis: "evidenced", snapshot: SNAPSHOT8, source: SOURCE5 },
|
|
3346
3439
|
slug
|
|
3347
3440
|
});
|
|
3348
3441
|
var REQUIREMENT_TERMS = [
|
|
3349
|
-
|
|
3442
|
+
term9(
|
|
3350
3443
|
"budget",
|
|
3351
3444
|
"Budget",
|
|
3352
3445
|
"The allowed monetary cost or cost band for the applicable scope."
|
|
3353
3446
|
),
|
|
3354
|
-
|
|
3447
|
+
term9(
|
|
3355
3448
|
"availability",
|
|
3356
3449
|
"Availability",
|
|
3357
3450
|
"Whether the thing can be supplied in the required market and time window."
|
|
3358
3451
|
),
|
|
3359
|
-
|
|
3452
|
+
term9(
|
|
3360
3453
|
"lead-time",
|
|
3361
3454
|
"Lead time",
|
|
3362
3455
|
"The maximum elapsed time acceptable between commitment and supply."
|
|
3363
3456
|
),
|
|
3364
|
-
|
|
3457
|
+
term9(
|
|
3365
3458
|
"slip-resistance",
|
|
3366
3459
|
"Slip resistance",
|
|
3367
3460
|
"The required measured resistance to pedestrian slipping for the application."
|
|
3368
3461
|
),
|
|
3369
|
-
|
|
3462
|
+
term9(
|
|
3370
3463
|
"wet-area-suitability",
|
|
3371
3464
|
"Wet-area suitability",
|
|
3372
3465
|
"Whether the product is evidenced as suitable for the stated wet exposure."
|
|
3373
3466
|
),
|
|
3374
|
-
|
|
3467
|
+
term9(
|
|
3375
3468
|
"fire-performance",
|
|
3376
3469
|
"Fire performance",
|
|
3377
3470
|
"The required reaction-to-fire or fire-resistance classification."
|
|
3378
3471
|
),
|
|
3379
|
-
|
|
3472
|
+
term9(
|
|
3380
3473
|
"acoustic-performance",
|
|
3381
3474
|
"Acoustic performance",
|
|
3382
3475
|
"The required sound absorption, insulation or impact-noise performance."
|
|
3383
3476
|
),
|
|
3384
|
-
|
|
3477
|
+
term9(
|
|
3385
3478
|
"maintenance",
|
|
3386
3479
|
"Maintenance",
|
|
3387
3480
|
"The allowed cleaning, renewal or routine care burden."
|
|
3388
3481
|
),
|
|
3389
|
-
|
|
3482
|
+
term9(
|
|
3390
3483
|
"installation-method",
|
|
3391
3484
|
"Installation method",
|
|
3392
3485
|
"A required or prohibited method of fixing, laying or applying the product."
|
|
3393
3486
|
),
|
|
3394
|
-
|
|
3487
|
+
term9(
|
|
3395
3488
|
"indoor-air-quality",
|
|
3396
3489
|
"Indoor air quality",
|
|
3397
3490
|
"A limit or certification concerning emissions into occupied indoor air."
|
|
3398
3491
|
)
|
|
3399
3492
|
];
|
|
3400
3493
|
|
|
3494
|
+
// src/axes/season.ts
|
|
3495
|
+
var REVIEW_DATE3 = "2026-09-11";
|
|
3496
|
+
var AUTHORED5 = {
|
|
3497
|
+
basis: "authored",
|
|
3498
|
+
source: "@instruments/taxonomy ADR 0006"
|
|
3499
|
+
};
|
|
3500
|
+
var wikidata = (identifier, label) => ({
|
|
3501
|
+
identifier,
|
|
3502
|
+
label,
|
|
3503
|
+
match: "exact",
|
|
3504
|
+
scheme: "wikidata"
|
|
3505
|
+
});
|
|
3506
|
+
var term10 = (slug, label, definition, extra) => ({
|
|
3507
|
+
definition,
|
|
3508
|
+
introducedAt: REVIEW_DATE3,
|
|
3509
|
+
label,
|
|
3510
|
+
provenance: AUTHORED5,
|
|
3511
|
+
reviewedAt: REVIEW_DATE3,
|
|
3512
|
+
slug,
|
|
3513
|
+
...extra
|
|
3514
|
+
});
|
|
3515
|
+
var SEASON_TERMS = [
|
|
3516
|
+
term10(
|
|
3517
|
+
"spring",
|
|
3518
|
+
"Spring",
|
|
3519
|
+
"The temperate season between winter and summer, when the days lengthen.",
|
|
3520
|
+
{ external: [wikidata("Q1312", "spring")] }
|
|
3521
|
+
),
|
|
3522
|
+
term10(
|
|
3523
|
+
"summer",
|
|
3524
|
+
"Summer",
|
|
3525
|
+
"The temperate season between spring and autumn, when the days are longest.",
|
|
3526
|
+
{ external: [wikidata("Q1313", "summer")] }
|
|
3527
|
+
),
|
|
3528
|
+
term10(
|
|
3529
|
+
"autumn",
|
|
3530
|
+
"Autumn",
|
|
3531
|
+
"The temperate season between summer and winter, when the days shorten.",
|
|
3532
|
+
{ altLabels: ["fall"], external: [wikidata("Q1314", "autumn")] }
|
|
3533
|
+
),
|
|
3534
|
+
term10(
|
|
3535
|
+
"winter",
|
|
3536
|
+
"Winter",
|
|
3537
|
+
"The temperate season between autumn and spring, when the days are shortest.",
|
|
3538
|
+
{ external: [wikidata("Q1311", "winter")] }
|
|
3539
|
+
)
|
|
3540
|
+
];
|
|
3541
|
+
|
|
3401
3542
|
// src/axes/space/shared.ts
|
|
3402
3543
|
var VENDORED_SNAPSHOT = "2026-08-21";
|
|
3403
|
-
var
|
|
3404
|
-
var
|
|
3544
|
+
var SCHEME_SNAPSHOT = "2026-08-18";
|
|
3545
|
+
var SCHEME_CORPUS = "room schemes in a furnishings retailer (src-03)";
|
|
3405
3546
|
var aat2 = (slug, label, match) => ({
|
|
3406
3547
|
identifier: slug,
|
|
3407
3548
|
label,
|
|
@@ -3411,31 +3552,31 @@ var aat2 = (slug, label, match) => ({
|
|
|
3411
3552
|
var MS_ROOM = {
|
|
3412
3553
|
basis: "vendored",
|
|
3413
3554
|
snapshot: VENDORED_SNAPSHOT,
|
|
3414
|
-
source: "
|
|
3555
|
+
source: "ms_room, a commercial room dictionary in a materials-retrieval system (src-05)"
|
|
3415
3556
|
};
|
|
3416
|
-
var
|
|
3557
|
+
var MS_ROOM_PROGRAM = {
|
|
3417
3558
|
basis: "vendored",
|
|
3418
3559
|
snapshot: VENDORED_SNAPSHOT,
|
|
3419
|
-
source: "
|
|
3560
|
+
source: "ms_room in a materials-retrieval system (src-05) and PROGRAM_SPACE_TYPES in a project-materials database (src-07)"
|
|
3420
3561
|
};
|
|
3421
|
-
var
|
|
3562
|
+
var AUTHORED6 = {
|
|
3422
3563
|
basis: "authored",
|
|
3423
3564
|
source: "@instruments/taxonomy ADR 0001"
|
|
3424
3565
|
};
|
|
3425
3566
|
var EVIDENCED = {
|
|
3426
3567
|
basis: "evidenced",
|
|
3427
|
-
snapshot:
|
|
3428
|
-
source:
|
|
3568
|
+
snapshot: SCHEME_SNAPSHOT,
|
|
3569
|
+
source: SCHEME_CORPUS
|
|
3429
3570
|
};
|
|
3430
|
-
var
|
|
3571
|
+
var schemeUsage = (band) => ({
|
|
3431
3572
|
band,
|
|
3432
|
-
corpus:
|
|
3433
|
-
snapshot:
|
|
3573
|
+
corpus: SCHEME_CORPUS,
|
|
3574
|
+
snapshot: SCHEME_SNAPSHOT
|
|
3434
3575
|
});
|
|
3435
|
-
var
|
|
3576
|
+
var PROGRAM_SPACES = {
|
|
3436
3577
|
basis: "vendored",
|
|
3437
3578
|
snapshot: VENDORED_SNAPSHOT,
|
|
3438
|
-
source: "
|
|
3579
|
+
source: "PROGRAM_SPACE_TYPES in a project-materials database (src-07)"
|
|
3439
3580
|
};
|
|
3440
3581
|
var relatedTo = (target) => ({
|
|
3441
3582
|
predicate: "related-to",
|
|
@@ -3459,7 +3600,7 @@ var ARRIVAL_SPACES = [
|
|
|
3459
3600
|
external: [aat2("300004263", "entrance halls", "exact")],
|
|
3460
3601
|
label: "Entry / Foyer",
|
|
3461
3602
|
note: "`vestibule` was carried as another name here in the 0.2 draft and is now a term of its own, because the spine carries it separately and the two are genuinely different rooms: a vestibule has two sets of doors and an entry does not. The word is kept under Seen in the wild because upstream data really does use it to mean this.",
|
|
3462
|
-
provenance:
|
|
3603
|
+
provenance: MS_ROOM_PROGRAM,
|
|
3463
3604
|
seenAs: ["vestibule"],
|
|
3464
3605
|
slug: "entry"
|
|
3465
3606
|
},
|
|
@@ -3469,14 +3610,14 @@ var ARRIVAL_SPACES = [
|
|
|
3469
3610
|
definition: "A small enclosed volume between two sets of doors at an entrance, held there to break the draught and catch the dirt; the second set of doors is the test, and without them it is `entry`.",
|
|
3470
3611
|
external: [aat2("300083076", "vestibules", "exact")],
|
|
3471
3612
|
label: "Vestibule",
|
|
3472
|
-
provenance:
|
|
3613
|
+
provenance: PROGRAM_SPACES,
|
|
3473
3614
|
slug: "vestibule"
|
|
3474
3615
|
},
|
|
3475
3616
|
{
|
|
3476
3617
|
definition: "The arrival and waiting volume of a building held in common by everyone who enters it: public, generally staffed, and passed through rather than settled into.",
|
|
3477
3618
|
external: [aat2("300004264", "lobbies", "exact")],
|
|
3478
3619
|
label: "Lobby",
|
|
3479
|
-
provenance:
|
|
3620
|
+
provenance: PROGRAM_SPACES,
|
|
3480
3621
|
slug: "lobby"
|
|
3481
3622
|
},
|
|
3482
3623
|
{
|
|
@@ -3492,7 +3633,7 @@ var ARRIVAL_SPACES = [
|
|
|
3492
3633
|
broaderSlug: "lobby",
|
|
3493
3634
|
definition: "The landing volume in front of a bank of lifts on any floor, where people stand still waiting rather than walk through; the shaft behind the doors is not a space.",
|
|
3494
3635
|
label: "Lift Lobby",
|
|
3495
|
-
provenance:
|
|
3636
|
+
provenance: PROGRAM_SPACES,
|
|
3496
3637
|
slug: "elevator-lobby"
|
|
3497
3638
|
},
|
|
3498
3639
|
{
|
|
@@ -3502,14 +3643,14 @@ var ARRIVAL_SPACES = [
|
|
|
3502
3643
|
aat2("300077176", "reception rooms", "close")
|
|
3503
3644
|
],
|
|
3504
3645
|
label: "Reception",
|
|
3505
|
-
provenance:
|
|
3646
|
+
provenance: PROGRAM_SPACES,
|
|
3506
3647
|
slug: "reception"
|
|
3507
3648
|
},
|
|
3508
3649
|
{
|
|
3509
3650
|
broaderSlug: "reception",
|
|
3510
3651
|
definition: "The reception volume of a workplace, where visitors are received and held before being taken through security into the working floors.",
|
|
3511
3652
|
label: "Workplace Reception",
|
|
3512
|
-
provenance:
|
|
3653
|
+
provenance: PROGRAM_SPACES,
|
|
3513
3654
|
related: [serves("workplace")],
|
|
3514
3655
|
slug: "reception-workplace"
|
|
3515
3656
|
},
|
|
@@ -3517,27 +3658,27 @@ var ARRIVAL_SPACES = [
|
|
|
3517
3658
|
definition: "The staffed position in a hotel or residential building where guests are helped with onward arrangements, distinct from `check_in` by not being where the stay is registered.",
|
|
3518
3659
|
label: "Concierge",
|
|
3519
3660
|
note: "A furniture-defined zone rather than a bounded room: it is a desk and the volume a queue occupies in front of it. Kept because it is specified against - the desk, its surround and its floor are a distinct package - but read it as a zone, not a room.",
|
|
3520
|
-
provenance:
|
|
3661
|
+
provenance: PROGRAM_SPACES,
|
|
3521
3662
|
related: [serves("hospitality"), serves("residential")],
|
|
3522
3663
|
slug: "concierge"
|
|
3523
3664
|
},
|
|
3524
3665
|
{
|
|
3525
3666
|
definition: "The volume where a stay or an appointment is registered: a hotel front desk, a clinic reception counter, an airline desk and the queue in front of it.",
|
|
3526
3667
|
label: "Check-In",
|
|
3527
|
-
provenance:
|
|
3668
|
+
provenance: PROGRAM_SPACES,
|
|
3528
3669
|
slug: "check-in"
|
|
3529
3670
|
},
|
|
3530
3671
|
{
|
|
3531
3672
|
definition: "A seated volume where people wait for something to happen, open to the space around it rather than enclosed; enclose it and it becomes a waiting room in the sector that owns it.",
|
|
3532
3673
|
external: [aat2("300004450", "waiting rooms", "close")],
|
|
3533
3674
|
label: "Waiting Area",
|
|
3534
|
-
provenance:
|
|
3675
|
+
provenance: PROGRAM_SPACES,
|
|
3535
3676
|
slug: "waiting-area"
|
|
3536
3677
|
},
|
|
3537
3678
|
{
|
|
3538
3679
|
definition: "The staffed control position at a building's entrance, where access is checked before anyone passes it; the volume is defined by the line it holds, not by its walls.",
|
|
3539
3680
|
label: "Security Desk",
|
|
3540
|
-
provenance:
|
|
3681
|
+
provenance: PROGRAM_SPACES,
|
|
3541
3682
|
slug: "security-desk"
|
|
3542
3683
|
},
|
|
3543
3684
|
{
|
|
@@ -3545,20 +3686,20 @@ var ARRIVAL_SPACES = [
|
|
|
3545
3686
|
definition: "The customer-facing sales office of a residential or commercial building, where tenancies are shown and signed; furnished to sell the building rather than to run it.",
|
|
3546
3687
|
label: "Leasing Office",
|
|
3547
3688
|
note: "Deliberately not a kind of `private_office`. A private office is held by one person or a small named group behind a door that shuts; a leasing office is a public-facing suite the point of which is that strangers walk into it. It is a workspace, and that is as far as the subsumption goes.",
|
|
3548
|
-
provenance:
|
|
3689
|
+
provenance: PROGRAM_SPACES,
|
|
3549
3690
|
slug: "leasing-office"
|
|
3550
3691
|
},
|
|
3551
3692
|
{
|
|
3552
3693
|
definition: "A volume inside a commercial building given over to telling the occupier's or landlord's story rather than to transacting: display, no till, no stock.",
|
|
3553
3694
|
label: "Brand Gallery",
|
|
3554
|
-
provenance:
|
|
3695
|
+
provenance: PROGRAM_SPACES,
|
|
3555
3696
|
slug: "brand-gallery"
|
|
3556
3697
|
},
|
|
3557
3698
|
{
|
|
3558
3699
|
broaderSlug: "entry",
|
|
3559
3700
|
definition: "The front door of a single dwelling inside a larger building - the flat door off the common landing - as opposed to the building's own `entry`.",
|
|
3560
3701
|
label: "Unit Entry",
|
|
3561
|
-
provenance:
|
|
3702
|
+
provenance: PROGRAM_SPACES,
|
|
3562
3703
|
related: [serves("residential")],
|
|
3563
3704
|
slug: "unit-entry"
|
|
3564
3705
|
},
|
|
@@ -3566,7 +3707,7 @@ var ARRIVAL_SPACES = [
|
|
|
3566
3707
|
definition: "The volume a person occupies in the act of crossing from one condition to another - outside to inside, public to private - where the floor build-up, the level and the light all change at once.",
|
|
3567
3708
|
label: "Threshold",
|
|
3568
3709
|
note: "The most zone-like term on the axis and the one most easily confused with an element. The sill you step over is `element.door` territory; this is the volume you stand in while you step over it. Where a scheme has a real room at that point, use `vestibule` or `entry` and leave this alone.",
|
|
3569
|
-
provenance:
|
|
3710
|
+
provenance: PROGRAM_SPACES,
|
|
3570
3711
|
slug: "threshold"
|
|
3571
3712
|
},
|
|
3572
3713
|
{
|
|
@@ -3574,7 +3715,7 @@ var ARRIVAL_SPACES = [
|
|
|
3574
3715
|
definition: "A covered exterior volume against the face of a dwelling at its entrance, open on at least one side; roof it, wall it and glaze it and it becomes `conservatory`.",
|
|
3575
3716
|
external: [aat2("300004132", "porches", "exact")],
|
|
3576
3717
|
label: "Porch",
|
|
3577
|
-
provenance:
|
|
3718
|
+
provenance: AUTHORED6,
|
|
3578
3719
|
related: [serves("residential")],
|
|
3579
3720
|
slug: "porch"
|
|
3580
3721
|
},
|
|
@@ -3584,7 +3725,7 @@ var ARRIVAL_SPACES = [
|
|
|
3584
3725
|
external: [aat2("300004143", "porte-coch\xE8res", "close")],
|
|
3585
3726
|
label: "Porte-Coch\xE8re",
|
|
3586
3727
|
note: "AAT scopes this as the projecting roof structure that does the sheltering, which by this axis's own boundary is an element. The term here is the volume under it, so the match is `close` and not `exact` - the same catch that downgraded `landing`.",
|
|
3587
|
-
provenance:
|
|
3728
|
+
provenance: PROGRAM_SPACES,
|
|
3588
3729
|
slug: "porte-cochere"
|
|
3589
3730
|
}
|
|
3590
3731
|
];
|
|
@@ -3601,7 +3742,7 @@ var CIRCULATION_SPACES = [
|
|
|
3601
3742
|
definition: "A circulation volume markedly longer than it is wide, whose only purpose is passage between other spaces.",
|
|
3602
3743
|
external: [aat2("300004294", "corridors", "exact")],
|
|
3603
3744
|
label: "Corridor",
|
|
3604
|
-
provenance:
|
|
3745
|
+
provenance: MS_ROOM_PROGRAM,
|
|
3605
3746
|
slug: "corridor"
|
|
3606
3747
|
},
|
|
3607
3748
|
{
|
|
@@ -3611,7 +3752,7 @@ var CIRCULATION_SPACES = [
|
|
|
3611
3752
|
external: [aat2("300004420", "halls (interior rooms)", "close")],
|
|
3612
3753
|
label: "Hallway",
|
|
3613
3754
|
note: "The ISA edge holds on the load-bearing half of `corridor`: passage between other spaces. The parent's proportion clause - longer than it is wide - describes its central case rather than stating a necessary condition, and a generous furnished hall is still circulation. If that clause is ever tightened into a test, this edge comes out with it.",
|
|
3614
|
-
provenance:
|
|
3755
|
+
provenance: AUTHORED6,
|
|
3615
3756
|
related: [serves("residential")],
|
|
3616
3757
|
slug: "hallway"
|
|
3617
3758
|
},
|
|
@@ -3619,7 +3760,7 @@ var CIRCULATION_SPACES = [
|
|
|
3619
3760
|
broaderSlug: "corridor",
|
|
3620
3761
|
definition: "A circulation volume used by staff and goods rather than by the public, specified for trolley impact and washdown rather than for appearance.",
|
|
3621
3762
|
label: "Service Corridor",
|
|
3622
|
-
provenance:
|
|
3763
|
+
provenance: PROGRAM_SPACES,
|
|
3623
3764
|
slug: "service-corridor"
|
|
3624
3765
|
},
|
|
3625
3766
|
{
|
|
@@ -3631,7 +3772,7 @@ var CIRCULATION_SPACES = [
|
|
|
3631
3772
|
// element, not a space. Our `landing` is the volume a person stands in; AAT's is the thing they
|
|
3632
3773
|
// stand on. A neat demonstration of the boundary rule catching a mapping that reads right.
|
|
3633
3774
|
note: "AAT files landings as a stair component, which is the element sense. This term is the volume sense - the thing you stand on - so the match is `close` and not `exact`.",
|
|
3634
|
-
provenance:
|
|
3775
|
+
provenance: PROGRAM_SPACES,
|
|
3635
3776
|
slug: "landing"
|
|
3636
3777
|
},
|
|
3637
3778
|
{
|
|
@@ -3639,7 +3780,7 @@ var CIRCULATION_SPACES = [
|
|
|
3639
3780
|
definition: "The vertical volume a stair occupies from floor to floor, including the void beside it; the stair itself is `element.stair`.",
|
|
3640
3781
|
external: [aat2("300004324", "stairwells", "exact")],
|
|
3641
3782
|
label: "Stairwell",
|
|
3642
|
-
provenance:
|
|
3783
|
+
provenance: AUTHORED6,
|
|
3643
3784
|
slug: "stairwell"
|
|
3644
3785
|
},
|
|
3645
3786
|
{
|
|
@@ -3647,27 +3788,27 @@ var CIRCULATION_SPACES = [
|
|
|
3647
3788
|
definition: "The moving volume a lift passenger stands in, specified as a tiny room - floor, walls, ceiling, handrail - rather than as machinery; the shaft around it is not a space.",
|
|
3648
3789
|
label: "Lift Cab",
|
|
3649
3790
|
note: "Kept where `stair` and `escalator` were dropped, and the difference is the boundary test rather than a preference. You stand ON a stair and ON an escalator, and both are element territory. You stand IN a lift cab: it is a bounded volume with four surfaces and a ceiling, and every one of them gets specified.",
|
|
3650
|
-
provenance:
|
|
3791
|
+
provenance: PROGRAM_SPACES,
|
|
3651
3792
|
slug: "elevator-cab"
|
|
3652
3793
|
},
|
|
3653
3794
|
{
|
|
3654
3795
|
definition: "An enclosed circulation volume spanning between two buildings or across a void, whose surfaces answer to movement and thermal exposure at once.",
|
|
3655
3796
|
label: "Bridge / Link",
|
|
3656
|
-
provenance:
|
|
3797
|
+
provenance: PROGRAM_SPACES,
|
|
3657
3798
|
slug: "bridge"
|
|
3658
3799
|
},
|
|
3659
3800
|
{
|
|
3660
3801
|
definition: "A tall top-lit volume rising through several storeys inside a building, around which the floors are arranged; the height and the light from above are the test, not the plan area.",
|
|
3661
3802
|
external: [aat2("300080798", "atriums (interior spaces)", "exact")],
|
|
3662
3803
|
label: "Atrium",
|
|
3663
|
-
provenance:
|
|
3804
|
+
provenance: PROGRAM_SPACES,
|
|
3664
3805
|
slug: "atrium"
|
|
3665
3806
|
},
|
|
3666
3807
|
{
|
|
3667
3808
|
definition: "The volume at a decision point in a building's circulation, where signage, floor change and sightline are specified together to tell an arriving person which way to go.",
|
|
3668
3809
|
label: "Wayfinding Zone",
|
|
3669
3810
|
note: "A zone, not a room. It has no walls of its own - it is a stretch of `lobby` or `corridor` given a different specification because it has a job to do. Kept because that different specification is real and is drawn on plans.",
|
|
3670
|
-
provenance:
|
|
3811
|
+
provenance: PROGRAM_SPACES,
|
|
3671
3812
|
slug: "wayfinding-zone"
|
|
3672
3813
|
},
|
|
3673
3814
|
{
|
|
@@ -3675,7 +3816,7 @@ var CIRCULATION_SPACES = [
|
|
|
3675
3816
|
definition: "An exterior pedestrian route through a site, laid and drained as a route rather than occupied; furnish it and sit in it and it becomes `terrace` or `plaza`.",
|
|
3676
3817
|
external: [aat2("300008312", "walkways", "exact")],
|
|
3677
3818
|
label: "Walkway",
|
|
3678
|
-
provenance:
|
|
3819
|
+
provenance: PROGRAM_SPACES,
|
|
3679
3820
|
slug: "walkway"
|
|
3680
3821
|
}
|
|
3681
3822
|
];
|
|
@@ -3691,7 +3832,7 @@ var CIVIC_SPACES = [
|
|
|
3691
3832
|
definition: "The room a court sits in, laid out by procedure: bench, bar, box, dock and public gallery in fixed relation, with sightline and audibility between them mandated rather than chosen.",
|
|
3692
3833
|
external: [aat2("300004408", "courtrooms", "exact")],
|
|
3693
3834
|
label: "Courtroom",
|
|
3694
|
-
provenance:
|
|
3835
|
+
provenance: PROGRAM_SPACES,
|
|
3695
3836
|
related: [serves("civic")],
|
|
3696
3837
|
slug: "courtroom"
|
|
3697
3838
|
},
|
|
@@ -3699,14 +3840,14 @@ var CIVIC_SPACES = [
|
|
|
3699
3840
|
definition: "The room an elected body debates in, seated in the round or in opposing banks, with a public gallery and a fixed chair; the arrangement is constitutional, not spatial.",
|
|
3700
3841
|
label: "Council Chamber",
|
|
3701
3842
|
note: "No AAT mapping. Getty's `chambers (rooms)` (300458724) is a general term for a private room and its `assembly rooms` (300004393) is scoped to 18th-century social gatherings and balls. Neither is this. Searched and declined rather than forced.",
|
|
3702
|
-
provenance:
|
|
3843
|
+
provenance: PROGRAM_SPACES,
|
|
3703
3844
|
related: [serves("civic")],
|
|
3704
3845
|
slug: "council-chamber"
|
|
3705
3846
|
},
|
|
3706
3847
|
{
|
|
3707
3848
|
definition: "The staffed counter a public body is dealt with over, and the queueing and waiting volume in front of it; specified for security, accessibility and heavy unloved wear.",
|
|
3708
3849
|
label: "Public Service Counter",
|
|
3709
|
-
provenance:
|
|
3850
|
+
provenance: PROGRAM_SPACES,
|
|
3710
3851
|
related: [serves("civic")],
|
|
3711
3852
|
slug: "public-service-counter"
|
|
3712
3853
|
}
|
|
@@ -3723,14 +3864,14 @@ var CULTURE_SPACES = [
|
|
|
3723
3864
|
definition: "A raked or tiered volume holding an audience facing a stage or screen, where acoustics drive the surfaces.",
|
|
3724
3865
|
external: [aat2("300004394", "auditoriums", "exact")],
|
|
3725
3866
|
label: "Auditorium",
|
|
3726
|
-
provenance:
|
|
3867
|
+
provenance: MS_ROOM_PROGRAM,
|
|
3727
3868
|
slug: "auditorium"
|
|
3728
3869
|
},
|
|
3729
3870
|
{
|
|
3730
3871
|
definition: "A performance room taken whole: the house, the stage and the fly tower over it, read as one volume because they share an acoustic and a fire strategy.",
|
|
3731
3872
|
label: "Theatre",
|
|
3732
3873
|
note: "Deliberately not a kind of `auditorium`, and the containment runs the other way - the auditorium is the audience chamber INSIDE a theatre. That is a part-of relation and not an ISA edge, so it is carried in `related` where part-of belongs. No AAT mapping: every Getty `theaters` entry is a building or an institution, which is TYPOLOGY's business.",
|
|
3733
|
-
provenance:
|
|
3874
|
+
provenance: PROGRAM_SPACES,
|
|
3734
3875
|
related: [relatedTo("space.auditorium")],
|
|
3735
3876
|
slug: "theater"
|
|
3736
3877
|
},
|
|
@@ -3738,21 +3879,21 @@ var CULTURE_SPACES = [
|
|
|
3738
3879
|
definition: "The platform a performance is carried out on, visible to the audience; the floor takes scenery, trucking and dance, and nothing about it is specified for looking at.",
|
|
3739
3880
|
external: [aat2("300004751", "stages (performance spaces)", "exact")],
|
|
3740
3881
|
label: "Performance Stage",
|
|
3741
|
-
provenance:
|
|
3882
|
+
provenance: PROGRAM_SPACES,
|
|
3742
3883
|
slug: "performance-stage"
|
|
3743
3884
|
},
|
|
3744
3885
|
{
|
|
3745
3886
|
definition: "The working volume immediately behind and beside a stage, where scenery, cabling and waiting performers are held in the dark.",
|
|
3746
3887
|
external: [aat2("300252175", "backstages", "exact")],
|
|
3747
3888
|
label: "Backstage",
|
|
3748
|
-
provenance:
|
|
3889
|
+
provenance: PROGRAM_SPACES,
|
|
3749
3890
|
slug: "backstage"
|
|
3750
3891
|
},
|
|
3751
3892
|
{
|
|
3752
3893
|
definition: "The room performers wait and are received in before and after a show: soft, lit for faces, and the one room back of house specified for comfort.",
|
|
3753
3894
|
external: [aat2("300100118", "green rooms", "exact")],
|
|
3754
3895
|
label: "Green Room",
|
|
3755
|
-
provenance:
|
|
3896
|
+
provenance: PROGRAM_SPACES,
|
|
3756
3897
|
slug: "green-room"
|
|
3757
3898
|
},
|
|
3758
3899
|
{
|
|
@@ -3760,7 +3901,7 @@ var CULTURE_SPACES = [
|
|
|
3760
3901
|
external: [aat2("300240057", "galleries (display spaces)", "exact")],
|
|
3761
3902
|
label: "Gallery",
|
|
3762
3903
|
note: "`typology.gallery` is the building; this is the room in it. As with `restaurant` and `bar`, the bare id repeats across axes deliberately and the prefix disambiguates.",
|
|
3763
|
-
provenance:
|
|
3904
|
+
provenance: PROGRAM_SPACES,
|
|
3764
3905
|
slug: "gallery"
|
|
3765
3906
|
},
|
|
3766
3907
|
{
|
|
@@ -3768,7 +3909,7 @@ var CULTURE_SPACES = [
|
|
|
3768
3909
|
external: [aat2("300443548", "exhibition spaces", "close")],
|
|
3769
3910
|
label: "Exhibition Hall",
|
|
3770
3911
|
note: "Deliberately not a kind of `gallery`. A gallery is finished around a collection it keeps; an exhibition hall is a serviced shell whose whole value is that it is stripped and rebuilt several times a year. The finishes are opposites.",
|
|
3771
|
-
provenance:
|
|
3912
|
+
provenance: PROGRAM_SPACES,
|
|
3772
3913
|
slug: "exhibition-hall"
|
|
3773
3914
|
},
|
|
3774
3915
|
{
|
|
@@ -3794,7 +3935,7 @@ var DINING_SPACES = [
|
|
|
3794
3935
|
external: [aat2("300005182", "restaurants", "exact")],
|
|
3795
3936
|
label: "Restaurant",
|
|
3796
3937
|
note: "`typology.restaurant` is the premises and this is the room in it. The bare id appears on both axes deliberately; the axis prefix is what keeps them apart, per ADR 0001.",
|
|
3797
|
-
provenance:
|
|
3938
|
+
provenance: MS_ROOM_PROGRAM,
|
|
3798
3939
|
related: [serves("hospitality")],
|
|
3799
3940
|
seenAs: ["restaurant_dining_room"],
|
|
3800
3941
|
slug: "restaurant"
|
|
@@ -3808,13 +3949,13 @@ var DINING_SPACES = [
|
|
|
3808
3949
|
related: [serves("residential")],
|
|
3809
3950
|
seenAs: ["Dining Room"],
|
|
3810
3951
|
slug: "dining-room",
|
|
3811
|
-
usage:
|
|
3952
|
+
usage: schemeUsage("common")
|
|
3812
3953
|
},
|
|
3813
3954
|
{
|
|
3814
3955
|
definition: "An enclosed dining volume let or reserved as a whole, off a restaurant, club or hotel; the door that shuts is the point, and the party inside it is not sharing the room.",
|
|
3815
3956
|
label: "Private Dining",
|
|
3816
3957
|
note: "Deliberately not a kind of `restaurant`. `restaurant` is defined as the PUBLIC dining volume, and a private dining room is defined by not being public. Drawing the edge would make the parent's own boundary clause false of half its children.",
|
|
3817
|
-
provenance:
|
|
3958
|
+
provenance: PROGRAM_SPACES,
|
|
3818
3959
|
related: [serves("hospitality")],
|
|
3819
3960
|
slug: "private-dining"
|
|
3820
3961
|
},
|
|
@@ -3822,27 +3963,27 @@ var DINING_SPACES = [
|
|
|
3822
3963
|
definition: "A volume whose centre is a serving counter for drink, where people stand or perch as readily as they sit; the fitted counter itself is millwork, not this.",
|
|
3823
3964
|
label: "Bar",
|
|
3824
3965
|
note: "Three axes carry a `bar` and they are three different things: `space.bar` is the room, `typology.bar` is the premises, and `application.bar` is a piece of millwork. No AAT mapping is carried, because AAT's `taverns` (300005207) is scoped to 17th- to early 19th-century establishments and `bars` in AAT are medal ribbons and metal stock. Checked, not skipped.",
|
|
3825
|
-
provenance:
|
|
3966
|
+
provenance: PROGRAM_SPACES,
|
|
3826
3967
|
slug: "bar"
|
|
3827
3968
|
},
|
|
3828
3969
|
{
|
|
3829
3970
|
definition: "The working volume behind a bar counter, where the staff stand and the bottle display sits; separated from `bar` by which side of the counter it is on.",
|
|
3830
3971
|
label: "Back Bar",
|
|
3831
|
-
provenance:
|
|
3972
|
+
provenance: PROGRAM_SPACES,
|
|
3832
3973
|
slug: "back-bar"
|
|
3833
3974
|
},
|
|
3834
3975
|
{
|
|
3835
3976
|
definition: "A small eating and drinking volume with a limited menu, served at a counter or at tables, and occupied for a short sitting rather than a meal.",
|
|
3836
3977
|
external: [aat2("300005187", "coffee shops", "close")],
|
|
3837
3978
|
label: "Caf\xE9",
|
|
3838
|
-
provenance:
|
|
3979
|
+
provenance: PROGRAM_SPACES,
|
|
3839
3980
|
slug: "cafe"
|
|
3840
3981
|
},
|
|
3841
3982
|
{
|
|
3842
3983
|
broaderSlug: "cafe",
|
|
3843
3984
|
definition: "A caf\xE9 narrowed to coffee and led by its counter, where the machine is the focal point and the seating is secondary.",
|
|
3844
3985
|
label: "Coffee Bar",
|
|
3845
|
-
provenance:
|
|
3986
|
+
provenance: PROGRAM_SPACES,
|
|
3846
3987
|
slug: "coffee-bar"
|
|
3847
3988
|
},
|
|
3848
3989
|
{
|
|
@@ -3859,34 +4000,34 @@ var DINING_SPACES = [
|
|
|
3859
4000
|
],
|
|
3860
4001
|
label: "Cafeteria",
|
|
3861
4002
|
note: "Deliberately not a kind of `restaurant`. A school cafeteria is not the dining volume of a food business, which is what `restaurant` says. What they share is a servery and a seated hall, and shared parts do not make an ISA edge.",
|
|
3862
|
-
provenance:
|
|
4003
|
+
provenance: PROGRAM_SPACES,
|
|
3863
4004
|
related: [serves("workplace"), serves("education"), serves("healthcare")],
|
|
3864
4005
|
slug: "cafeteria"
|
|
3865
4006
|
},
|
|
3866
4007
|
{
|
|
3867
4008
|
definition: "A hall of independent food counters sharing one seated floor, where the seating belongs to the building and the kitchens do not.",
|
|
3868
4009
|
label: "Food Hall",
|
|
3869
|
-
provenance:
|
|
4010
|
+
provenance: PROGRAM_SPACES,
|
|
3870
4011
|
slug: "food-hall"
|
|
3871
4012
|
},
|
|
3872
4013
|
{
|
|
3873
4014
|
definition: "The run of fixed upholstered seating against a wall in an eating or drinking room, taken with the tables in front of it.",
|
|
3874
4015
|
label: "Banquette Zone",
|
|
3875
4016
|
note: "A furniture-defined zone rather than a room. It is here because the banquette is specified, upholstered, fire-rated and detailed as a package, and a scheme really does carry it as a named area on a plan.",
|
|
3876
|
-
provenance:
|
|
4017
|
+
provenance: PROGRAM_SPACES,
|
|
3877
4018
|
slug: "banquette-zone"
|
|
3878
4019
|
},
|
|
3879
4020
|
{
|
|
3880
4021
|
definition: "The area of a dining or working room organised around a single long shared table, where strangers sit together by design.",
|
|
3881
4022
|
label: "Communal Table",
|
|
3882
4023
|
note: "Names a piece of furniture and the volume around it, which is the weakest shape a term on this axis can have. Retained because the spine carries it and because the acoustic and lighting treatment above a communal table is genuinely its own specification. If it is ever split, the table belongs somewhere other than SPACE.",
|
|
3883
|
-
provenance:
|
|
4024
|
+
provenance: PROGRAM_SPACES,
|
|
3884
4025
|
slug: "communal-table"
|
|
3885
4026
|
},
|
|
3886
4027
|
{
|
|
3887
4028
|
definition: "The service volume where food is laid out to be taken by the person eating it, hot and cold; specified for spillage, queueing and standing wear.",
|
|
3888
4029
|
label: "Buffet Area",
|
|
3889
|
-
provenance:
|
|
4030
|
+
provenance: PROGRAM_SPACES,
|
|
3890
4031
|
slug: "buffet-area"
|
|
3891
4032
|
},
|
|
3892
4033
|
{
|
|
@@ -3894,24 +4035,24 @@ var DINING_SPACES = [
|
|
|
3894
4035
|
external: [aat2("300004514", "kitchens", "exact")],
|
|
3895
4036
|
label: "Kitchen",
|
|
3896
4037
|
note: "`application.kitchen` in the published APPLICATIONS axis is a room sitting inside a surface-use vocabulary, and is superseded by this term. As with `bathroom`, the edge is `related-to` rather than `suitable-for`, because the suitability claim runs from the material to the space and so belongs on the applications side.",
|
|
3897
|
-
provenance:
|
|
4038
|
+
provenance: MS_ROOM_PROGRAM,
|
|
3898
4039
|
related: [relatedTo("application.kitchen")],
|
|
3899
4040
|
seenAs: ["Kitchen"],
|
|
3900
4041
|
slug: "kitchen",
|
|
3901
|
-
usage:
|
|
4042
|
+
usage: schemeUsage("dominant")
|
|
3902
4043
|
},
|
|
3903
4044
|
{
|
|
3904
4045
|
broaderSlug: "kitchen",
|
|
3905
4046
|
definition: "A kitchen run as a production line rather than as a room in a home: stainless throughout, drained floor, extract-led, and specified against health regulation before appearance.",
|
|
3906
4047
|
label: "Commercial Kitchen",
|
|
3907
|
-
provenance:
|
|
4048
|
+
provenance: PROGRAM_SPACES,
|
|
3908
4049
|
slug: "commercial-kitchen"
|
|
3909
4050
|
},
|
|
3910
4051
|
{
|
|
3911
4052
|
broaderSlug: "commercial-kitchen",
|
|
3912
4053
|
definition: "A commercial kitchen deliberately open to the room it serves, so that it is finished on two standards at once - hygiene behind the pass, appearance in front of it.",
|
|
3913
4054
|
label: "Display Kitchen",
|
|
3914
|
-
provenance:
|
|
4055
|
+
provenance: PROGRAM_SPACES,
|
|
3915
4056
|
slug: "display-kitchen"
|
|
3916
4057
|
},
|
|
3917
4058
|
{
|
|
@@ -3919,7 +4060,7 @@ var DINING_SPACES = [
|
|
|
3919
4060
|
external: [aat2("300004499", "pantries", "exact")],
|
|
3920
4061
|
label: "Pantry",
|
|
3921
4062
|
note: "AAT's `larders` (300004498) was carried here at `close` in the 0.2 draft and has moved to the `larder` term, where it is `exact`. The id is not lost - it is filed against the concept it actually names.",
|
|
3922
|
-
provenance:
|
|
4063
|
+
provenance: MS_ROOM_PROGRAM,
|
|
3923
4064
|
related: [serves("residential")],
|
|
3924
4065
|
slug: "pantry"
|
|
3925
4066
|
},
|
|
@@ -3928,7 +4069,7 @@ var DINING_SPACES = [
|
|
|
3928
4069
|
definition: "The cold end of a pantry: an unheated, ventilated store for perishables, north-facing by tradition and stone-shelved. Every larder is a pantry; a warm dry-goods cupboard is not a larder.",
|
|
3929
4070
|
external: [aat2("300004498", "larders", "exact")],
|
|
3930
4071
|
label: "Larder",
|
|
3931
|
-
provenance:
|
|
4072
|
+
provenance: AUTHORED6,
|
|
3932
4073
|
slug: "larder"
|
|
3933
4074
|
},
|
|
3934
4075
|
{
|
|
@@ -3936,13 +4077,13 @@ var DINING_SPACES = [
|
|
|
3936
4077
|
external: [aat2("300004523", "sculleries", "exact")],
|
|
3937
4078
|
label: "Scullery",
|
|
3938
4079
|
note: "Deliberately not a kind of `kitchen`. The parent is defined by preparing and cooking food, and a scullery is defined by the cooking happening next door. In current British practice the word has been reclaimed for the working half of a two-part kitchen, which is the same room by the same test.",
|
|
3939
|
-
provenance:
|
|
4080
|
+
provenance: AUTHORED6,
|
|
3940
4081
|
slug: "scullery"
|
|
3941
4082
|
},
|
|
3942
4083
|
{
|
|
3943
4084
|
definition: "A conditioned volume for storing and showing wine in a hospitality setting, glazed to be looked into and often dined in; the domestic below-ground store is `wine_cellar`.",
|
|
3944
4085
|
label: "Wine Room",
|
|
3945
|
-
provenance:
|
|
4086
|
+
provenance: PROGRAM_SPACES,
|
|
3946
4087
|
related: [serves("hospitality")],
|
|
3947
4088
|
slug: "wine-room"
|
|
3948
4089
|
},
|
|
@@ -3950,7 +4091,7 @@ var DINING_SPACES = [
|
|
|
3950
4091
|
broaderSlug: "outdoor",
|
|
3951
4092
|
definition: "An exterior volume laid out for seated eating, with the service run, the shelter and the floor specified for it; a terrace with tables on it once a year is `terrace`.",
|
|
3952
4093
|
label: "Outdoor Dining",
|
|
3953
|
-
provenance:
|
|
4094
|
+
provenance: PROGRAM_SPACES,
|
|
3954
4095
|
slug: "outdoor-dining"
|
|
3955
4096
|
}
|
|
3956
4097
|
];
|
|
@@ -3961,7 +4102,7 @@ var DOMESTIC_SPACES = [
|
|
|
3961
4102
|
// The depth the spine does not have. `PROGRAM_SPACE_TYPES` is a commercial program vocabulary
|
|
3962
4103
|
// and carries fourteen residential values out of 172, which is why it cannot be used unaltered
|
|
3963
4104
|
// for the work this package is for. These are the rooms a British house has that no commercial
|
|
3964
|
-
// brief ever asks for, and
|
|
4105
|
+
// brief ever asks for, and a furnishings retailer's captured room schemes evidence the ones that carry a
|
|
3965
4106
|
// usage band. Two of them - `conservatory` and `orangery` - are glazed and are still interior
|
|
3966
4107
|
// rooms, which is why they are not under `outdoor`.
|
|
3967
4108
|
{
|
|
@@ -3976,25 +4117,25 @@ var DOMESTIC_SPACES = [
|
|
|
3976
4117
|
related: [serves("residential")],
|
|
3977
4118
|
seenAs: ["Laundry Room", "laundry_room"],
|
|
3978
4119
|
slug: "utility-room",
|
|
3979
|
-
usage:
|
|
4120
|
+
usage: schemeUsage("common")
|
|
3980
4121
|
},
|
|
3981
4122
|
{
|
|
3982
4123
|
altLabels: ["mudroom", "mud room"],
|
|
3983
4124
|
definition: "A transitional volume between outside and inside where wet outdoor clothing and footwear come off and are stored; distinguished from `entry` by being the working door rather than the front one.",
|
|
3984
4125
|
external: [aat2("300004281", "mud rooms", "exact")],
|
|
3985
4126
|
label: "Boot Room",
|
|
3986
|
-
note: "`Mudroom` and `Mud Room` are both listed under Seen in the wild because
|
|
4127
|
+
note: "`Mudroom` and `Mud Room` are both listed under Seen in the wild because the furnishings retailer spells it one way on the scheme side and the other on the product side. Neither spelling is wrong; both are observed, and a crosswalk that hid one could not clean the data. The spine's own `mudroom` joins them.",
|
|
3987
4128
|
provenance: EVIDENCED,
|
|
3988
4129
|
seenAs: ["Mudroom", "Mud Room", "mudroom"],
|
|
3989
4130
|
slug: "boot-room",
|
|
3990
|
-
usage:
|
|
4131
|
+
usage: schemeUsage("occasional")
|
|
3991
4132
|
},
|
|
3992
4133
|
{
|
|
3993
4134
|
definition: "A room near an entrance where outdoor coats, hats and bags are left for the length of a visit; storage for garments, with no sanitary fitting in it.",
|
|
3994
4135
|
external: [aat2("300004471", "cloakrooms", "exact")],
|
|
3995
4136
|
label: "Cloakroom",
|
|
3996
4137
|
note: 'In British domestic usage "cloakroom" means the downstairs lavatory, and that sense is recorded in `wc`\'s Seen in the wild. The id is given to the coat room because that is the sense AAT files under the word and the sense a public building means by it, and because `wc` already has a name of its own. Two live senses, one id each, and both reachable.',
|
|
3997
|
-
provenance:
|
|
4138
|
+
provenance: AUTHORED6,
|
|
3998
4139
|
slug: "cloakroom"
|
|
3999
4140
|
},
|
|
4000
4141
|
{
|
|
@@ -4005,7 +4146,7 @@ var DOMESTIC_SPACES = [
|
|
|
4005
4146
|
aat2("300004179", "solariums (building spaces)", "close")
|
|
4006
4147
|
],
|
|
4007
4148
|
label: "Conservatory",
|
|
4008
|
-
provenance:
|
|
4149
|
+
provenance: AUTHORED6,
|
|
4009
4150
|
related: [serves("residential")],
|
|
4010
4151
|
slug: "conservatory"
|
|
4011
4152
|
},
|
|
@@ -4014,7 +4155,7 @@ var DOMESTIC_SPACES = [
|
|
|
4014
4155
|
external: [aat2("300006804", "orangeries", "close")],
|
|
4015
4156
|
label: "Orangery",
|
|
4016
4157
|
note: "Deliberately not a kind of `conservatory`. The parent's test is a glazed roof, and an orangery's roof is solid but for its lantern - which is exactly why it holds heat and can be used in February when a conservatory cannot. AAT is `close` rather than `exact` for the opposite reason: Getty scopes orangeries historically, as heated greenhouses for overwintering citrus, and the term here is the modern room.",
|
|
4017
|
-
provenance:
|
|
4158
|
+
provenance: AUTHORED6,
|
|
4018
4159
|
related: [serves("residential")],
|
|
4019
4160
|
slug: "orangery"
|
|
4020
4161
|
},
|
|
@@ -4022,7 +4163,7 @@ var DOMESTIC_SPACES = [
|
|
|
4022
4163
|
definition: "The enclosed volume under a pitched roof above the top storey, whether floored for use or left for storage; the sloping ceiling is what makes it this rather than a room.",
|
|
4023
4164
|
external: [aat2("300004076", "attics (interior spaces)", "exact")],
|
|
4024
4165
|
label: "Attic",
|
|
4025
|
-
provenance:
|
|
4166
|
+
provenance: AUTHORED6,
|
|
4026
4167
|
slug: "attic"
|
|
4027
4168
|
},
|
|
4028
4169
|
{
|
|
@@ -4030,7 +4171,7 @@ var DOMESTIC_SPACES = [
|
|
|
4030
4171
|
external: [aat2("300004759", "cellars (storerooms)", "close")],
|
|
4031
4172
|
label: "Cellar",
|
|
4032
4173
|
note: "AAT is `close` rather than `exact` because Getty's scope note pushes utility and living uses over to `basements`, and the term here keeps the store sense only. This axis has no term for a converted habitable basement yet; that is a declared gap, and it should be one term rather than a widening of this one.",
|
|
4033
|
-
provenance:
|
|
4174
|
+
provenance: AUTHORED6,
|
|
4034
4175
|
related: [serves("residential")],
|
|
4035
4176
|
slug: "cellar"
|
|
4036
4177
|
},
|
|
@@ -4039,7 +4180,7 @@ var DOMESTIC_SPACES = [
|
|
|
4039
4180
|
definition: "A cellar given over to storing wine, held at a steady low temperature and high humidity, racked and dark. A conditioned wine store above ground is `wine_room`.",
|
|
4040
4181
|
external: [aat2("300004762", "wine cellars", "exact")],
|
|
4041
4182
|
label: "Wine Cellar",
|
|
4042
|
-
provenance:
|
|
4183
|
+
provenance: AUTHORED6,
|
|
4043
4184
|
slug: "wine-cellar"
|
|
4044
4185
|
},
|
|
4045
4186
|
{
|
|
@@ -4074,28 +4215,28 @@ var FITNESS_SPACES = [
|
|
|
4074
4215
|
broaderSlug: "gym",
|
|
4075
4216
|
definition: "The equipment floor of a gym: racks, machines and free weights on a floor built for the worst thing that can be dropped on it.",
|
|
4076
4217
|
label: "Fitness Floor",
|
|
4077
|
-
provenance:
|
|
4218
|
+
provenance: PROGRAM_SPACES,
|
|
4078
4219
|
slug: "fitness-floor"
|
|
4079
4220
|
},
|
|
4080
4221
|
{
|
|
4081
4222
|
definition: "A clear matted room for mat-based practice, quiet, warm and specified for bare feet rather than for impact.",
|
|
4082
4223
|
label: "Yoga Studio",
|
|
4083
4224
|
note: "Deliberately not a kind of `gym`. The parent turns on dropped and repeated impact loading and nothing is dropped in here; the floor build-up, the acoustic and the lighting all go the other way. Neighbours in a brief, opposites in a specification.",
|
|
4084
|
-
provenance:
|
|
4225
|
+
provenance: PROGRAM_SPACES,
|
|
4085
4226
|
slug: "yoga-studio"
|
|
4086
4227
|
},
|
|
4087
4228
|
{
|
|
4088
4229
|
definition: "A studio built around reformer machines, which are fixed, loaded and set out on a grid, so the floor is specified for anchorage rather than for impact.",
|
|
4089
4230
|
label: "Pilates Studio",
|
|
4090
4231
|
note: "Refused the `gym` edge for the same reason as `yoga_studio`, and kept separate from it because the fixed equipment changes the room: reformers are bolted or ballasted, and a yoga studio is deliberately empty.",
|
|
4091
|
-
provenance:
|
|
4232
|
+
provenance: PROGRAM_SPACES,
|
|
4092
4233
|
slug: "pilates-studio"
|
|
4093
4234
|
},
|
|
4094
4235
|
{
|
|
4095
4236
|
definition: "A small room held quiet and low-lit for prayer, meditation or simply stopping, with no fixed use imposed on it.",
|
|
4096
4237
|
external: [aat2("300266397", "meditation rooms", "exact")],
|
|
4097
4238
|
label: "Meditation Room",
|
|
4098
|
-
provenance:
|
|
4239
|
+
provenance: PROGRAM_SPACES,
|
|
4099
4240
|
slug: "meditation-room"
|
|
4100
4241
|
}
|
|
4101
4242
|
];
|
|
@@ -4116,11 +4257,11 @@ var GATHERING_SPACES = [
|
|
|
4116
4257
|
external: [aat2("300004435", "living rooms", "exact")],
|
|
4117
4258
|
label: "Living Room",
|
|
4118
4259
|
note: "The domestic half of the lounge / living-room pair. `lounge` is the correct consumer name for this room in British usage and is carried as another name for it; the term id `lounge` is held for the commercial homonym, because that is the sense both upstream dictionaries file it under. `living_area` - the sitting end of an open-plan flat - folds in here rather than becoming a term, since nothing about the surfaces changes when the walls come out.",
|
|
4119
|
-
provenance:
|
|
4260
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4120
4261
|
related: [serves("residential")],
|
|
4121
4262
|
seenAs: ["Living Room", "living_area"],
|
|
4122
4263
|
slug: "living-room",
|
|
4123
|
-
usage:
|
|
4264
|
+
usage: schemeUsage("common")
|
|
4124
4265
|
},
|
|
4125
4266
|
{
|
|
4126
4267
|
altLabels: ["den"],
|
|
@@ -4131,28 +4272,28 @@ var GATHERING_SPACES = [
|
|
|
4131
4272
|
aat2("300081958", "sitting rooms", "broad")
|
|
4132
4273
|
],
|
|
4133
4274
|
label: "Snug",
|
|
4134
|
-
provenance:
|
|
4275
|
+
provenance: AUTHORED6,
|
|
4135
4276
|
slug: "snug"
|
|
4136
4277
|
},
|
|
4137
4278
|
{
|
|
4138
4279
|
definition: "A soft-seated volume for waiting or informal use in a commercial setting; separated from `hospitality_lobby` by being sat in rather than passed through.",
|
|
4139
4280
|
external: [aat2("300004436", "lounges (sitting rooms)", "close")],
|
|
4140
4281
|
label: "Lounge",
|
|
4141
|
-
provenance:
|
|
4282
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4142
4283
|
slug: "lounge"
|
|
4143
4284
|
},
|
|
4144
4285
|
{
|
|
4145
4286
|
broaderSlug: "lounge",
|
|
4146
4287
|
definition: "A lounge whose use is restricted to a paying membership, specified upward accordingly: the restriction is the point, and it is what the finishes are answering.",
|
|
4147
4288
|
label: "Members' Lounge",
|
|
4148
|
-
provenance:
|
|
4289
|
+
provenance: PROGRAM_SPACES,
|
|
4149
4290
|
slug: "members-lounge"
|
|
4150
4291
|
},
|
|
4151
4292
|
{
|
|
4152
4293
|
broaderSlug: "lounge",
|
|
4153
4294
|
definition: "A shared lounge in a residential building, for the use of its tenants and their guests; domestic in feel and contract in specification.",
|
|
4154
4295
|
label: "Resident Lounge",
|
|
4155
|
-
provenance:
|
|
4296
|
+
provenance: PROGRAM_SPACES,
|
|
4156
4297
|
related: [serves("residential")],
|
|
4157
4298
|
slug: "resident-lounge"
|
|
4158
4299
|
},
|
|
@@ -4160,7 +4301,7 @@ var GATHERING_SPACES = [
|
|
|
4160
4301
|
broaderSlug: "lounge",
|
|
4161
4302
|
definition: "A lounge in a school or university given to students between classes, where the wear is heavy, constant and unsupervised.",
|
|
4162
4303
|
label: "Student Lounge",
|
|
4163
|
-
provenance:
|
|
4304
|
+
provenance: PROGRAM_SPACES,
|
|
4164
4305
|
related: [serves("education")],
|
|
4165
4306
|
slug: "student-lounge"
|
|
4166
4307
|
},
|
|
@@ -4168,14 +4309,14 @@ var GATHERING_SPACES = [
|
|
|
4168
4309
|
broaderSlug: "lounge",
|
|
4169
4310
|
definition: "The soft-seated end of a library or learning space, where reading happens off a chair rather than at a table; the tabled part of the same room is `reading_room`.",
|
|
4170
4311
|
label: "Library Lounge",
|
|
4171
|
-
provenance:
|
|
4312
|
+
provenance: PROGRAM_SPACES,
|
|
4172
4313
|
slug: "library-lounge"
|
|
4173
4314
|
},
|
|
4174
4315
|
{
|
|
4175
4316
|
broaderSlug: "lounge",
|
|
4176
4317
|
definition: "A lounge in a hospital or care setting where a patient's family waits, sits with them, or receives news; specified for long occupation under strain, and cleanable throughout.",
|
|
4177
4318
|
label: "Family Lounge",
|
|
4178
|
-
provenance:
|
|
4319
|
+
provenance: PROGRAM_SPACES,
|
|
4179
4320
|
related: [serves("healthcare")],
|
|
4180
4321
|
slug: "family-lounge"
|
|
4181
4322
|
},
|
|
@@ -4183,7 +4324,7 @@ var GATHERING_SPACES = [
|
|
|
4183
4324
|
broaderSlug: "lounge",
|
|
4184
4325
|
definition: "A lounge for clinical or hospitality staff to take a break out of sight of the people they serve; the being-out-of-sight is the requirement, not a side effect.",
|
|
4185
4326
|
label: "Staff Respite",
|
|
4186
|
-
provenance:
|
|
4327
|
+
provenance: PROGRAM_SPACES,
|
|
4187
4328
|
related: [serves("healthcare"), serves("hospitality")],
|
|
4188
4329
|
slug: "staff-respite"
|
|
4189
4330
|
},
|
|
@@ -4191,14 +4332,14 @@ var GATHERING_SPACES = [
|
|
|
4191
4332
|
broaderSlug: "lounge",
|
|
4192
4333
|
definition: "The lounge a spa or clinic guest occupies after a treatment, held quiet and warm; distinguished from `spa_treatment_room` by nothing being done to anyone in it.",
|
|
4193
4334
|
label: "Recovery Lounge",
|
|
4194
|
-
provenance:
|
|
4335
|
+
provenance: PROGRAM_SPACES,
|
|
4195
4336
|
slug: "recovery-lounge"
|
|
4196
4337
|
},
|
|
4197
4338
|
{
|
|
4198
4339
|
broaderSlug: "lounge",
|
|
4199
4340
|
definition: "Soft seating placed off a working floor for unscheduled conversation and short escapes from a desk; open to the floor, which is what separates it from `meeting_room`.",
|
|
4200
4341
|
label: "Breakout Area",
|
|
4201
|
-
provenance:
|
|
4342
|
+
provenance: PROGRAM_SPACES,
|
|
4202
4343
|
slug: "breakout-area"
|
|
4203
4344
|
},
|
|
4204
4345
|
{
|
|
@@ -4206,7 +4347,7 @@ var GATHERING_SPACES = [
|
|
|
4206
4347
|
definition: "A lounge on a roof, where the seating and the view are the point and the weather is a specification problem rather than a feature.",
|
|
4207
4348
|
label: "Roof Lounge",
|
|
4208
4349
|
note: "Filed under `lounge` rather than under `outdoor`, and only one of those can be the parent. The lounge-ness is what gets specified - the seating, the lighting, the way it is used - and being outdoors is a condition applied to it. The same call is made on `outdoor_lounge`.",
|
|
4209
|
-
provenance:
|
|
4350
|
+
provenance: PROGRAM_SPACES,
|
|
4210
4351
|
related: [relatedTo("space.roof-deck")],
|
|
4211
4352
|
slug: "roof-lounge"
|
|
4212
4353
|
},
|
|
@@ -4214,7 +4355,7 @@ var GATHERING_SPACES = [
|
|
|
4214
4355
|
broaderSlug: "lounge",
|
|
4215
4356
|
definition: "A furnished exterior sitting volume treated as a room: soft seating, lighting and a defined edge, specified against weather rather than against footfall.",
|
|
4216
4357
|
label: "Outdoor Lounge",
|
|
4217
|
-
provenance:
|
|
4358
|
+
provenance: PROGRAM_SPACES,
|
|
4218
4359
|
related: [relatedTo("space.outdoor")],
|
|
4219
4360
|
slug: "outdoor-lounge"
|
|
4220
4361
|
},
|
|
@@ -4222,14 +4363,14 @@ var GATHERING_SPACES = [
|
|
|
4222
4363
|
definition: "A shared amenity room in a residential or membership building for its occupants' own activities - games, parties, meetings - booked rather than dropped into.",
|
|
4223
4364
|
label: "Clubroom",
|
|
4224
4365
|
note: "Deliberately not a kind of `lounge`. A lounge is soft-seated and dropped into; a clubroom is booked, tabled, and expected to take a party. The two are neighbours in every brief and they are not the same room, which is why folding them would lose a real difference in floor build-up and acoustic treatment.",
|
|
4225
|
-
provenance:
|
|
4366
|
+
provenance: PROGRAM_SPACES,
|
|
4226
4367
|
slug: "clubroom"
|
|
4227
4368
|
},
|
|
4228
4369
|
{
|
|
4229
4370
|
definition: "The seating group gathered on a hearth, specified as a unit: the fire opening, its surround, the hearth in front of it and the furniture arranged at it.",
|
|
4230
4371
|
label: "Fireplace Area",
|
|
4231
4372
|
note: "A zone inside another room rather than a room, and deliberately not a child of `living_room` - it occurs in lobbies, lounges and bars as readily as in dwellings. The fire opening and chimneypiece themselves are `element.fireplace` and `element.chimneypiece`; this is the volume in front of them.",
|
|
4232
|
-
provenance:
|
|
4373
|
+
provenance: PROGRAM_SPACES,
|
|
4233
4374
|
related: [relatedTo("element.fireplace")],
|
|
4234
4375
|
slug: "fireplace-area"
|
|
4235
4376
|
},
|
|
@@ -4237,14 +4378,14 @@ var GATHERING_SPACES = [
|
|
|
4237
4378
|
definition: "A room given over to table games - pool, cards, table tennis - where the floor and the clearances are set by the tables in it.",
|
|
4238
4379
|
external: [aat2("300004452", "game rooms", "close")],
|
|
4239
4380
|
label: "Game Room",
|
|
4240
|
-
provenance:
|
|
4381
|
+
provenance: PROGRAM_SPACES,
|
|
4241
4382
|
slug: "game-room"
|
|
4242
4383
|
},
|
|
4243
4384
|
{
|
|
4244
4385
|
definition: "A domestic room built around a screen and a sound system, where the acoustic treatment and the ability to black it out drive every surface in it.",
|
|
4245
4386
|
external: [aat2("300179305", "media rooms", "exact")],
|
|
4246
4387
|
label: "Media Room",
|
|
4247
|
-
provenance:
|
|
4388
|
+
provenance: AUTHORED6,
|
|
4248
4389
|
related: [serves("residential")],
|
|
4249
4390
|
slug: "media-room"
|
|
4250
4391
|
},
|
|
@@ -4252,14 +4393,14 @@ var GATHERING_SPACES = [
|
|
|
4252
4393
|
definition: "A domestic room given to children's play and its storage, specified for spillage, impact and rearrangement; a bed in it makes it `nursery` or `bedroom` instead.",
|
|
4253
4394
|
external: [aat2("300004457", "playrooms", "exact")],
|
|
4254
4395
|
label: "Playroom",
|
|
4255
|
-
provenance:
|
|
4396
|
+
provenance: AUTHORED6,
|
|
4256
4397
|
related: [serves("residential")],
|
|
4257
4398
|
slug: "playroom"
|
|
4258
4399
|
},
|
|
4259
4400
|
{
|
|
4260
4401
|
definition: "A bookable room in a civic or residential building lent to whoever needs it - classes, meetings, parties - and therefore specified for no single use and all of them.",
|
|
4261
4402
|
label: "Community Room",
|
|
4262
|
-
provenance:
|
|
4403
|
+
provenance: PROGRAM_SPACES,
|
|
4263
4404
|
related: [serves("civic"), serves("residential")],
|
|
4264
4405
|
slug: "community-room"
|
|
4265
4406
|
}
|
|
@@ -4285,7 +4426,7 @@ var HEALTHCARE_SPACES = [
|
|
|
4285
4426
|
{
|
|
4286
4427
|
definition: "A single-patient consulting and examination volume inside a clinic or practice, with no overnight provision.",
|
|
4287
4428
|
label: "Exam Room",
|
|
4288
|
-
provenance:
|
|
4429
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4289
4430
|
related: [serves("healthcare")],
|
|
4290
4431
|
slug: "exam-room"
|
|
4291
4432
|
},
|
|
@@ -4295,7 +4436,7 @@ var HEALTHCARE_SPACES = [
|
|
|
4295
4436
|
external: [aat2("300411486", "surgeries (health facilities)", "exact")],
|
|
4296
4437
|
label: "Consult Room",
|
|
4297
4438
|
note: "See `consultation_room`, which is one character away and is the retail term. Getty's `surgeries (health facilities)` is the British sense of a GP's room and matches this exactly, which is a useful check that the term is real rather than a program-brief coinage.",
|
|
4298
|
-
provenance:
|
|
4439
|
+
provenance: PROGRAM_SPACES,
|
|
4299
4440
|
related: [serves("healthcare")],
|
|
4300
4441
|
slug: "consult-room"
|
|
4301
4442
|
},
|
|
@@ -4303,7 +4444,7 @@ var HEALTHCARE_SPACES = [
|
|
|
4303
4444
|
definition: "A clinical room for interventions done under local anaesthetic, cleaned and drained to a clinical standard but without an operating theatre's air pressure regime.",
|
|
4304
4445
|
label: "Procedure Room",
|
|
4305
4446
|
note: "Deliberately not a kind of `operating_room`. The parent turns on controlled air pressure and full asepsis, and the absence of both is what makes this a different room with a different cost. Grading these two together would be the most consequential wrong edge available on this axis.",
|
|
4306
|
-
provenance:
|
|
4447
|
+
provenance: PROGRAM_SPACES,
|
|
4307
4448
|
related: [serves("healthcare")],
|
|
4308
4449
|
slug: "procedure-room"
|
|
4309
4450
|
},
|
|
@@ -4312,21 +4453,21 @@ var HEALTHCARE_SPACES = [
|
|
|
4312
4453
|
definition: "A surgical volume held under controlled air pressure and full asepsis.",
|
|
4313
4454
|
external: [aat2("300004557", "operating rooms", "exact")],
|
|
4314
4455
|
label: "Operating Room",
|
|
4315
|
-
provenance:
|
|
4456
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4316
4457
|
related: [serves("healthcare")],
|
|
4317
4458
|
slug: "operating-room"
|
|
4318
4459
|
},
|
|
4319
4460
|
{
|
|
4320
4461
|
definition: "A room for rehabilitative or psychological therapy, where privacy, acoustic separation and a non-clinical feel are specified together against a cleanable substrate.",
|
|
4321
4462
|
label: "Therapy Room",
|
|
4322
|
-
provenance:
|
|
4463
|
+
provenance: PROGRAM_SPACES,
|
|
4323
4464
|
related: [serves("healthcare")],
|
|
4324
4465
|
slug: "therapy-room"
|
|
4325
4466
|
},
|
|
4326
4467
|
{
|
|
4327
4468
|
definition: "A room built around a scanner, where the shielding, the structural load and the control position determine the room before any finish is chosen.",
|
|
4328
4469
|
label: "Imaging Room",
|
|
4329
|
-
provenance:
|
|
4470
|
+
provenance: PROGRAM_SPACES,
|
|
4330
4471
|
related: [serves("healthcare")],
|
|
4331
4472
|
slug: "imaging-room"
|
|
4332
4473
|
},
|
|
@@ -4334,7 +4475,7 @@ var HEALTHCARE_SPACES = [
|
|
|
4334
4475
|
definition: "The staffed position a ward or department is run from, with sightlines to the rooms it watches; a counter, its back-of-house and the volume around them.",
|
|
4335
4476
|
external: [aat2("300082114", "nurses' stations", "exact")],
|
|
4336
4477
|
label: "Nurse Station",
|
|
4337
|
-
provenance:
|
|
4478
|
+
provenance: PROGRAM_SPACES,
|
|
4338
4479
|
related: [serves("healthcare")],
|
|
4339
4480
|
slug: "nurse-station"
|
|
4340
4481
|
},
|
|
@@ -4343,7 +4484,7 @@ var HEALTHCARE_SPACES = [
|
|
|
4343
4484
|
definition: "The waiting volume of a clinical department, specified for long occupation, infection control and people who would rather be elsewhere.",
|
|
4344
4485
|
external: [aat2("300004450", "waiting rooms", "close")],
|
|
4345
4486
|
label: "Waiting Room (Healthcare)",
|
|
4346
|
-
provenance:
|
|
4487
|
+
provenance: PROGRAM_SPACES,
|
|
4347
4488
|
related: [serves("healthcare")],
|
|
4348
4489
|
slug: "waiting-room-healthcare"
|
|
4349
4490
|
},
|
|
@@ -4352,7 +4493,7 @@ var HEALTHCARE_SPACES = [
|
|
|
4352
4493
|
external: [aat2("300419295", "pharmacies (health facilities )", "close")],
|
|
4353
4494
|
label: "Pharmacy",
|
|
4354
4495
|
note: "Getty publishes this preferred label with a stray space before the closing bracket. It is reproduced exactly as published, because a label edited for tidiness stops matching the source it is supposed to crosswalk to.",
|
|
4355
|
-
provenance:
|
|
4496
|
+
provenance: PROGRAM_SPACES,
|
|
4356
4497
|
related: [serves("healthcare")],
|
|
4357
4498
|
slug: "pharmacy"
|
|
4358
4499
|
},
|
|
@@ -4360,13 +4501,13 @@ var HEALTHCARE_SPACES = [
|
|
|
4360
4501
|
definition: "A room whose airborne particle count is controlled by design, with sealed, coved and shedding-free surfaces throughout and a gowning sequence to get into it.",
|
|
4361
4502
|
external: [aat2("300004509", "clean rooms", "exact")],
|
|
4362
4503
|
label: "Clean Room",
|
|
4363
|
-
provenance:
|
|
4504
|
+
provenance: PROGRAM_SPACES,
|
|
4364
4505
|
slug: "clean-room"
|
|
4365
4506
|
},
|
|
4366
4507
|
{
|
|
4367
4508
|
definition: "The room used equipment and waste are held in before they leave a clinical department, under negative pressure and specified for washdown throughout.",
|
|
4368
4509
|
label: "Soiled Room",
|
|
4369
|
-
provenance:
|
|
4510
|
+
provenance: PROGRAM_SPACES,
|
|
4370
4511
|
related: [serves("healthcare")],
|
|
4371
4512
|
slug: "soiled-room"
|
|
4372
4513
|
},
|
|
@@ -4391,28 +4532,28 @@ var LEARNING_SPACES = [
|
|
|
4391
4532
|
definition: "A taught volume holding a fixed cohort facing a single teaching position; a lecture theatre with raked seating is `auditorium`.",
|
|
4392
4533
|
external: [aat2("300004507", "classrooms", "exact")],
|
|
4393
4534
|
label: "Classroom",
|
|
4394
|
-
provenance:
|
|
4535
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4395
4536
|
slug: "classroom"
|
|
4396
4537
|
},
|
|
4397
4538
|
{
|
|
4398
4539
|
broaderSlug: "classroom",
|
|
4399
4540
|
definition: "A small taught room where the cohort sits round one shared table rather than in ranks; the table is shared, the teaching position is still single.",
|
|
4400
4541
|
label: "Seminar Room",
|
|
4401
|
-
provenance:
|
|
4542
|
+
provenance: PROGRAM_SPACES,
|
|
4402
4543
|
slug: "seminar-room"
|
|
4403
4544
|
},
|
|
4404
4545
|
{
|
|
4405
4546
|
broaderSlug: "classroom",
|
|
4406
4547
|
definition: "A taught room laid out for making as well as listening - benches, sinks, pinnable walls - where students spend the session working rather than seated at desks.",
|
|
4407
4548
|
label: "Studio Classroom",
|
|
4408
|
-
provenance:
|
|
4549
|
+
provenance: PROGRAM_SPACES,
|
|
4409
4550
|
slug: "studio-classroom"
|
|
4410
4551
|
},
|
|
4411
4552
|
{
|
|
4412
4553
|
broaderSlug: "classroom",
|
|
4413
4554
|
definition: "A taught room in a workplace rather than a school, re-set between courses and specified for adults, projection and a full day in a chair.",
|
|
4414
4555
|
label: "Training Room",
|
|
4415
|
-
provenance:
|
|
4556
|
+
provenance: PROGRAM_SPACES,
|
|
4416
4557
|
related: [serves("workplace")],
|
|
4417
4558
|
slug: "training-room"
|
|
4418
4559
|
},
|
|
@@ -4421,20 +4562,20 @@ var LEARNING_SPACES = [
|
|
|
4421
4562
|
definition: "A raked taught volume holding a large cohort facing one teaching position, where sightline and speech intelligibility set every surface.",
|
|
4422
4563
|
external: [aat2("300004409", "lecture halls", "exact")],
|
|
4423
4564
|
label: "Lecture Hall",
|
|
4424
|
-
provenance:
|
|
4565
|
+
provenance: PROGRAM_SPACES,
|
|
4425
4566
|
slug: "lecture-hall"
|
|
4426
4567
|
},
|
|
4427
4568
|
{
|
|
4428
4569
|
definition: "A volume for bench science, where surfaces answer to chemical attack and contamination control before anything else.",
|
|
4429
4570
|
external: [aat2("300007660", "laboratories (built works)", "close")],
|
|
4430
4571
|
label: "Lab",
|
|
4431
|
-
provenance:
|
|
4572
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4432
4573
|
slug: "lab"
|
|
4433
4574
|
},
|
|
4434
4575
|
{
|
|
4435
4576
|
definition: "An open, unbooked study volume in a school or university, mixing tables, soft seating and shelving, and used all day by people who are not being taught.",
|
|
4436
4577
|
label: "Learning Commons",
|
|
4437
|
-
provenance:
|
|
4578
|
+
provenance: PROGRAM_SPACES,
|
|
4438
4579
|
related: [serves("education")],
|
|
4439
4580
|
slug: "learning-commons"
|
|
4440
4581
|
},
|
|
@@ -4442,7 +4583,7 @@ var LEARNING_SPACES = [
|
|
|
4442
4583
|
definition: "A workshop volume with tools and machines available to whoever books it, specified for dust, swarf, noise and untrained hands.",
|
|
4443
4584
|
external: [aat2("300004531", "workshops (work spaces)", "close")],
|
|
4444
4585
|
label: "Maker Space",
|
|
4445
|
-
provenance:
|
|
4586
|
+
provenance: PROGRAM_SPACES,
|
|
4446
4587
|
slug: "maker-space"
|
|
4447
4588
|
},
|
|
4448
4589
|
{
|
|
@@ -4450,14 +4591,14 @@ var LEARNING_SPACES = [
|
|
|
4450
4591
|
external: [aat2("300004520", "music rooms", "close")],
|
|
4451
4592
|
label: "Music Room",
|
|
4452
4593
|
note: "Deliberately not a kind of `classroom`. Music rooms are played in, not lectured at, and the parent's test is a cohort facing a teaching position. AAT's match is `close` rather than `exact` for the mirror-image reason: Getty scopes music rooms domestically, \"as in houses and hotels\", and the school case is the one the spine means.",
|
|
4453
|
-
provenance:
|
|
4594
|
+
provenance: PROGRAM_SPACES,
|
|
4454
4595
|
slug: "music-room"
|
|
4455
4596
|
},
|
|
4456
4597
|
{
|
|
4457
4598
|
definition: "A room for making art, with sinks, storage for wet work and daylight from one consistent direction where the building allows it.",
|
|
4458
4599
|
label: "Art Room",
|
|
4459
4600
|
note: "Deliberately not a kind of `classroom`, on the same test as `music_room`: it is worked in rather than taught at. The taught case with benches is `studio_classroom`, which is a child of `classroom` because it keeps the single teaching position.",
|
|
4460
|
-
provenance:
|
|
4601
|
+
provenance: PROGRAM_SPACES,
|
|
4461
4602
|
slug: "art-room"
|
|
4462
4603
|
},
|
|
4463
4604
|
{
|
|
@@ -4472,14 +4613,14 @@ var LEARNING_SPACES = [
|
|
|
4472
4613
|
external: [aat2("300004434", "reading rooms", "exact")],
|
|
4473
4614
|
label: "Reading Room",
|
|
4474
4615
|
note: "Deliberately not a kind of `library`. The parent turns on shelved collections and a reading room need hold none - reading rooms sit in archives, clubs and members' buildings with nothing on the walls. What they share is silence, and silence is not subsumption.",
|
|
4475
|
-
provenance:
|
|
4616
|
+
provenance: PROGRAM_SPACES,
|
|
4476
4617
|
slug: "reading-room"
|
|
4477
4618
|
},
|
|
4478
4619
|
{
|
|
4479
4620
|
definition: "The room a collection of records is kept in, held at controlled temperature and humidity and entered under supervision.",
|
|
4480
4621
|
label: "Archive",
|
|
4481
4622
|
note: "Deliberately not a kind of `storage`. A store is specified to hold goods; an archive is specified to hold conditions - it has a tighter environmental brief than most occupied rooms in the same building, and filing it under storage would lose exactly that. No AAT mapping: Getty's `archives` entries are all institutions, buildings or groupings of records, and none of them is the room.",
|
|
4482
|
-
provenance:
|
|
4623
|
+
provenance: PROGRAM_SPACES,
|
|
4483
4624
|
slug: "archive"
|
|
4484
4625
|
}
|
|
4485
4626
|
];
|
|
@@ -4510,7 +4651,7 @@ var OUTDOOR_SPACES = [
|
|
|
4510
4651
|
provenance: MS_ROOM,
|
|
4511
4652
|
seenAs: ["Outdoor"],
|
|
4512
4653
|
slug: "outdoor",
|
|
4513
|
-
usage:
|
|
4654
|
+
usage: schemeUsage("occasional")
|
|
4514
4655
|
},
|
|
4515
4656
|
{
|
|
4516
4657
|
altLabels: ["yard"],
|
|
@@ -4518,7 +4659,7 @@ var OUTDOOR_SPACES = [
|
|
|
4518
4659
|
definition: "A planted exterior volume held by the plot, occupied for leisure rather than crossed to get somewhere.",
|
|
4519
4660
|
external: [aat2("300008090", "gardens (open spaces)", "exact")],
|
|
4520
4661
|
label: "Garden",
|
|
4521
|
-
provenance:
|
|
4662
|
+
provenance: PROGRAM_SPACES,
|
|
4522
4663
|
slug: "garden"
|
|
4523
4664
|
},
|
|
4524
4665
|
{
|
|
@@ -4531,7 +4672,7 @@ var OUTDOOR_SPACES = [
|
|
|
4531
4672
|
],
|
|
4532
4673
|
label: "Terrace",
|
|
4533
4674
|
note: "`patio` is carried as another name for it rather than standing as a sibling. The two words cover the same paved outdoor room, chiefly British against chiefly American, and the distinction sometimes claimed for them - raised against ground level - is not observed consistently enough in either corpus to specify against.",
|
|
4534
|
-
provenance:
|
|
4675
|
+
provenance: PROGRAM_SPACES,
|
|
4535
4676
|
seenAs: ["patio"],
|
|
4536
4677
|
slug: "terrace"
|
|
4537
4678
|
},
|
|
@@ -4540,7 +4681,7 @@ var OUTDOOR_SPACES = [
|
|
|
4540
4681
|
definition: "A cantilevered or recessed exterior volume above ground level, reached only from the room it serves.",
|
|
4541
4682
|
external: [aat2("300002588", "balconies", "exact")],
|
|
4542
4683
|
label: "Balcony",
|
|
4543
|
-
provenance:
|
|
4684
|
+
provenance: PROGRAM_SPACES,
|
|
4544
4685
|
slug: "balcony"
|
|
4545
4686
|
},
|
|
4546
4687
|
{
|
|
@@ -4548,14 +4689,14 @@ var OUTDOOR_SPACES = [
|
|
|
4548
4689
|
definition: "An uncovered exterior volume enclosed or nearly enclosed by the walls of a building, so that the building's own faces are what bound it.",
|
|
4549
4690
|
external: [aat2("300004095", "courtyards (uncovered spaces)", "exact")],
|
|
4550
4691
|
label: "Courtyard",
|
|
4551
|
-
provenance:
|
|
4692
|
+
provenance: PROGRAM_SPACES,
|
|
4552
4693
|
slug: "courtyard"
|
|
4553
4694
|
},
|
|
4554
4695
|
{
|
|
4555
4696
|
broaderSlug: "courtyard",
|
|
4556
4697
|
definition: "The courtyard a visitor arrives into and crosses on the way to the entrance, laid for vehicles or feet and specified as the building's first impression.",
|
|
4557
4698
|
label: "Arrival Courtyard",
|
|
4558
|
-
provenance:
|
|
4699
|
+
provenance: PROGRAM_SPACES,
|
|
4559
4700
|
slug: "arrival-courtyard"
|
|
4560
4701
|
},
|
|
4561
4702
|
{
|
|
@@ -4563,14 +4704,14 @@ var OUTDOOR_SPACES = [
|
|
|
4563
4704
|
definition: "An occupied deck on a roof, raised on pedestals over the waterproofing and specified for wind uplift, drainage and the load it may carry.",
|
|
4564
4705
|
external: [aat2("300004113", "decks (uncovered spaces)", "close")],
|
|
4565
4706
|
label: "Roof Deck",
|
|
4566
|
-
provenance:
|
|
4707
|
+
provenance: PROGRAM_SPACES,
|
|
4567
4708
|
slug: "roof-deck"
|
|
4568
4709
|
},
|
|
4569
4710
|
{
|
|
4570
4711
|
broaderSlug: "outdoor",
|
|
4571
4712
|
definition: "The walkable surround of a pool, permanently wet underfoot and specified for barefoot slip resistance before anything else.",
|
|
4572
4713
|
label: "Pool Deck",
|
|
4573
|
-
provenance:
|
|
4714
|
+
provenance: PROGRAM_SPACES,
|
|
4574
4715
|
slug: "pool-deck"
|
|
4575
4716
|
},
|
|
4576
4717
|
{
|
|
@@ -4578,7 +4719,7 @@ var OUTDOOR_SPACES = [
|
|
|
4578
4719
|
definition: "A hard-paved public open space held by a building or a group of them, crossed and stood about in, sized for crowds rather than for a household.",
|
|
4579
4720
|
external: [aat2("300008214", "plazas (squares)", "exact")],
|
|
4580
4721
|
label: "Plaza",
|
|
4581
|
-
provenance:
|
|
4722
|
+
provenance: PROGRAM_SPACES,
|
|
4582
4723
|
slug: "plaza"
|
|
4583
4724
|
},
|
|
4584
4725
|
{
|
|
@@ -4586,7 +4727,7 @@ var OUTDOOR_SPACES = [
|
|
|
4586
4727
|
definition: "The volume immediately against a building's external wall, read as the zone in which the facade build-up, its junctions and its ground condition are specified together.",
|
|
4587
4728
|
label: "Facade Zone",
|
|
4588
4729
|
note: "Names a set of surfaces rather than a volume, and fails the standing-in test the way `home_exterior` does. Retained because the spine carries it and because facade packages really are specified as one zone. If it is ever split, its contents belong in ELEMENT - `element.cladding`, `element.external-wall` - and not here.",
|
|
4589
|
-
provenance:
|
|
4730
|
+
provenance: PROGRAM_SPACES,
|
|
4590
4731
|
related: [relatedTo("element.cladding")],
|
|
4591
4732
|
slug: "facade-zone"
|
|
4592
4733
|
},
|
|
@@ -4595,14 +4736,14 @@ var OUTDOOR_SPACES = [
|
|
|
4595
4736
|
definition: "The sheltered volume under a projecting canopy at a building's edge, where people stand out of the rain without being inside.",
|
|
4596
4737
|
label: "Canopy Zone",
|
|
4597
4738
|
note: "The same shape of term as `facade_zone`: the canopy itself is a constructed element and this is the volume beneath it. Where the canopy shelters vehicles rather than people, the term is `porte_cochere`.",
|
|
4598
|
-
provenance:
|
|
4739
|
+
provenance: PROGRAM_SPACES,
|
|
4599
4740
|
slug: "canopy-zone"
|
|
4600
4741
|
},
|
|
4601
4742
|
{
|
|
4602
4743
|
broaderSlug: "outdoor",
|
|
4603
4744
|
definition: "The outside face of a dwelling read as one scheme: walls, roof, joinery and front door taken together as a single specifying surface.",
|
|
4604
4745
|
label: "Home Exterior",
|
|
4605
|
-
note: "The weakest term on this axis against the standing-in test. What it names is a set of surfaces rather than a bounded volume, and it is here because
|
|
4746
|
+
note: "The weakest term on this axis against the standing-in test. What it names is a set of surfaces rather than a bounded volume, and it is here because a retailer's product-side vocabulary carries it as a targetable space and its schemes are real. Read it as the outdoor volume immediately against the building, and if a cleaner split appears, split it.",
|
|
4606
4747
|
provenance: EVIDENCED,
|
|
4607
4748
|
related: [serves("residential")],
|
|
4608
4749
|
seenAs: ["Home Exterior"],
|
|
@@ -4622,7 +4763,7 @@ var RETAIL_SPACES = [
|
|
|
4622
4763
|
definition: "The customer-accessible selling volume of a shop; the stock and staff areas behind it are not this term.",
|
|
4623
4764
|
external: [aat2("300432409", "shops (retail spaces)", "close")],
|
|
4624
4765
|
label: "Sales Floor",
|
|
4625
|
-
provenance:
|
|
4766
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4626
4767
|
related: [serves("retail")],
|
|
4627
4768
|
slug: "sales-floor"
|
|
4628
4769
|
},
|
|
@@ -4630,14 +4771,14 @@ var RETAIL_SPACES = [
|
|
|
4630
4771
|
definition: "The volume given to showing goods rather than to selling them, in a shop, a showroom or an exhibition; fixtures, lighting and sightline are its whole specification.",
|
|
4631
4772
|
label: "Display Area",
|
|
4632
4773
|
note: "Deliberately not a kind of `sales_floor`. Display areas occur in museums, showrooms and lobbies where nothing is for sale, and the parent's definition turns on selling. A zone rather than a room in nearly every case.",
|
|
4633
|
-
provenance:
|
|
4774
|
+
provenance: PROGRAM_SPACES,
|
|
4634
4775
|
slug: "display-area"
|
|
4635
4776
|
},
|
|
4636
4777
|
{
|
|
4637
4778
|
definition: "A private changing cubicle off a `sales_floor`, entered to try clothing on.",
|
|
4638
4779
|
external: [aat2("300004369", "dressing rooms", "close")],
|
|
4639
4780
|
label: "Fitting Room",
|
|
4640
|
-
provenance:
|
|
4781
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4641
4782
|
related: [serves("retail")],
|
|
4642
4783
|
slug: "fitting-room"
|
|
4643
4784
|
},
|
|
@@ -4646,7 +4787,7 @@ var RETAIL_SPACES = [
|
|
|
4646
4787
|
definition: "The volume where a purchase is completed: the counter, the queue in front of it and the packing space behind it.",
|
|
4647
4788
|
label: "Checkout",
|
|
4648
4789
|
note: "`cash_wrap` is carried as another name for it. It is the American trade term for the same counter and its queue, and no part of the specification changes with the word.",
|
|
4649
|
-
provenance:
|
|
4790
|
+
provenance: PROGRAM_SPACES,
|
|
4650
4791
|
related: [serves("retail")],
|
|
4651
4792
|
seenAs: ["cash_wrap"],
|
|
4652
4793
|
slug: "checkout"
|
|
@@ -4654,14 +4795,14 @@ var RETAIL_SPACES = [
|
|
|
4654
4795
|
{
|
|
4655
4796
|
definition: "The volume where a customer collects an order placed elsewhere, held apart from `checkout` by no transaction happening in it.",
|
|
4656
4797
|
label: "Pickup Area",
|
|
4657
|
-
provenance:
|
|
4798
|
+
provenance: PROGRAM_SPACES,
|
|
4658
4799
|
related: [serves("retail")],
|
|
4659
4800
|
slug: "pickup-area"
|
|
4660
4801
|
},
|
|
4661
4802
|
{
|
|
4662
4803
|
definition: "The counter and volume where goods come back, specified for queueing, inspection and the temporary stacking of things nobody wants.",
|
|
4663
4804
|
label: "Returns Area",
|
|
4664
|
-
provenance:
|
|
4805
|
+
provenance: PROGRAM_SPACES,
|
|
4665
4806
|
related: [serves("retail")],
|
|
4666
4807
|
slug: "returns-area"
|
|
4667
4808
|
},
|
|
@@ -4669,7 +4810,7 @@ var RETAIL_SPACES = [
|
|
|
4669
4810
|
definition: "A seated room off a retail or showroom floor where a customer is advised at length - specification, fitting, finance - away from the floor's noise.",
|
|
4670
4811
|
label: "Consultation Room",
|
|
4671
4812
|
note: "One character from `consult_room`, and deliberately not folded into it. That one is clinical - a GP surgery, examined and prescribed in, with the cleaning and privacy requirements that implies. This one is commercial and is furnished like a small meeting room. Two ids this close is a real trap, and the answer is a note on each rather than a merge that would put retail joinery into a medical specification.",
|
|
4672
|
-
provenance:
|
|
4813
|
+
provenance: PROGRAM_SPACES,
|
|
4673
4814
|
related: [relatedTo("space.consult-room"), serves("retail")],
|
|
4674
4815
|
slug: "consultation-room"
|
|
4675
4816
|
},
|
|
@@ -4678,7 +4819,7 @@ var RETAIL_SPACES = [
|
|
|
4678
4819
|
external: [aat2("300004331", "showrooms", "broad")],
|
|
4679
4820
|
label: "Showroom Bay",
|
|
4680
4821
|
note: "Deliberately not a kind of `sales_floor`. A showroom bay sells nothing over a counter and often sits in a trade showroom where the public never goes; the parent's definition turns on being the selling volume of a shop.",
|
|
4681
|
-
provenance:
|
|
4822
|
+
provenance: PROGRAM_SPACES,
|
|
4682
4823
|
related: [serves("retail")],
|
|
4683
4824
|
slug: "showroom-bay"
|
|
4684
4825
|
},
|
|
@@ -4686,13 +4827,13 @@ var RETAIL_SPACES = [
|
|
|
4686
4827
|
definition: "A room of material samples arranged to be handled and compared, with the storage system and the daylight being the whole of its specification.",
|
|
4687
4828
|
label: "Sample Library",
|
|
4688
4829
|
note: 'Deliberately not a kind of `storage`. It is a browsing room, not a store: things are compared in it under controlled light, which is the opposite of the parent\'s "holding" test. The nearest neighbour is `library`, and it is not that either, because nothing is read in it.',
|
|
4689
|
-
provenance:
|
|
4830
|
+
provenance: PROGRAM_SPACES,
|
|
4690
4831
|
slug: "sample-library"
|
|
4691
4832
|
},
|
|
4692
4833
|
{
|
|
4693
4834
|
definition: "The part of a retail floor that is re-dressed on a cycle - window backs, feature tables, campaign walls - and specified so that it can be stripped and rebuilt without damage.",
|
|
4694
4835
|
label: "Visual Merchandising Zone",
|
|
4695
|
-
provenance:
|
|
4836
|
+
provenance: PROGRAM_SPACES,
|
|
4696
4837
|
related: [serves("retail")],
|
|
4697
4838
|
slug: "visual-merchandising-zone"
|
|
4698
4839
|
},
|
|
@@ -4700,7 +4841,7 @@ var RETAIL_SPACES = [
|
|
|
4700
4841
|
broaderSlug: "storage",
|
|
4701
4842
|
definition: "The retail store behind the sales floor, holding stock for the floor in front of it; racked, unfinished and sized by delivery rather than by display.",
|
|
4702
4843
|
label: "Stock Room",
|
|
4703
|
-
provenance:
|
|
4844
|
+
provenance: PROGRAM_SPACES,
|
|
4704
4845
|
related: [serves("retail")],
|
|
4705
4846
|
slug: "stock-room"
|
|
4706
4847
|
},
|
|
@@ -4708,7 +4849,7 @@ var RETAIL_SPACES = [
|
|
|
4708
4849
|
definition: "Everything in a shop the customer never sees, taken as one zone: staff, stock handling, waste and plant behind the back-of-house door.",
|
|
4709
4850
|
label: "Back of House (Retail)",
|
|
4710
4851
|
note: "A grouping rather than a room, and the only term on the axis that names a side of a line instead of a volume. It is retained because retail briefs are genuinely written in these terms - a front-of-house and a back-of-house budget - and because dropping it would leave the spine unable to round-trip.",
|
|
4711
|
-
provenance:
|
|
4852
|
+
provenance: PROGRAM_SPACES,
|
|
4712
4853
|
related: [serves("retail")],
|
|
4713
4854
|
slug: "back-of-house-retail"
|
|
4714
4855
|
}
|
|
@@ -4726,18 +4867,18 @@ var SANITARY_SPACES = [
|
|
|
4726
4867
|
external: [aat2("300004197", "bathrooms", "exact")],
|
|
4727
4868
|
label: "Bathroom",
|
|
4728
4869
|
note: "`application.bath` in the published APPLICATIONS axis is a room sitting inside a surface-use vocabulary, and is superseded by this term. The edge here is `related-to` and not `suitable-for` on purpose: `suitable-for` runs from a material-suitability claim TO a space, so the correct `suitable-for` edge points the other way and belongs on the applications side, alongside the deprecation.",
|
|
4729
|
-
provenance:
|
|
4870
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4730
4871
|
related: [relatedTo("application.bath")],
|
|
4731
4872
|
seenAs: ["Bathroom"],
|
|
4732
4873
|
slug: "bathroom",
|
|
4733
|
-
usage:
|
|
4874
|
+
usage: schemeUsage("dominant")
|
|
4734
4875
|
},
|
|
4735
4876
|
{
|
|
4736
4877
|
altLabels: ["ensuite", "en-suite bathroom"],
|
|
4737
4878
|
broaderSlug: "bathroom",
|
|
4738
4879
|
definition: "A bathroom reached only through the bedroom it serves, and therefore private to whoever is sleeping there; the same room off a corridor is `bathroom`.",
|
|
4739
4880
|
label: "En Suite",
|
|
4740
|
-
provenance:
|
|
4881
|
+
provenance: AUTHORED6,
|
|
4741
4882
|
slug: "en-suite"
|
|
4742
4883
|
},
|
|
4743
4884
|
{
|
|
@@ -4746,7 +4887,7 @@ var SANITARY_SPACES = [
|
|
|
4746
4887
|
external: [aat2("300081124", "lavatories (rooms)", "exact")],
|
|
4747
4888
|
label: "Cloakroom / WC",
|
|
4748
4889
|
note: "Deliberately not a kind of `bathroom`. In American usage a WC is a bathroom and the edge would be clean; in British usage it is not, and the whole point of the term is the absence of bathing provision. Since the difference is exactly what a specifier needs to see, the two terms sit side by side rather than one inside the other. `cloakroom` was an carried as another name here in the 0.2 draft and is now a term of its own for the coat room, on Getty's reading; the British domestic sense meaning this room moves to Seen in the wild, where observed but non-canonical labels belong. The label is left alone so the published id keeps its name.",
|
|
4749
|
-
provenance:
|
|
4890
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4750
4891
|
seenAs: ["downstairs loo", "half bath", "cloakroom", "powder_room"],
|
|
4751
4892
|
slug: "wc"
|
|
4752
4893
|
},
|
|
@@ -4755,28 +4896,28 @@ var SANITARY_SPACES = [
|
|
|
4755
4896
|
external: [aat2("300004202", "rest rooms", "exact")],
|
|
4756
4897
|
label: "Restroom",
|
|
4757
4898
|
note: "Deliberately not a kind of `wc`, despite the shared absence of a bath. `wc` is a single-fixture domestic room entered by one person at a time; a restroom is a shared public room with cubicles, and the two carry different fire, access and cleaning specifications end to end.",
|
|
4758
|
-
provenance:
|
|
4899
|
+
provenance: PROGRAM_SPACES,
|
|
4759
4900
|
slug: "restroom"
|
|
4760
4901
|
},
|
|
4761
4902
|
{
|
|
4762
4903
|
broaderSlug: "restroom",
|
|
4763
4904
|
definition: "A restroom not divided by gender, entered by anyone; usually a run of full-height individual cubicles off a shared basin lobby.",
|
|
4764
4905
|
label: "All-Gender Restroom",
|
|
4765
|
-
provenance:
|
|
4906
|
+
provenance: PROGRAM_SPACES,
|
|
4766
4907
|
slug: "all-gender-restroom"
|
|
4767
4908
|
},
|
|
4768
4909
|
{
|
|
4769
4910
|
broaderSlug: "restroom",
|
|
4770
4911
|
definition: "A restroom sized and fitted for an adult attending a child or a dependant: one lockable room, a changing surface, and space to turn a pushchair.",
|
|
4771
4912
|
label: "Family Restroom",
|
|
4772
|
-
provenance:
|
|
4913
|
+
provenance: PROGRAM_SPACES,
|
|
4773
4914
|
slug: "family-restroom"
|
|
4774
4915
|
},
|
|
4775
4916
|
{
|
|
4776
4917
|
definition: "A room where people change clothes and store them while they do something else - swim, train, work a shift - with lockers, benches and usually showers.",
|
|
4777
4918
|
external: [aat2("300004120", "locker rooms", "exact")],
|
|
4778
4919
|
label: "Changing Room",
|
|
4779
|
-
provenance:
|
|
4920
|
+
provenance: PROGRAM_SPACES,
|
|
4780
4921
|
seenAs: ["locker_room"],
|
|
4781
4922
|
slug: "changing-room"
|
|
4782
4923
|
},
|
|
@@ -4784,7 +4925,7 @@ var SANITARY_SPACES = [
|
|
|
4784
4925
|
definition: "A bank of lockers on a working floor with the volume in front of it, where staff drop their belongings without changing; a changing room without the changing.",
|
|
4785
4926
|
label: "Locker Area",
|
|
4786
4927
|
note: "Kept apart from `changing_room` rather than folded into it, because the spine files them in different sectors and the difference is real: this one has no showers, no benching and no privacy requirement, and it sits in the open.",
|
|
4787
|
-
provenance:
|
|
4928
|
+
provenance: PROGRAM_SPACES,
|
|
4788
4929
|
slug: "locker-area"
|
|
4789
4930
|
},
|
|
4790
4931
|
{
|
|
@@ -4798,7 +4939,7 @@ var SANITARY_SPACES = [
|
|
|
4798
4939
|
definition: "The hall containing a swimming pool and its surround, where chlorine, condensation and wet feet reach every surface in the room including the ceiling.",
|
|
4799
4940
|
external: [aat2("300007376", "swimming pools", "exact")],
|
|
4800
4941
|
label: "Pool",
|
|
4801
|
-
provenance:
|
|
4942
|
+
provenance: PROGRAM_SPACES,
|
|
4802
4943
|
slug: "pool"
|
|
4803
4944
|
},
|
|
4804
4945
|
{
|
|
@@ -4806,7 +4947,7 @@ var SANITARY_SPACES = [
|
|
|
4806
4947
|
definition: "A sealed room held at high humidity and body temperature, tiled or moulded throughout because condensation runs continuously down every surface in it.",
|
|
4807
4948
|
external: [aat2("300004240", "steam rooms", "exact")],
|
|
4808
4949
|
label: "Steam Room",
|
|
4809
|
-
provenance:
|
|
4950
|
+
provenance: PROGRAM_SPACES,
|
|
4810
4951
|
slug: "steam-room"
|
|
4811
4952
|
},
|
|
4812
4953
|
{
|
|
@@ -4814,27 +4955,27 @@ var SANITARY_SPACES = [
|
|
|
4814
4955
|
external: [aat2("300004235", "saunas (spaces)", "exact")],
|
|
4815
4956
|
label: "Sauna",
|
|
4816
4957
|
note: "Deliberately not a kind of `spa_pool`, whose definition turns on standing humidity. A sauna is the dry case, and the whole material consequence runs the other way: cedar and aspen where a steam room takes tile. Filing it under the wet parent would make the parent's own boundary clause false.",
|
|
4817
|
-
provenance:
|
|
4958
|
+
provenance: PROGRAM_SPACES,
|
|
4818
4959
|
slug: "sauna"
|
|
4819
4960
|
},
|
|
4820
4961
|
{
|
|
4821
4962
|
definition: "A single-client room for massage and hands-on treatment, kept warm, dim and quiet; dry, which is what separates it from the wet rooms it sits among.",
|
|
4822
4963
|
label: "Spa Treatment Room",
|
|
4823
4964
|
note: "Deliberately not a kind of `spa_pool`, for the same reason as `sauna`: it is a dry room in a wet suite. Its nearest specification neighbour is `therapy_room`, not `pool`.",
|
|
4824
|
-
provenance:
|
|
4965
|
+
provenance: PROGRAM_SPACES,
|
|
4825
4966
|
slug: "spa-treatment-room"
|
|
4826
4967
|
},
|
|
4827
4968
|
{
|
|
4828
4969
|
definition: "The working position of a hairdresser or beautician - chair, mirror, backwash and the volume around them - repeated along a salon floor.",
|
|
4829
4970
|
label: "Salon Station",
|
|
4830
4971
|
note: "A furniture-defined zone, and one of the few that is genuinely repeated rather than singular: a salon is specified as n stations plus circulation. Kept for that reason.",
|
|
4831
|
-
provenance:
|
|
4972
|
+
provenance: PROGRAM_SPACES,
|
|
4832
4973
|
slug: "salon-station"
|
|
4833
4974
|
},
|
|
4834
4975
|
{
|
|
4835
4976
|
definition: "A room for washing and grooming animals in a residential or retail building, drained and tanked like a shower room and specified for claws as well as water.",
|
|
4836
4977
|
label: "Pet Spa",
|
|
4837
|
-
provenance:
|
|
4978
|
+
provenance: PROGRAM_SPACES,
|
|
4838
4979
|
related: [serves("residential"), serves("retail")],
|
|
4839
4980
|
slug: "pet-spa"
|
|
4840
4981
|
}
|
|
@@ -4852,7 +4993,7 @@ var SERVICE_SPACES = [
|
|
|
4852
4993
|
definition: "A back-of-house volume given over to holding goods until they are wanted, racked or stacked, and entered to put something down or pick something up.",
|
|
4853
4994
|
external: [aat2("300004479", "storerooms", "exact")],
|
|
4854
4995
|
label: "Storage",
|
|
4855
|
-
provenance:
|
|
4996
|
+
provenance: PROGRAM_SPACES,
|
|
4856
4997
|
slug: "storage"
|
|
4857
4998
|
},
|
|
4858
4999
|
{
|
|
@@ -4864,7 +5005,7 @@ var SERVICE_SPACES = [
|
|
|
4864
5005
|
aat2("300004479", "storerooms", "close")
|
|
4865
5006
|
],
|
|
4866
5007
|
label: "Closet & Storage",
|
|
4867
|
-
note: "Overlaps `storage` heavily and is kept because the two dictionaries mean different things by it: this is
|
|
5008
|
+
note: "Overlaps `storage` heavily and is kept because the two dictionaries mean different things by it: this is the furnishings retailer's consumer-facing capture value, room-scale and domestic, and `storage` is the program type, any sector and any size. The ISA edge holds - every closet is a store - so the overlap is expressed as a hierarchy rather than as a duplicate.",
|
|
4868
5009
|
provenance: EVIDENCED,
|
|
4869
5010
|
related: [serves("residential")],
|
|
4870
5011
|
seenAs: ["Closet & Storage", "closet"],
|
|
@@ -4874,21 +5015,21 @@ var SERVICE_SPACES = [
|
|
|
4874
5015
|
broaderSlug: "storage",
|
|
4875
5016
|
definition: "The cleaner's store: a small room holding equipment, consumables and a slop sink, tanked at low level and ventilated.",
|
|
4876
5017
|
label: "Janitor's Closet",
|
|
4877
|
-
provenance:
|
|
5018
|
+
provenance: PROGRAM_SPACES,
|
|
4878
5019
|
slug: "janitor-closet"
|
|
4879
5020
|
},
|
|
4880
5021
|
{
|
|
4881
5022
|
broaderSlug: "storage",
|
|
4882
5023
|
definition: "A secure room for storing bicycles, racked or hung, with the floor and the walls specified for wet tyres and pedal strikes.",
|
|
4883
5024
|
label: "Bike Room",
|
|
4884
|
-
provenance:
|
|
5025
|
+
provenance: PROGRAM_SPACES,
|
|
4885
5026
|
slug: "bike-room"
|
|
4886
5027
|
},
|
|
4887
5028
|
{
|
|
4888
5029
|
broaderSlug: "storage",
|
|
4889
5030
|
definition: "The unstaffed parcel room of a residential building: lockers and shelving, entered by residents to collect deliveries and by couriers to leave them.",
|
|
4890
5031
|
label: "Mail & Package Room",
|
|
4891
|
-
provenance:
|
|
5032
|
+
provenance: PROGRAM_SPACES,
|
|
4892
5033
|
related: [serves("residential")],
|
|
4893
5034
|
slug: "mail-package-room"
|
|
4894
5035
|
},
|
|
@@ -4896,14 +5037,14 @@ var SERVICE_SPACES = [
|
|
|
4896
5037
|
definition: "The room holding a building's heating, cooling and water plant, sized by the equipment and the access route needed to replace it.",
|
|
4897
5038
|
external: [aat2("300004527", "boiler rooms", "close")],
|
|
4898
5039
|
label: "Mechanical Room",
|
|
4899
|
-
provenance:
|
|
5040
|
+
provenance: PROGRAM_SPACES,
|
|
4900
5041
|
slug: "mechanical-room"
|
|
4901
5042
|
},
|
|
4902
5043
|
{
|
|
4903
5044
|
definition: "The room holding a building's incoming supply, switchgear and distribution boards, entered only by competent persons and kept clear by regulation.",
|
|
4904
5045
|
label: "Electrical Room",
|
|
4905
5046
|
note: "Deliberately not a kind of `mechanical_room`. Switchgear is not a kind of mechanical plant, the two rooms are kept apart by regulation for exactly that reason, and their clearances, fire compartmentation and access rules are different.",
|
|
4906
|
-
provenance:
|
|
5047
|
+
provenance: PROGRAM_SPACES,
|
|
4907
5048
|
slug: "electrical-room"
|
|
4908
5049
|
},
|
|
4909
5050
|
{
|
|
@@ -4911,21 +5052,21 @@ var SERVICE_SPACES = [
|
|
|
4911
5052
|
external: [aat2("300005153", "laundries (businesses)", "close")],
|
|
4912
5053
|
label: "Laundry",
|
|
4913
5054
|
note: "Held apart from `utility_room`, which is the domestic room. The spine carries both, in different sectors, and folding them would put a commercial extract regime into somebody's back kitchen.",
|
|
4914
|
-
provenance:
|
|
5055
|
+
provenance: PROGRAM_SPACES,
|
|
4915
5056
|
slug: "laundry"
|
|
4916
5057
|
},
|
|
4917
5058
|
{
|
|
4918
5059
|
definition: "The room a building's waste and recycling is held in between collections, drained, ventilated and washable to the ceiling.",
|
|
4919
5060
|
label: "Trash Room",
|
|
4920
5061
|
note: "Deliberately not a kind of `storage`. What is held here is being got rid of, not kept for later, and the room is specified against smell, vermin and washdown rather than against racking loads. It is the hygiene brief that separates them.",
|
|
4921
|
-
provenance:
|
|
5062
|
+
provenance: PROGRAM_SPACES,
|
|
4922
5063
|
slug: "trash-room"
|
|
4923
5064
|
},
|
|
4924
5065
|
{
|
|
4925
5066
|
definition: "The volume where goods are taken on and off vehicles, at vehicle-bed height, and specified for wheel loads, impact and weather at an open edge.",
|
|
4926
5067
|
external: [aat2("300004279", "loading docks", "exact")],
|
|
4927
5068
|
label: "Loading Dock",
|
|
4928
|
-
provenance:
|
|
5069
|
+
provenance: PROGRAM_SPACES,
|
|
4929
5070
|
slug: "loading-dock"
|
|
4930
5071
|
}
|
|
4931
5072
|
];
|
|
@@ -4942,18 +5083,18 @@ var SLEEPING_SPACES = [
|
|
|
4942
5083
|
definition: "A private sleeping volume in a dwelling.",
|
|
4943
5084
|
external: [aat2("300004364", "bedrooms", "exact")],
|
|
4944
5085
|
label: "Bedroom",
|
|
4945
|
-
provenance:
|
|
5086
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4946
5087
|
related: [serves("residential")],
|
|
4947
5088
|
seenAs: ["Bedroom"],
|
|
4948
5089
|
slug: "bedroom",
|
|
4949
|
-
usage:
|
|
5090
|
+
usage: schemeUsage("common")
|
|
4950
5091
|
},
|
|
4951
5092
|
{
|
|
4952
5093
|
altLabels: ["master bedroom", "principal suite"],
|
|
4953
5094
|
broaderSlug: "bedroom",
|
|
4954
5095
|
definition: "The largest bedroom of a dwelling, held by whoever runs the household, and normally the one with the `en_suite` and the `dressing_room` attached to it.",
|
|
4955
5096
|
label: "Principal Bedroom",
|
|
4956
|
-
provenance:
|
|
5097
|
+
provenance: AUTHORED6,
|
|
4957
5098
|
slug: "principal-bedroom"
|
|
4958
5099
|
},
|
|
4959
5100
|
{
|
|
@@ -4963,14 +5104,14 @@ var SLEEPING_SPACES = [
|
|
|
4963
5104
|
external: [aat2("300248355", "guest rooms", "exact")],
|
|
4964
5105
|
label: "Guest Bedroom",
|
|
4965
5106
|
note: "AAT 300248355 is `exact` here and `related` on `hotel_room`, and the split is the reason that downgrade happened. Getty's scope note reads: rooms in DWELLINGS set aside for temporary use by guests and not regularly used by household members. That is this term precisely, and it is not a let hotel bedroom at all.",
|
|
4966
|
-
provenance:
|
|
5107
|
+
provenance: AUTHORED6,
|
|
4967
5108
|
slug: "guest-bedroom"
|
|
4968
5109
|
},
|
|
4969
5110
|
{
|
|
4970
5111
|
broaderSlug: "bedroom",
|
|
4971
5112
|
definition: "The smallest bedroom in a dwelling, too small to take a double bed and a route past it, and so used for a single, a desk or storage by turns.",
|
|
4972
5113
|
label: "Box Room",
|
|
4973
|
-
provenance:
|
|
5114
|
+
provenance: AUTHORED6,
|
|
4974
5115
|
slug: "box-room"
|
|
4975
5116
|
},
|
|
4976
5117
|
{
|
|
@@ -4981,7 +5122,7 @@ var SLEEPING_SPACES = [
|
|
|
4981
5122
|
],
|
|
4982
5123
|
label: "Nursery",
|
|
4983
5124
|
note: 'Deliberately not a kind of `bedroom`, on Getty\'s own evidence: AAT scopes a nursery as serving "as a bedroom or playroom", and AAT mints `night nurseries` separately for the sleeping-only case. If not every nursery is a bedroom, the ISA test fails, and it does. The nursery school is a building and belongs to TYPOLOGY, not here.',
|
|
4984
|
-
provenance:
|
|
5125
|
+
provenance: AUTHORED6,
|
|
4985
5126
|
slug: "nursery"
|
|
4986
5127
|
},
|
|
4987
5128
|
{
|
|
@@ -4995,7 +5136,7 @@ var SLEEPING_SPACES = [
|
|
|
4995
5136
|
// for a hotel bedroom at all - which is the same gap this axis exists to fill, showing up in
|
|
4996
5137
|
// the world's best art-and-architecture thesaurus.
|
|
4997
5138
|
note: "Deliberately not a kind of `bedroom`. A hotel room is a bedroom plus its bathroom, desk and wardrobe let as one unit, and its surfaces answer to contract fire, cleaning and wear standards a domestic bedroom never sees. Subsuming it would make every bedroom query return hospitality specifications.",
|
|
4998
|
-
provenance:
|
|
5139
|
+
provenance: MS_ROOM_PROGRAM,
|
|
4999
5140
|
related: [serves("hospitality")],
|
|
5000
5141
|
seenAs: ["guestroom"],
|
|
5001
5142
|
slug: "hotel-room"
|
|
@@ -5005,7 +5146,7 @@ var SLEEPING_SPACES = [
|
|
|
5005
5146
|
definition: "A hotel room let as a run of connected rooms occupied as one unit, with a sitting room separate from the sleeping room.",
|
|
5006
5147
|
external: [aat2("300004050", "suites (rooms)", "exact")],
|
|
5007
5148
|
label: "Suite",
|
|
5008
|
-
provenance:
|
|
5149
|
+
provenance: PROGRAM_SPACES,
|
|
5009
5150
|
slug: "suite"
|
|
5010
5151
|
},
|
|
5011
5152
|
{
|
|
@@ -5013,7 +5154,7 @@ var SLEEPING_SPACES = [
|
|
|
5013
5154
|
external: [aat2("300081956", "dormitories (rooms)", "close")],
|
|
5014
5155
|
label: "Dormitory Room",
|
|
5015
5156
|
note: "Deliberately not a kind of `bedroom`. It fails the parent on both clauses: it is not in a dwelling, and in its shared form it is not private. The AAT match is `close` rather than `exact` because Getty scopes dormitories as rooms containing a NUMBER of beds, and a modern study bedroom is single.",
|
|
5016
|
-
provenance:
|
|
5157
|
+
provenance: PROGRAM_SPACES,
|
|
5017
5158
|
related: [serves("residential")],
|
|
5018
5159
|
slug: "dormitory-room"
|
|
5019
5160
|
},
|
|
@@ -5022,7 +5163,7 @@ var SLEEPING_SPACES = [
|
|
|
5022
5163
|
external: [aat2("300004543", "hospital wards", "close")],
|
|
5023
5164
|
label: "Patient Room",
|
|
5024
5165
|
note: "Deliberately not a kind of `bedroom`. People sleep in it, which is the whole of the resemblance. The ISA test asks whether every patient room is a bedroom, and it is not: it is a clinical space that happens to contain a bed, and its material specification is closer to `operating_room` than to `bedroom`.",
|
|
5025
|
-
provenance:
|
|
5166
|
+
provenance: MS_ROOM_PROGRAM,
|
|
5026
5167
|
related: [serves("healthcare")],
|
|
5027
5168
|
slug: "patient-room"
|
|
5028
5169
|
},
|
|
@@ -5032,7 +5173,7 @@ var SLEEPING_SPACES = [
|
|
|
5032
5173
|
external: [aat2("300004369", "dressing rooms", "exact")],
|
|
5033
5174
|
label: "Dressing Room",
|
|
5034
5175
|
note: 'Deliberately not a kind of `closet_storage`, whose definition ends "never to stay in" - which is exactly what a dressing room is for. AAT 300004369 is `exact` here and `close` on `fitting_room`; Getty scopes it as "rooms for dressing and the toilet, usually opening from a bedroom", which is this room and only approximately a shop\'s changing cubicle.',
|
|
5035
|
-
provenance:
|
|
5176
|
+
provenance: AUTHORED6,
|
|
5036
5177
|
slug: "dressing-room"
|
|
5037
5178
|
}
|
|
5038
5179
|
];
|
|
@@ -5064,21 +5205,21 @@ var WORKING_SPACES = [
|
|
|
5064
5205
|
definition: "The run of continuous shared desking within an open office, unassigned and set out as one long surface rather than as separate desks.",
|
|
5065
5206
|
label: "Benching",
|
|
5066
5207
|
note: "A furniture layout named as a program space, which is what the spine does here. It is filed under `open_office` because every benched area is one; a reader wanting the desk itself wants ELEMENT or a furniture vocabulary, neither of which this is.",
|
|
5067
|
-
provenance:
|
|
5208
|
+
provenance: PROGRAM_SPACES,
|
|
5068
5209
|
slug: "benching"
|
|
5069
5210
|
},
|
|
5070
5211
|
{
|
|
5071
5212
|
broaderSlug: "workspace",
|
|
5072
5213
|
definition: "An enclosed workspace volume held by one person or a small named group, with a door that shuts.",
|
|
5073
5214
|
label: "Private Office",
|
|
5074
|
-
provenance:
|
|
5215
|
+
provenance: MS_ROOM_PROGRAM,
|
|
5075
5216
|
slug: "private-office"
|
|
5076
5217
|
},
|
|
5077
5218
|
{
|
|
5078
5219
|
broaderSlug: "private-office",
|
|
5079
5220
|
definition: "A private office held by a teacher or academic, doubling as the room a student is seen in one at a time, and therefore holding a visitor chair as well as a desk.",
|
|
5080
5221
|
label: "Faculty Office",
|
|
5081
|
-
provenance:
|
|
5222
|
+
provenance: PROGRAM_SPACES,
|
|
5082
5223
|
related: [serves("education")],
|
|
5083
5224
|
slug: "faculty-office"
|
|
5084
5225
|
},
|
|
@@ -5086,7 +5227,7 @@ var WORKING_SPACES = [
|
|
|
5086
5227
|
broaderSlug: "workspace",
|
|
5087
5228
|
definition: "A single-occupant, acoustically isolated volume for calls and short focused work, sized so that occupying it for a whole day is not the intent.",
|
|
5088
5229
|
label: "Phone Booth",
|
|
5089
|
-
provenance:
|
|
5230
|
+
provenance: MS_ROOM_PROGRAM,
|
|
5090
5231
|
slug: "phone-booth"
|
|
5091
5232
|
},
|
|
5092
5233
|
{
|
|
@@ -5094,7 +5235,7 @@ var WORKING_SPACES = [
|
|
|
5094
5235
|
definition: "An enclosed room for one or two people to work in undisturbed for as long as they need, sized and ventilated for a full day where `phone_booth` is not.",
|
|
5095
5236
|
label: "Focus Room",
|
|
5096
5237
|
note: "Deliberately not a kind of `phone_booth`. The parent's definition rules out day-long occupation, which is precisely what this room is for. They look identical on a plan and are specified differently in ventilation, daylight and seating, so the distinction is the term's whole value.",
|
|
5097
|
-
provenance:
|
|
5238
|
+
provenance: PROGRAM_SPACES,
|
|
5098
5239
|
slug: "focus-room"
|
|
5099
5240
|
},
|
|
5100
5241
|
{
|
|
@@ -5102,7 +5243,7 @@ var WORKING_SPACES = [
|
|
|
5102
5243
|
definition: "A room a project team holds for the length of a project, worked in daily and left set up between sessions, with the walls given over to pinning things onto.",
|
|
5103
5244
|
label: "Project Room",
|
|
5104
5245
|
note: "Deliberately not a kind of `meeting_room`. A meeting room is booked, emptied and handed on; a project room is occupied continuously and its walls are a working surface. Filed under `workspace` because that is the honest parent.",
|
|
5105
|
-
provenance:
|
|
5246
|
+
provenance: PROGRAM_SPACES,
|
|
5106
5247
|
slug: "project-room"
|
|
5107
5248
|
},
|
|
5108
5249
|
{
|
|
@@ -5111,7 +5252,7 @@ var WORKING_SPACES = [
|
|
|
5111
5252
|
external: [aat2("300004398", "conference rooms", "close")],
|
|
5112
5253
|
label: "Meeting Room",
|
|
5113
5254
|
note: "`conference_room` is carried as another name for it rather than standing as a sibling: it names the same enclosed room in a more formal register, chiefly American, and nothing about the specification changes with the word. Where the formality is real rather than lexical, the term wanted is `boardroom`.",
|
|
5114
|
-
provenance:
|
|
5255
|
+
provenance: MS_ROOM_PROGRAM,
|
|
5115
5256
|
seenAs: ["conference_room"],
|
|
5116
5257
|
slug: "meeting-room"
|
|
5117
5258
|
},
|
|
@@ -5120,21 +5261,21 @@ var WORKING_SPACES = [
|
|
|
5120
5261
|
definition: "The named meeting room a board sits in: one fixed table, one specification, and the room in the building where money is spent on the finishes.",
|
|
5121
5262
|
external: [aat2("300081159", "boardrooms", "exact")],
|
|
5122
5263
|
label: "Boardroom",
|
|
5123
|
-
provenance:
|
|
5264
|
+
provenance: PROGRAM_SPACES,
|
|
5124
5265
|
slug: "boardroom"
|
|
5125
5266
|
},
|
|
5126
5267
|
{
|
|
5127
5268
|
broaderSlug: "meeting-room",
|
|
5128
5269
|
definition: "A small enclosed meeting room for three or four people around a screen, booked briefly and left; the smallest room that still satisfies `meeting_room`.",
|
|
5129
5270
|
label: "Huddle Room",
|
|
5130
|
-
provenance:
|
|
5271
|
+
provenance: PROGRAM_SPACES,
|
|
5131
5272
|
slug: "huddle-room"
|
|
5132
5273
|
},
|
|
5133
5274
|
{
|
|
5134
5275
|
definition: "The volume a whole organisation gathers in to be addressed, usually a floor cleared and re-set rather than a room kept for it.",
|
|
5135
5276
|
label: "Town Hall Space",
|
|
5136
5277
|
note: "Deliberately not a kind of `meeting_room`. It is not enclosed and it is not scheduled group discussion - it is one-to-many address in whatever volume is big enough, most often an atrium or a cleared floor. The civic building of the same name is TYPOLOGY's business, not this axis's.",
|
|
5137
|
-
provenance:
|
|
5278
|
+
provenance: PROGRAM_SPACES,
|
|
5138
5279
|
slug: "town-hall"
|
|
5139
5280
|
},
|
|
5140
5281
|
{
|
|
@@ -5146,18 +5287,18 @@ var WORKING_SPACES = [
|
|
|
5146
5287
|
aat2("300180734", "home offices (workspaces)", "close")
|
|
5147
5288
|
],
|
|
5148
5289
|
label: "Study / Home Office",
|
|
5149
|
-
note: "
|
|
5290
|
+
note: "The furnishings retailer's `Office` room type carries this term's band, not `private_office`'s. Its corpus is residential room schemes, so an office captured there is a room in a house.",
|
|
5150
5291
|
provenance: EVIDENCED,
|
|
5151
5292
|
related: [serves("residential")],
|
|
5152
5293
|
seenAs: ["Office"],
|
|
5153
5294
|
slug: "study",
|
|
5154
|
-
usage:
|
|
5295
|
+
usage: schemeUsage("common")
|
|
5155
5296
|
},
|
|
5156
5297
|
{
|
|
5157
5298
|
definition: "The volume around a workplace's shared printing and finishing equipment, specified for noise, heat and paper storage.",
|
|
5158
5299
|
label: "Copy / Print",
|
|
5159
5300
|
note: "No AAT mapping. Getty's `print rooms` (300411377) is a room for storing and viewing prints as works of art, which is the opposite end of the word. Searched and declined rather than left unchecked.",
|
|
5160
|
-
provenance:
|
|
5301
|
+
provenance: PROGRAM_SPACES,
|
|
5161
5302
|
related: [serves("workplace")],
|
|
5162
5303
|
slug: "copy-print"
|
|
5163
5304
|
},
|
|
@@ -5166,7 +5307,7 @@ var WORKING_SPACES = [
|
|
|
5166
5307
|
external: [aat2("300256426", "mailrooms", "exact")],
|
|
5167
5308
|
label: "Mailroom",
|
|
5168
5309
|
note: "Kept apart from `mail_package_room` rather than folded, under the rule that two terms a specifier would write differently stay separate. This one is staffed and handles outgoing post; the other is unstaffed, residential, and is a wall of parcel lockers.",
|
|
5169
|
-
provenance:
|
|
5310
|
+
provenance: PROGRAM_SPACES,
|
|
5170
5311
|
related: [serves("workplace")],
|
|
5171
5312
|
slug: "mailroom"
|
|
5172
5313
|
},
|
|
@@ -5174,13 +5315,13 @@ var WORKING_SPACES = [
|
|
|
5174
5315
|
definition: "The room holding a building's servers and comms racks, specified for cooling, cable management and fire suppression before anything else.",
|
|
5175
5316
|
external: [aat2("300004510", "computer rooms", "close")],
|
|
5176
5317
|
label: "IT Room",
|
|
5177
|
-
provenance:
|
|
5318
|
+
provenance: PROGRAM_SPACES,
|
|
5178
5319
|
slug: "it-room"
|
|
5179
5320
|
},
|
|
5180
5321
|
{
|
|
5181
5322
|
definition: "A small lockable room in a workplace for private, non-work use - rest, medication, prayer, expressing milk - kept unbookable for any one of them.",
|
|
5182
5323
|
label: "Wellness Room",
|
|
5183
|
-
provenance:
|
|
5324
|
+
provenance: PROGRAM_SPACES,
|
|
5184
5325
|
related: [serves("workplace")],
|
|
5185
5326
|
slug: "wellness-room"
|
|
5186
5327
|
},
|
|
@@ -5188,14 +5329,14 @@ var WORKING_SPACES = [
|
|
|
5188
5329
|
broaderSlug: "wellness-room",
|
|
5189
5330
|
definition: "A wellness room dedicated to expressing and storing milk, with the fridge, the sink and the lock that the general case only sometimes has.",
|
|
5190
5331
|
label: "Mother's Room",
|
|
5191
|
-
provenance:
|
|
5332
|
+
provenance: PROGRAM_SPACES,
|
|
5192
5333
|
slug: "mother-room"
|
|
5193
5334
|
},
|
|
5194
5335
|
{
|
|
5195
5336
|
definition: "The room staff take their breaks in, away from the people they serve; eating happens in it, which is what separates it from `wellness_room`.",
|
|
5196
5337
|
external: [aat2("300111871", "lunchrooms", "close")],
|
|
5197
5338
|
label: "Staff Room",
|
|
5198
|
-
provenance:
|
|
5339
|
+
provenance: PROGRAM_SPACES,
|
|
5199
5340
|
slug: "staff-room"
|
|
5200
5341
|
}
|
|
5201
5342
|
];
|
|
@@ -5224,22 +5365,22 @@ var SPACE_TERMS = SPACE_SECTORS.flatMap(
|
|
|
5224
5365
|
(sector) => sector.terms
|
|
5225
5366
|
);
|
|
5226
5367
|
var SPACE_BY_ID = new Map(
|
|
5227
|
-
SPACE_TERMS.map((
|
|
5368
|
+
SPACE_TERMS.map((term12) => [term12.slug, term12])
|
|
5228
5369
|
);
|
|
5229
5370
|
var SECTOR_IDS = new Set(
|
|
5230
|
-
SECTOR_TERMS.map((
|
|
5371
|
+
SECTOR_TERMS.map((term12) => term12.slug)
|
|
5231
5372
|
);
|
|
5232
5373
|
|
|
5233
5374
|
// src/axes/style.ts
|
|
5234
5375
|
var ESTATE3 = "all five estate repos";
|
|
5235
|
-
var
|
|
5376
|
+
var PLATFORM_STYLES_SOURCE = "STYLES in an architecture-projects platform (src-01)";
|
|
5236
5377
|
var SNAPSHOT9 = "2026-08-21";
|
|
5237
5378
|
var MARKET_IDIOM = "market-idiom";
|
|
5238
5379
|
var MOVEMENT = "movement";
|
|
5239
5380
|
var TRADITION = "tradition";
|
|
5240
5381
|
var AAT_ENDPOINT = "vocab.getty.edu/sparql";
|
|
5241
|
-
var
|
|
5242
|
-
var
|
|
5382
|
+
var SCHEME_SNAPSHOT2 = "2026-08-18";
|
|
5383
|
+
var SCHEME_CORPUS2 = "room schemes in a furnishings retailer (src-03)";
|
|
5243
5384
|
var aat3 = (slug, label, match) => ({
|
|
5244
5385
|
identifier: slug,
|
|
5245
5386
|
label,
|
|
@@ -5264,11 +5405,11 @@ var STYLE_TERMS = [
|
|
|
5264
5405
|
styleKind: MOVEMENT,
|
|
5265
5406
|
usage: {
|
|
5266
5407
|
band: "occasional",
|
|
5267
|
-
corpus:
|
|
5268
|
-
snapshot:
|
|
5408
|
+
corpus: SCHEME_CORPUS2,
|
|
5409
|
+
snapshot: SCHEME_SNAPSHOT2
|
|
5269
5410
|
}
|
|
5270
5411
|
},
|
|
5271
|
-
// NO USAGE BAND, deliberately.
|
|
5412
|
+
// NO USAGE BAND, deliberately. The furnishings retailer tags a dominant share of its room schemes `Modern`,
|
|
5272
5413
|
// and that row is the one the crosswalk declines: `Modern` reads as either this term or
|
|
5273
5414
|
// `style.contemporary`, and the source never recorded which. Attributing the usage here would
|
|
5274
5415
|
// smuggle in the guess the crosswalk refused to make. A term with no band because the
|
|
@@ -5288,13 +5429,13 @@ var STYLE_TERMS = [
|
|
|
5288
5429
|
provenance: {
|
|
5289
5430
|
basis: "evidenced",
|
|
5290
5431
|
snapshot: SNAPSHOT9,
|
|
5291
|
-
source: "
|
|
5432
|
+
source: "an architecture-projects platform (src-01) and a rendering pipeline (src-08)"
|
|
5292
5433
|
},
|
|
5293
5434
|
slug: "modernism",
|
|
5294
5435
|
styleKind: MOVEMENT,
|
|
5295
5436
|
usageWithheld: {
|
|
5296
|
-
corpus:
|
|
5297
|
-
reason: "
|
|
5437
|
+
corpus: SCHEME_CORPUS2,
|
|
5438
|
+
reason: "The furnishings retailer tags a dominant share of its room schemes `Modern`, but that is the crosswalk row that declines: `Modern` reads as either this term or `style.contemporary`, and the source never recorded which. Attributing the usage here would smuggle in the guess the crosswalk refused to make."
|
|
5298
5439
|
}
|
|
5299
5440
|
},
|
|
5300
5441
|
{
|
|
@@ -5307,7 +5448,7 @@ var STYLE_TERMS = [
|
|
|
5307
5448
|
provenance: {
|
|
5308
5449
|
basis: "evidenced",
|
|
5309
5450
|
snapshot: SNAPSHOT9,
|
|
5310
|
-
source: "
|
|
5451
|
+
source: "an architecture-projects platform (src-01), an editorial image library (src-02), a furnishings retailer (src-03) and a materials-retrieval system (src-05)"
|
|
5311
5452
|
},
|
|
5312
5453
|
related: [{ predicate: "evokes", target: "period.mid-century" }],
|
|
5313
5454
|
slug: "mid-century-modern",
|
|
@@ -5317,18 +5458,18 @@ var STYLE_TERMS = [
|
|
|
5317
5458
|
definition: "The prevailing current idiom: clean-lined, unornamented, neither period-referencing nor doctrinally modernist.",
|
|
5318
5459
|
external: [aat3("300264737", "Contemporary (style of art)", "related")],
|
|
5319
5460
|
label: "Contemporary",
|
|
5320
|
-
note: "DELIBERATELY TIME-RELATIVE, and the only term here that is. What it denotes moves; the id does not. Consumers distinguish it from `modern` in practice -
|
|
5461
|
+
note: "DELIBERATELY TIME-RELATIVE, and the only term here that is. What it denotes moves; the id does not. Consumers distinguish it from `modern` in practice - a furnishings retailer carries both at similar volume - without anyone having written down how. `period.contemporary` is a different thing on a different axis; the prefix disambiguates.",
|
|
5321
5462
|
provenance: {
|
|
5322
5463
|
basis: "evidenced",
|
|
5323
5464
|
snapshot: SNAPSHOT9,
|
|
5324
|
-
source: "
|
|
5465
|
+
source: "a furnishings retailer (src-03), a rendering pipeline (src-08) and a materials-retrieval system (src-05)"
|
|
5325
5466
|
},
|
|
5326
5467
|
slug: "contemporary",
|
|
5327
5468
|
styleKind: MARKET_IDIOM,
|
|
5328
5469
|
usage: {
|
|
5329
5470
|
band: "dominant",
|
|
5330
|
-
corpus:
|
|
5331
|
-
snapshot:
|
|
5471
|
+
corpus: SCHEME_CORPUS2,
|
|
5472
|
+
snapshot: SCHEME_SNAPSHOT2
|
|
5332
5473
|
}
|
|
5333
5474
|
},
|
|
5334
5475
|
// Four hits, none an interiors idiom: traditional cultural properties, traditional dances, a bookbinding format, a language variant.
|
|
@@ -5354,8 +5495,8 @@ var STYLE_TERMS = [
|
|
|
5354
5495
|
styleKind: TRADITION,
|
|
5355
5496
|
usage: {
|
|
5356
5497
|
band: "dominant",
|
|
5357
|
-
corpus:
|
|
5358
|
-
snapshot:
|
|
5498
|
+
corpus: SCHEME_CORPUS2,
|
|
5499
|
+
snapshot: SCHEME_SNAPSHOT2
|
|
5359
5500
|
}
|
|
5360
5501
|
},
|
|
5361
5502
|
{
|
|
@@ -5366,7 +5507,7 @@ var STYLE_TERMS = [
|
|
|
5366
5507
|
provenance: {
|
|
5367
5508
|
basis: "vendored",
|
|
5368
5509
|
snapshot: SNAPSHOT9,
|
|
5369
|
-
source:
|
|
5510
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5370
5511
|
},
|
|
5371
5512
|
seenAs: ["Classical & Grand"],
|
|
5372
5513
|
slug: "neoclassical",
|
|
@@ -5379,7 +5520,7 @@ var STYLE_TERMS = [
|
|
|
5379
5520
|
provenance: {
|
|
5380
5521
|
basis: "vendored",
|
|
5381
5522
|
snapshot: SNAPSHOT9,
|
|
5382
|
-
source:
|
|
5523
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5383
5524
|
},
|
|
5384
5525
|
slug: "gothic",
|
|
5385
5526
|
styleKind: MOVEMENT
|
|
@@ -5391,7 +5532,7 @@ var STYLE_TERMS = [
|
|
|
5391
5532
|
provenance: {
|
|
5392
5533
|
basis: "evidenced",
|
|
5393
5534
|
snapshot: SNAPSHOT9,
|
|
5394
|
-
source: "
|
|
5535
|
+
source: "an architecture-projects platform (src-01), an editorial image library (src-02), a furnishings retailer (src-03) and a rendering pipeline (src-08)"
|
|
5395
5536
|
},
|
|
5396
5537
|
related: [{ predicate: "evokes", target: "period.interwar" }],
|
|
5397
5538
|
seenAs: ["art-deco-luxe", "Art Deco & Glamour"],
|
|
@@ -5405,7 +5546,7 @@ var STYLE_TERMS = [
|
|
|
5405
5546
|
provenance: {
|
|
5406
5547
|
basis: "evidenced",
|
|
5407
5548
|
snapshot: SNAPSHOT9,
|
|
5408
|
-
source: "
|
|
5549
|
+
source: "a rendering pipeline (src-08), an architecture-projects platform (src-01), a furnishings retailer (src-03) and a materials-retrieval system (src-05)"
|
|
5409
5550
|
},
|
|
5410
5551
|
related: [{ predicate: "evokes", target: "typology.warehouse" }],
|
|
5411
5552
|
seenAs: ["Industrial & Raw", "industrial_refined"],
|
|
@@ -5419,7 +5560,7 @@ var STYLE_TERMS = [
|
|
|
5419
5560
|
provenance: {
|
|
5420
5561
|
basis: "vendored",
|
|
5421
5562
|
snapshot: SNAPSHOT9,
|
|
5422
|
-
source:
|
|
5563
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5423
5564
|
},
|
|
5424
5565
|
slug: "brutalism",
|
|
5425
5566
|
styleKind: MOVEMENT
|
|
@@ -5431,7 +5572,7 @@ var STYLE_TERMS = [
|
|
|
5431
5572
|
provenance: {
|
|
5432
5573
|
basis: "evidenced",
|
|
5433
5574
|
snapshot: SNAPSHOT9,
|
|
5434
|
-
source: "
|
|
5575
|
+
source: "an editorial image library (src-02)"
|
|
5435
5576
|
},
|
|
5436
5577
|
searchedWithout: [
|
|
5437
5578
|
{
|
|
@@ -5452,14 +5593,14 @@ var STYLE_TERMS = [
|
|
|
5452
5593
|
provenance: {
|
|
5453
5594
|
basis: "evidenced",
|
|
5454
5595
|
snapshot: SNAPSHOT9,
|
|
5455
|
-
source:
|
|
5596
|
+
source: SCHEME_CORPUS2
|
|
5456
5597
|
},
|
|
5457
5598
|
slug: "eclectic",
|
|
5458
5599
|
styleKind: MARKET_IDIOM,
|
|
5459
5600
|
usage: {
|
|
5460
5601
|
band: "common",
|
|
5461
|
-
corpus:
|
|
5462
|
-
snapshot:
|
|
5602
|
+
corpus: SCHEME_CORPUS2,
|
|
5603
|
+
snapshot: SCHEME_SNAPSHOT2
|
|
5463
5604
|
}
|
|
5464
5605
|
},
|
|
5465
5606
|
// Hits are transitional skyscrapers, a typeface group, and Stone-Age-to-Bronze-Age periods.
|
|
@@ -5471,7 +5612,7 @@ var STYLE_TERMS = [
|
|
|
5471
5612
|
provenance: {
|
|
5472
5613
|
basis: "evidenced",
|
|
5473
5614
|
snapshot: SNAPSHOT9,
|
|
5474
|
-
source:
|
|
5615
|
+
source: SCHEME_CORPUS2
|
|
5475
5616
|
},
|
|
5476
5617
|
related: [
|
|
5477
5618
|
{ predicate: "blend-of", target: "style.traditional" },
|
|
@@ -5489,8 +5630,8 @@ var STYLE_TERMS = [
|
|
|
5489
5630
|
styleKind: MARKET_IDIOM,
|
|
5490
5631
|
usage: {
|
|
5491
5632
|
band: "common",
|
|
5492
|
-
corpus:
|
|
5493
|
-
snapshot:
|
|
5633
|
+
corpus: SCHEME_CORPUS2,
|
|
5634
|
+
snapshot: SCHEME_SNAPSHOT2
|
|
5494
5635
|
}
|
|
5495
5636
|
},
|
|
5496
5637
|
{
|
|
@@ -5500,7 +5641,7 @@ var STYLE_TERMS = [
|
|
|
5500
5641
|
provenance: {
|
|
5501
5642
|
basis: "evidenced",
|
|
5502
5643
|
snapshot: SNAPSHOT9,
|
|
5503
|
-
source: "
|
|
5644
|
+
source: "a rendering pipeline (src-08), an architecture-projects platform (src-01), a furnishings retailer (src-03) and a materials-retrieval system (src-05)"
|
|
5504
5645
|
},
|
|
5505
5646
|
seenAs: ["Rustic & Artisan"],
|
|
5506
5647
|
slug: "rustic",
|
|
@@ -5514,7 +5655,7 @@ var STYLE_TERMS = [
|
|
|
5514
5655
|
provenance: {
|
|
5515
5656
|
basis: "vendored",
|
|
5516
5657
|
snapshot: SNAPSHOT9,
|
|
5517
|
-
source:
|
|
5658
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5518
5659
|
},
|
|
5519
5660
|
slug: "vernacular",
|
|
5520
5661
|
styleKind: TRADITION
|
|
@@ -5527,7 +5668,7 @@ var STYLE_TERMS = [
|
|
|
5527
5668
|
provenance: {
|
|
5528
5669
|
basis: "vendored",
|
|
5529
5670
|
snapshot: SNAPSHOT9,
|
|
5530
|
-
source:
|
|
5671
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5531
5672
|
},
|
|
5532
5673
|
slug: "critical-regionalism",
|
|
5533
5674
|
styleKind: MOVEMENT
|
|
@@ -5542,7 +5683,7 @@ var STYLE_TERMS = [
|
|
|
5542
5683
|
provenance: {
|
|
5543
5684
|
basis: "evidenced",
|
|
5544
5685
|
snapshot: SNAPSHOT9,
|
|
5545
|
-
source: "
|
|
5686
|
+
source: "an editorial image library (src-02)"
|
|
5546
5687
|
},
|
|
5547
5688
|
related: [{ predicate: "evokes", target: "place.region.japanese" }],
|
|
5548
5689
|
searchedWithout: [
|
|
@@ -5567,7 +5708,7 @@ var STYLE_TERMS = [
|
|
|
5567
5708
|
provenance: {
|
|
5568
5709
|
basis: "vendored",
|
|
5569
5710
|
snapshot: SNAPSHOT9,
|
|
5570
|
-
source:
|
|
5711
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5571
5712
|
},
|
|
5572
5713
|
slug: "postmodernism",
|
|
5573
5714
|
styleKind: MOVEMENT
|
|
@@ -5579,7 +5720,7 @@ var STYLE_TERMS = [
|
|
|
5579
5720
|
provenance: {
|
|
5580
5721
|
basis: "vendored",
|
|
5581
5722
|
snapshot: SNAPSHOT9,
|
|
5582
|
-
source:
|
|
5723
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5583
5724
|
},
|
|
5584
5725
|
slug: "deconstructivism",
|
|
5585
5726
|
styleKind: MOVEMENT
|
|
@@ -5592,7 +5733,7 @@ var STYLE_TERMS = [
|
|
|
5592
5733
|
provenance: {
|
|
5593
5734
|
basis: "vendored",
|
|
5594
5735
|
snapshot: SNAPSHOT9,
|
|
5595
|
-
source:
|
|
5736
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5596
5737
|
},
|
|
5597
5738
|
searchedWithout: [
|
|
5598
5739
|
{
|
|
@@ -5612,7 +5753,7 @@ var STYLE_TERMS = [
|
|
|
5612
5753
|
provenance: {
|
|
5613
5754
|
basis: "vendored",
|
|
5614
5755
|
snapshot: SNAPSHOT9,
|
|
5615
|
-
source:
|
|
5756
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5616
5757
|
},
|
|
5617
5758
|
slug: "high-tech",
|
|
5618
5759
|
styleKind: MOVEMENT
|
|
@@ -5624,7 +5765,7 @@ var STYLE_TERMS = [
|
|
|
5624
5765
|
provenance: {
|
|
5625
5766
|
basis: "vendored",
|
|
5626
5767
|
snapshot: SNAPSHOT9,
|
|
5627
|
-
source:
|
|
5768
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5628
5769
|
},
|
|
5629
5770
|
slug: "rationalism",
|
|
5630
5771
|
styleKind: MOVEMENT
|
|
@@ -5636,7 +5777,7 @@ var STYLE_TERMS = [
|
|
|
5636
5777
|
provenance: {
|
|
5637
5778
|
basis: "vendored",
|
|
5638
5779
|
snapshot: SNAPSHOT9,
|
|
5639
|
-
source:
|
|
5780
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5640
5781
|
},
|
|
5641
5782
|
slug: "constructivism",
|
|
5642
5783
|
styleKind: MOVEMENT
|
|
@@ -5649,7 +5790,7 @@ var STYLE_TERMS = [
|
|
|
5649
5790
|
provenance: {
|
|
5650
5791
|
basis: "vendored",
|
|
5651
5792
|
snapshot: SNAPSHOT9,
|
|
5652
|
-
source:
|
|
5793
|
+
source: PLATFORM_STYLES_SOURCE
|
|
5653
5794
|
},
|
|
5654
5795
|
seenAs: ["Organic", "quiet_organic"],
|
|
5655
5796
|
slug: "organic-modernism",
|
|
@@ -5658,7 +5799,7 @@ var STYLE_TERMS = [
|
|
|
5658
5799
|
];
|
|
5659
5800
|
|
|
5660
5801
|
// src/axes/tier.ts
|
|
5661
|
-
var
|
|
5802
|
+
var ESTATE_POSITIONING = "brand-positioning vocabulary in a materials-retrieval system (src-05) and project budget bands in a project-materials database (src-07)";
|
|
5662
5803
|
var SNAPSHOT10 = "2026-08-22";
|
|
5663
5804
|
var ADR3 = "@instruments/taxonomy ADR 0001, amended 22 August 2026";
|
|
5664
5805
|
var TIER_MARKET_TERMS = [
|
|
@@ -5669,7 +5810,7 @@ var TIER_MARKET_TERMS = [
|
|
|
5669
5810
|
provenance: {
|
|
5670
5811
|
basis: "evidenced",
|
|
5671
5812
|
snapshot: SNAPSHOT10,
|
|
5672
|
-
source:
|
|
5813
|
+
source: ESTATE_POSITIONING
|
|
5673
5814
|
},
|
|
5674
5815
|
rank: 1,
|
|
5675
5816
|
seenAs: ["budget"],
|
|
@@ -5682,7 +5823,7 @@ var TIER_MARKET_TERMS = [
|
|
|
5682
5823
|
provenance: {
|
|
5683
5824
|
basis: "evidenced",
|
|
5684
5825
|
snapshot: SNAPSHOT10,
|
|
5685
|
-
source:
|
|
5826
|
+
source: ESTATE_POSITIONING
|
|
5686
5827
|
},
|
|
5687
5828
|
rank: 2,
|
|
5688
5829
|
seenAs: ["mid-market", "mid_market"],
|
|
@@ -5696,7 +5837,7 @@ var TIER_MARKET_TERMS = [
|
|
|
5696
5837
|
provenance: {
|
|
5697
5838
|
basis: "evidenced",
|
|
5698
5839
|
snapshot: SNAPSHOT10,
|
|
5699
|
-
source:
|
|
5840
|
+
source: ESTATE_POSITIONING
|
|
5700
5841
|
},
|
|
5701
5842
|
rank: 3,
|
|
5702
5843
|
slug: "premium"
|
|
@@ -5709,7 +5850,7 @@ var TIER_MARKET_TERMS = [
|
|
|
5709
5850
|
provenance: {
|
|
5710
5851
|
basis: "evidenced",
|
|
5711
5852
|
snapshot: SNAPSHOT10,
|
|
5712
|
-
source:
|
|
5853
|
+
source: ESTATE_POSITIONING
|
|
5713
5854
|
},
|
|
5714
5855
|
rank: 4,
|
|
5715
5856
|
related: [{ predicate: "related-to", target: "mood.luxurious" }],
|
|
@@ -5781,7 +5922,7 @@ var TIER_PRICE_BAND_TERMS = [
|
|
|
5781
5922
|
provenance: {
|
|
5782
5923
|
basis: "vendored",
|
|
5783
5924
|
snapshot: SNAPSHOT10,
|
|
5784
|
-
source: "
|
|
5925
|
+
source: "PRICE_TIERS in a materials-retrieval system (src-05)"
|
|
5785
5926
|
},
|
|
5786
5927
|
rank: index + 1,
|
|
5787
5928
|
seenAs: [symbols],
|
|
@@ -5789,15 +5930,15 @@ var TIER_PRICE_BAND_TERMS = [
|
|
|
5789
5930
|
}));
|
|
5790
5931
|
|
|
5791
5932
|
// src/axes/typology.ts
|
|
5792
|
-
var
|
|
5793
|
-
var
|
|
5933
|
+
var SCHEME_SNAPSHOT3 = "2026-08-18";
|
|
5934
|
+
var AUTHORED7 = {
|
|
5794
5935
|
basis: "authored",
|
|
5795
5936
|
source: "@instruments/taxonomy ADR 0001"
|
|
5796
5937
|
};
|
|
5797
|
-
var
|
|
5938
|
+
var PROJECTS_PLATFORM = {
|
|
5798
5939
|
basis: "evidenced",
|
|
5799
5940
|
snapshot: "2026-08-21",
|
|
5800
|
-
source: "
|
|
5941
|
+
source: "SUBTYPE_RULES in an architecture-projects platform (src-01)"
|
|
5801
5942
|
};
|
|
5802
5943
|
var TYPOLOGY_TERMS = [
|
|
5803
5944
|
// ─── Residential ──────────────────────────────────────────────────────────────────────────────
|
|
@@ -5805,7 +5946,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5805
5946
|
altLabels: ["private house", "single-family house"],
|
|
5806
5947
|
definition: "A whole dwelling occupying its own building from ground to roof, with its own door to the outside. The door and the verticality are the test: a bungalow is a house, a maisonette over a shop is not.",
|
|
5807
5948
|
label: "House",
|
|
5808
|
-
provenance:
|
|
5949
|
+
provenance: PROJECTS_PLATFORM,
|
|
5809
5950
|
seenAs: ["Single family", "Living small"],
|
|
5810
5951
|
slug: "house"
|
|
5811
5952
|
},
|
|
@@ -5815,8 +5956,8 @@ var TYPOLOGY_TERMS = [
|
|
|
5815
5956
|
label: "Cottage",
|
|
5816
5957
|
provenance: {
|
|
5817
5958
|
basis: "evidenced",
|
|
5818
|
-
snapshot:
|
|
5819
|
-
source: "
|
|
5959
|
+
snapshot: SCHEME_SNAPSHOT3,
|
|
5960
|
+
source: "attributes.Style in a furnishings retailer (src-03)"
|
|
5820
5961
|
},
|
|
5821
5962
|
seenAs: ["Country/ Cottage"],
|
|
5822
5963
|
slug: "cottage"
|
|
@@ -5825,25 +5966,25 @@ var TYPOLOGY_TERMS = [
|
|
|
5825
5966
|
broaderSlug: "house",
|
|
5826
5967
|
definition: "The dwelling of a working holding, sited among its outbuildings and planned around a kitchen that was the working room of the farm rather than a room off the hall.",
|
|
5827
5968
|
label: "Farmhouse",
|
|
5828
|
-
note: "The clearest case of typology used as reference rather than classification: the Farmhouse schemes in
|
|
5969
|
+
note: "The clearest case of typology used as reference rather than classification: the Farmhouse room schemes in a furnishings retailer are overwhelmingly suburban rooms evoking one, not dwellings on farms. See the header on the two predicates.",
|
|
5829
5970
|
provenance: {
|
|
5830
5971
|
basis: "evidenced",
|
|
5831
|
-
snapshot:
|
|
5832
|
-
source: "
|
|
5972
|
+
snapshot: SCHEME_SNAPSHOT3,
|
|
5973
|
+
source: "roomStyle in a furnishings retailer (src-03)"
|
|
5833
5974
|
},
|
|
5834
5975
|
seenAs: ["Farmhouse", "Modern farmhouse"],
|
|
5835
5976
|
slug: "farmhouse",
|
|
5836
5977
|
usage: {
|
|
5837
5978
|
band: "common",
|
|
5838
|
-
corpus: "
|
|
5839
|
-
snapshot:
|
|
5979
|
+
corpus: "room schemes in a furnishings retailer (src-03)",
|
|
5980
|
+
snapshot: SCHEME_SNAPSHOT3
|
|
5840
5981
|
}
|
|
5841
5982
|
},
|
|
5842
5983
|
{
|
|
5843
5984
|
definition: "A large single-volume agricultural building for crop or stock, unheated and top-lit or unlit by design, with the roof structure exposed because nothing was ever fixed below it.",
|
|
5844
5985
|
label: "Barn",
|
|
5845
5986
|
note: "NOT parented to `house`. A barn is an agricultural building; the residential barn everyone means is a conversion, which is a change of use and not a change of what the building is. The dwelling in it is a house that happens to be in a barn.",
|
|
5846
|
-
provenance:
|
|
5987
|
+
provenance: AUTHORED7,
|
|
5847
5988
|
slug: "barn"
|
|
5848
5989
|
},
|
|
5849
5990
|
{
|
|
@@ -5851,7 +5992,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5851
5992
|
definition: "A detached house standing in its own grounds and built for retreat rather than for work on the land - the Roman country-house lineage that both the Palladian villa and the holiday villa descend from.",
|
|
5852
5993
|
label: "Villa",
|
|
5853
5994
|
note: "The leisure premise is the line against `farmhouse`, which is otherwise the same thing in the same landscape. British estate-agent usage for a Victorian semi is a separate and weaker sense, not carried here.",
|
|
5854
|
-
provenance:
|
|
5995
|
+
provenance: AUTHORED7,
|
|
5855
5996
|
slug: "villa"
|
|
5856
5997
|
},
|
|
5857
5998
|
{
|
|
@@ -5859,7 +6000,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5859
6000
|
broaderSlug: "house",
|
|
5860
6001
|
definition: "The principal house of a landed estate, from which the surrounding land was administered: large, old and rural, but built to be lived in rather than defended.",
|
|
5861
6002
|
label: "Manor",
|
|
5862
|
-
provenance:
|
|
6003
|
+
provenance: AUTHORED7,
|
|
5863
6004
|
slug: "manor"
|
|
5864
6005
|
},
|
|
5865
6006
|
{
|
|
@@ -5868,7 +6009,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5868
6009
|
definition: "The French country seat: a large house with the symmetry, steep roofline and axial approach of the French tradition, whether or not it retains defensive fabric.",
|
|
5869
6010
|
label: "Chateau",
|
|
5870
6011
|
note: "Parented to `house` rather than `castle` on a judgement call. The French word covers both and some ch\xE2teaux are genuinely fortified, but the term as the trade uses it means a grand house; where the fabric is actually defensive, `castle` is the better term.",
|
|
5871
|
-
provenance:
|
|
6012
|
+
provenance: AUTHORED7,
|
|
5872
6013
|
slug: "chateau"
|
|
5873
6014
|
},
|
|
5874
6015
|
{
|
|
@@ -5876,7 +6017,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5876
6017
|
broaderSlug: "house",
|
|
5877
6018
|
definition: "A house in a continuous row, sharing both side walls with its neighbours and taking all its light from the front and back only, which is what governs the plan.",
|
|
5878
6019
|
label: "Terraced House",
|
|
5879
|
-
provenance:
|
|
6020
|
+
provenance: AUTHORED7,
|
|
5880
6021
|
seenAs: ["rowhouse", "terrace"],
|
|
5881
6022
|
slug: "terraced-house"
|
|
5882
6023
|
},
|
|
@@ -5884,8 +6025,8 @@ var TYPOLOGY_TERMS = [
|
|
|
5884
6025
|
altLabels: ["flat", "condominium"],
|
|
5885
6026
|
definition: "A self-contained dwelling occupying part of a larger building, reached through circulation shared with other dwellings. The tenancy, not the block that holds it.",
|
|
5886
6027
|
label: "Apartment",
|
|
5887
|
-
note: "
|
|
5888
|
-
provenance:
|
|
6028
|
+
note: "An architecture-projects platform's `Multi-unit housing` and `Affordable housing` actually name the containing building, for which this axis has no term - they are listed under Seen in the wild because that is where a crosswalk will land them today, not because they are correct. See the header's gap list.",
|
|
6029
|
+
provenance: PROJECTS_PLATFORM,
|
|
5889
6030
|
seenAs: ["condo", "Multi-unit housing", "Affordable housing"],
|
|
5890
6031
|
slug: "apartment"
|
|
5891
6032
|
},
|
|
@@ -5895,7 +6036,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5895
6036
|
definition: "A dwelling occupying part of a building put up for another purpose, keeping that building's structure, volume and window pattern instead of being replanned to domestic scale.",
|
|
5896
6037
|
label: "Loft",
|
|
5897
6038
|
note: "NOT the attic sense of the word, which is a room and belongs on SPACE. Heavily used as an aesthetic reference by people who live nowhere near a converted warehouse - the same double duty as `farmhouse`, and the reason there is no `style.loft`.",
|
|
5898
|
-
provenance:
|
|
6039
|
+
provenance: AUTHORED7,
|
|
5899
6040
|
slug: "loft"
|
|
5900
6041
|
},
|
|
5901
6042
|
{
|
|
@@ -5903,15 +6044,15 @@ var TYPOLOGY_TERMS = [
|
|
|
5903
6044
|
broaderSlug: "house",
|
|
5904
6045
|
definition: "A small timber dwelling, rural and usually seasonal, built simply enough that the construction is the finish.",
|
|
5905
6046
|
label: "Cabin",
|
|
5906
|
-
provenance:
|
|
6047
|
+
provenance: AUTHORED7,
|
|
5907
6048
|
slug: "cabin"
|
|
5908
6049
|
},
|
|
5909
6050
|
// ─── Adapted industrial ───────────────────────────────────────────────────────────────────────
|
|
5910
6051
|
{
|
|
5911
6052
|
definition: "A building for holding goods in bulk: long clear spans, doors at vehicle height, and floors loaded for weight rather than for occupation.",
|
|
5912
6053
|
label: "Warehouse",
|
|
5913
|
-
note: "
|
|
5914
|
-
provenance:
|
|
6054
|
+
note: "An architecture-projects platform's single `Industrial` subtype covers this term and `factory` both, so a crosswalk from it is ambiguous and must decline rather than pick one.",
|
|
6055
|
+
provenance: PROJECTS_PLATFORM,
|
|
5915
6056
|
seenAs: ["Industrial"],
|
|
5916
6057
|
slug: "warehouse"
|
|
5917
6058
|
},
|
|
@@ -5919,7 +6060,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5919
6060
|
altLabels: ["works", "plant"],
|
|
5920
6061
|
definition: "A building where goods are made, planned around a process or a line - the sequence of the work sets the plan, where a warehouse's is set by storage and access.",
|
|
5921
6062
|
label: "Factory",
|
|
5922
|
-
provenance:
|
|
6063
|
+
provenance: PROJECTS_PLATFORM,
|
|
5923
6064
|
seenAs: ["Industrial"],
|
|
5924
6065
|
slug: "factory"
|
|
5925
6066
|
},
|
|
@@ -5927,7 +6068,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5927
6068
|
definition: "A multi-storey industrial building organised around one shared power source, with the column grid and the floor-to-floor heights set by the drive rather than by the work.",
|
|
5928
6069
|
label: "Mill",
|
|
5929
6070
|
note: "NOT parented to `factory`, deliberately. The textile mill is a factory and the water-driven corn mill is not, and one term has to cover both because the trade and the conversion market use the word for both. Forcing the parent would make the ISA false half the time.",
|
|
5930
|
-
provenance:
|
|
6071
|
+
provenance: AUTHORED7,
|
|
5931
6072
|
slug: "mill"
|
|
5932
6073
|
},
|
|
5933
6074
|
// ─── Religious and institutional ──────────────────────────────────────────────────────────────
|
|
@@ -5935,8 +6076,8 @@ var TYPOLOGY_TERMS = [
|
|
|
5935
6076
|
altLabels: ["cathedral", "parish church"],
|
|
5936
6077
|
definition: "A building for Christian worship, whose plan - nave, orientation, a single focus at one end - is given by the liturgy rather than chosen by the designer.",
|
|
5937
6078
|
label: "Church",
|
|
5938
|
-
note: "Christian, explicitly.
|
|
5939
|
-
provenance:
|
|
6079
|
+
note: "Christian, explicitly. An architecture-projects platform's `Religious & memorial` covers every faith and memorials besides, so it is a spelling seen in the wild and not an equivalence.",
|
|
6080
|
+
provenance: PROJECTS_PLATFORM,
|
|
5940
6081
|
seenAs: ["Religious & memorial"],
|
|
5941
6082
|
slug: "church"
|
|
5942
6083
|
},
|
|
@@ -5945,7 +6086,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5945
6086
|
definition: "A small building for Christian worship that is either subsidiary to a parish church or non-conformist; the smallness together with the absence of parish status is what makes it one.",
|
|
5946
6087
|
label: "Chapel",
|
|
5947
6088
|
note: "Parented to `church` because the ISA holds as defined - a chapel building is a building for Christian worship. The chapel WITHIN a cathedral or a house is a room, not a building, and belongs on SPACE; the word covers both and this term covers only the first.",
|
|
5948
|
-
provenance:
|
|
6089
|
+
provenance: AUTHORED7,
|
|
5949
6090
|
slug: "chapel"
|
|
5950
6091
|
},
|
|
5951
6092
|
{
|
|
@@ -5953,13 +6094,13 @@ var TYPOLOGY_TERMS = [
|
|
|
5953
6094
|
definition: "An enclosed group of buildings where a religious community both lives and worships, planned around a cloister with the daily offices setting the circulation.",
|
|
5954
6095
|
label: "Monastery",
|
|
5955
6096
|
note: "NOT parented to `church`, though it contains one. The defining programme is residential and enclosed; a monastery is not a kind of church any more than a college is a kind of library.",
|
|
5956
|
-
provenance:
|
|
6097
|
+
provenance: AUTHORED7,
|
|
5957
6098
|
slug: "monastery"
|
|
5958
6099
|
},
|
|
5959
6100
|
{
|
|
5960
6101
|
definition: "A fortified residence: thick walls, restricted openings and a controlled approach, built for a household to live behind rather than for a garrison alone - which is the line against a fort.",
|
|
5961
6102
|
label: "Castle",
|
|
5962
|
-
provenance:
|
|
6103
|
+
provenance: AUTHORED7,
|
|
5963
6104
|
slug: "castle"
|
|
5964
6105
|
},
|
|
5965
6106
|
// ─── Hospitality ──────────────────────────────────────────────────────────────────────────────
|
|
@@ -5967,14 +6108,14 @@ var TYPOLOGY_TERMS = [
|
|
|
5967
6108
|
altLabels: ["resort", "inn"],
|
|
5968
6109
|
definition: "Premises letting rooms by the night with staffed reception and service. The building; the rooms inside it are `space.hotel-room` and `space.lobby`.",
|
|
5969
6110
|
label: "Hotel",
|
|
5970
|
-
provenance:
|
|
6111
|
+
provenance: PROJECTS_PLATFORM,
|
|
5971
6112
|
seenAs: ["Hotel & resort", "boutique"],
|
|
5972
6113
|
slug: "hotel"
|
|
5973
6114
|
},
|
|
5974
6115
|
{
|
|
5975
6116
|
definition: "Premises whose business is cooked meals served at table, with the kitchen sized and serviced for that rather than for reheating.",
|
|
5976
6117
|
label: "Restaurant",
|
|
5977
|
-
provenance:
|
|
6118
|
+
provenance: PROJECTS_PLATFORM,
|
|
5978
6119
|
slug: "restaurant"
|
|
5979
6120
|
},
|
|
5980
6121
|
{
|
|
@@ -5982,7 +6123,7 @@ var TYPOLOGY_TERMS = [
|
|
|
5982
6123
|
definition: "Premises whose business is drink, with any food subordinate to it and the counter as the organising element of the plan.",
|
|
5983
6124
|
label: "Bar",
|
|
5984
6125
|
note: "Collides by id with `application.bar`, which is the piece of millwork. Different axes, different things; the prefix disambiguates.",
|
|
5985
|
-
provenance:
|
|
6126
|
+
provenance: PROJECTS_PLATFORM,
|
|
5986
6127
|
seenAs: ["Bar & winery"],
|
|
5987
6128
|
slug: "bar"
|
|
5988
6129
|
},
|
|
@@ -5990,14 +6131,14 @@ var TYPOLOGY_TERMS = [
|
|
|
5990
6131
|
altLabels: ["caf\xE9", "coffee shop"],
|
|
5991
6132
|
definition: "Premises serving drinks and light food across a counter, trading in daylight hours with a short average stay - the counter service and the hours are the line against a restaurant.",
|
|
5992
6133
|
label: "Cafe",
|
|
5993
|
-
provenance:
|
|
6134
|
+
provenance: AUTHORED7,
|
|
5994
6135
|
slug: "cafe"
|
|
5995
6136
|
},
|
|
5996
6137
|
{
|
|
5997
6138
|
altLabels: ["wellness centre", "bathhouse"],
|
|
5998
6139
|
definition: "Premises whose programme is bathing and treatment, with the servicing - humidity, drainage, heat - that wet rooms need. The premises; the wet room inside is `space.spa-pool`.",
|
|
5999
6140
|
label: "Spa",
|
|
6000
|
-
provenance:
|
|
6141
|
+
provenance: PROJECTS_PLATFORM,
|
|
6001
6142
|
seenAs: ["Spa & wellness"],
|
|
6002
6143
|
slug: "spa"
|
|
6003
6144
|
},
|
|
@@ -6005,41 +6146,41 @@ var TYPOLOGY_TERMS = [
|
|
|
6005
6146
|
altLabels: ["club"],
|
|
6006
6147
|
definition: "Premises for late-night drinking and dancing, planned around a floor and a sound system and lit for darkness rather than for daylight.",
|
|
6007
6148
|
label: "Nightclub",
|
|
6008
|
-
provenance:
|
|
6149
|
+
provenance: PROJECTS_PLATFORM,
|
|
6009
6150
|
slug: "nightclub"
|
|
6010
6151
|
},
|
|
6011
6152
|
// ─── Cultural ─────────────────────────────────────────────────────────────────────────────────
|
|
6012
6153
|
{
|
|
6013
6154
|
definition: "Premises showing art in changing exhibitions, generally without a permanent collection and often selling what is shown - the selling and the turnover are the line against a museum.",
|
|
6014
6155
|
label: "Gallery",
|
|
6015
|
-
provenance:
|
|
6156
|
+
provenance: PROJECTS_PLATFORM,
|
|
6016
6157
|
seenAs: ["Gallery", "Exhibition"],
|
|
6017
6158
|
slug: "gallery"
|
|
6018
6159
|
},
|
|
6019
6160
|
{
|
|
6020
6161
|
definition: "Premises holding and displaying a permanent collection it does not sell, with the storage, conservation and environmental control that keeping one requires.",
|
|
6021
6162
|
label: "Museum",
|
|
6022
|
-
provenance:
|
|
6163
|
+
provenance: PROJECTS_PLATFORM,
|
|
6023
6164
|
slug: "museum"
|
|
6024
6165
|
},
|
|
6025
6166
|
{
|
|
6026
6167
|
definition: "Premises holding a collection for reading and lending, planned around both dense storage and long uninterrupted occupation of the reading floor.",
|
|
6027
6168
|
label: "Library",
|
|
6028
|
-
provenance:
|
|
6169
|
+
provenance: PROJECTS_PLATFORM,
|
|
6029
6170
|
slug: "library"
|
|
6030
6171
|
},
|
|
6031
6172
|
{
|
|
6032
6173
|
altLabels: ["theater", "concert hall", "auditorium"],
|
|
6033
6174
|
definition: "Premises with a fixed auditorium addressing a stage or platform, planned around sightlines and acoustics before anything else.",
|
|
6034
6175
|
label: "Theatre",
|
|
6035
|
-
provenance:
|
|
6176
|
+
provenance: PROJECTS_PLATFORM,
|
|
6036
6177
|
seenAs: ["Theater & concert hall", "Performing arts"],
|
|
6037
6178
|
slug: "theatre"
|
|
6038
6179
|
},
|
|
6039
6180
|
{
|
|
6040
6181
|
definition: "A small, largely single-volume building standing free in a landscape or a public space, often temporary, whose programme is to be occupied and looked at rather than to house a settled function.",
|
|
6041
6182
|
label: "Pavilion",
|
|
6042
|
-
provenance:
|
|
6183
|
+
provenance: PROJECTS_PLATFORM,
|
|
6043
6184
|
seenAs: ["Pavillion", "Pop-up & temporary"],
|
|
6044
6185
|
slug: "pavilion"
|
|
6045
6186
|
},
|
|
@@ -6048,7 +6189,7 @@ var TYPOLOGY_TERMS = [
|
|
|
6048
6189
|
altLabels: ["workplace"],
|
|
6049
6190
|
definition: "Premises for desk work, planned around floorplate depth, daylight and servicing rather than around a product or a process.",
|
|
6050
6191
|
label: "Office",
|
|
6051
|
-
provenance:
|
|
6192
|
+
provenance: PROJECTS_PLATFORM,
|
|
6052
6193
|
seenAs: ["coworking", "co-working", "workspace"],
|
|
6053
6194
|
slug: "office"
|
|
6054
6195
|
},
|
|
@@ -6056,15 +6197,15 @@ var TYPOLOGY_TERMS = [
|
|
|
6056
6197
|
altLabels: ["store", "retail unit", "boutique"],
|
|
6057
6198
|
definition: "Premises selling goods to the public from stock held on site and carried away by the buyer.",
|
|
6058
6199
|
label: "Shop",
|
|
6059
|
-
provenance:
|
|
6200
|
+
provenance: PROJECTS_PLATFORM,
|
|
6060
6201
|
seenAs: ["Retail", "Shopping"],
|
|
6061
6202
|
slug: "shop"
|
|
6062
6203
|
},
|
|
6063
6204
|
{
|
|
6064
6205
|
definition: "Premises displaying goods that are ordered rather than carried away, frequently trade-only; the absence of stock and of a till is the line against a shop.",
|
|
6065
6206
|
label: "Showroom",
|
|
6066
|
-
note: "
|
|
6067
|
-
provenance:
|
|
6207
|
+
note: "An architecture-projects platform folds this into `Retail` with `shop`, so a crosswalk from that label is ambiguous between the two and should decline.",
|
|
6208
|
+
provenance: PROJECTS_PLATFORM,
|
|
6068
6209
|
seenAs: ["Retail"],
|
|
6069
6210
|
slug: "showroom"
|
|
6070
6211
|
},
|
|
@@ -6072,15 +6213,15 @@ var TYPOLOGY_TERMS = [
|
|
|
6072
6213
|
altLabels: ["college", "university"],
|
|
6073
6214
|
definition: "Premises for teaching, nursery through university, planned around repeated teaching rooms and circulation that can be supervised.",
|
|
6074
6215
|
label: "School",
|
|
6075
|
-
note: "Deliberately coarse, and coarser than the evidence supports:
|
|
6076
|
-
provenance:
|
|
6216
|
+
note: "Deliberately coarse, and coarser than the evidence supports: an architecture-projects platform distinguishes kindergarten, school and university. One term until something needs the split.",
|
|
6217
|
+
provenance: PROJECTS_PLATFORM,
|
|
6077
6218
|
seenAs: ["Kindergarten", "University & research", "Higher education"],
|
|
6078
6219
|
slug: "school"
|
|
6079
6220
|
},
|
|
6080
6221
|
{
|
|
6081
6222
|
definition: "Premises admitting patients to beds overnight, with the clinical servicing - medical gases, isolation, theatres - that inpatient care requires.",
|
|
6082
6223
|
label: "Hospital",
|
|
6083
|
-
provenance:
|
|
6224
|
+
provenance: PROJECTS_PLATFORM,
|
|
6084
6225
|
seenAs: ["Healthcare"],
|
|
6085
6226
|
slug: "hospital"
|
|
6086
6227
|
},
|
|
@@ -6088,7 +6229,7 @@ var TYPOLOGY_TERMS = [
|
|
|
6088
6229
|
altLabels: ["surgery", "medical centre", "dental practice"],
|
|
6089
6230
|
definition: "Premises treating patients who arrive and leave the same day. No beds overnight, and that is the whole of the line against a hospital.",
|
|
6090
6231
|
label: "Clinic",
|
|
6091
|
-
provenance:
|
|
6232
|
+
provenance: PROJECTS_PLATFORM,
|
|
6092
6233
|
seenAs: ["Healthcare"],
|
|
6093
6234
|
slug: "clinic"
|
|
6094
6235
|
},
|
|
@@ -6096,7 +6237,7 @@ var TYPOLOGY_TERMS = [
|
|
|
6096
6237
|
altLabels: ["town hall", "courthouse"],
|
|
6097
6238
|
definition: "Premises housing a public authority and the public's dealings with it - town hall, courthouse, register office - where addressing the street as a public institution is part of the brief.",
|
|
6098
6239
|
label: "Civic Building",
|
|
6099
|
-
provenance:
|
|
6240
|
+
provenance: PROJECTS_PLATFORM,
|
|
6100
6241
|
seenAs: ["Civic & government", "Community center", "Municipal"],
|
|
6101
6242
|
slug: "civic-building"
|
|
6102
6243
|
},
|
|
@@ -6105,7 +6246,7 @@ var TYPOLOGY_TERMS = [
|
|
|
6105
6246
|
altLabels: ["fitness centre", "sports centre"],
|
|
6106
6247
|
definition: "Premises for training indoors, planned around equipment, floor loading and the ventilation rate that hard exercise needs.",
|
|
6107
6248
|
label: "Gym",
|
|
6108
|
-
provenance:
|
|
6249
|
+
provenance: PROJECTS_PLATFORM,
|
|
6109
6250
|
seenAs: ["Gym & recreation", "Recreation center"],
|
|
6110
6251
|
slug: "gym"
|
|
6111
6252
|
},
|
|
@@ -6113,7 +6254,7 @@ var TYPOLOGY_TERMS = [
|
|
|
6113
6254
|
altLabels: ["arena"],
|
|
6114
6255
|
definition: "Premises whose entire plan is tiered seating around a field of play, sized for a crowd that arrives and leaves all at once.",
|
|
6115
6256
|
label: "Stadium",
|
|
6116
|
-
provenance:
|
|
6257
|
+
provenance: PROJECTS_PLATFORM,
|
|
6117
6258
|
seenAs: ["Stadium & arena"],
|
|
6118
6259
|
slug: "stadium"
|
|
6119
6260
|
},
|
|
@@ -6122,107 +6263,107 @@ var TYPOLOGY_TERMS = [
|
|
|
6122
6263
|
definition: "Premises where passengers board scheduled transport: concourse, platforms, and a plan governed by flow that runs one way at a time.",
|
|
6123
6264
|
label: "Station",
|
|
6124
6265
|
note: "Rail, bus and transit. Airports have no term here - the scale, security and airside planning make them a different building, and nothing in the estate asks for one.",
|
|
6125
|
-
provenance:
|
|
6266
|
+
provenance: PROJECTS_PLATFORM,
|
|
6126
6267
|
seenAs: ["Transit"],
|
|
6127
6268
|
slug: "station"
|
|
6128
6269
|
}
|
|
6129
6270
|
];
|
|
6130
6271
|
|
|
6131
6272
|
// src/axes/unit-shape.ts
|
|
6132
|
-
var
|
|
6273
|
+
var REVIEW_DATE4 = "2026-08-31";
|
|
6133
6274
|
var REVIEW_SOURCE2 = "@instruments/taxonomy TAX-45 reviewed implementation contract";
|
|
6134
|
-
var PICKET_SOURCE = "Linear TAX-45 reviewed implementation contract;
|
|
6135
|
-
var
|
|
6275
|
+
var PICKET_SOURCE = "Linear TAX-45 reviewed implementation contract; picket product fixture in a materials-retrieval system (src-05)";
|
|
6276
|
+
var term11 = (slug, label, definition, extra = {}) => ({
|
|
6136
6277
|
definition,
|
|
6137
|
-
introducedAt:
|
|
6278
|
+
introducedAt: REVIEW_DATE4,
|
|
6138
6279
|
label,
|
|
6139
6280
|
provenance: { basis: "authored", source: REVIEW_SOURCE2 },
|
|
6140
|
-
reviewedAt:
|
|
6281
|
+
reviewedAt: REVIEW_DATE4,
|
|
6141
6282
|
slug,
|
|
6142
6283
|
...extra
|
|
6143
6284
|
});
|
|
6144
6285
|
var UNIT_SHAPE_TERMS = [
|
|
6145
|
-
|
|
6286
|
+
term11(
|
|
6146
6287
|
"square",
|
|
6147
6288
|
"Square",
|
|
6148
6289
|
"A four-sided unit with equal sides and four right angles."
|
|
6149
6290
|
),
|
|
6150
|
-
|
|
6291
|
+
term11(
|
|
6151
6292
|
"rectangle",
|
|
6152
6293
|
"Rectangle",
|
|
6153
6294
|
"A four-sided unit with four right angles whose length and width may differ."
|
|
6154
6295
|
),
|
|
6155
|
-
|
|
6296
|
+
term11("circle", "Circle", "A round unit bounded by one continuous curve.", {
|
|
6156
6297
|
altLabels: ["Round"]
|
|
6157
6298
|
}),
|
|
6158
|
-
|
|
6299
|
+
term11(
|
|
6159
6300
|
"oval",
|
|
6160
6301
|
"Oval",
|
|
6161
6302
|
"An elongated rounded unit bounded by one continuous curve."
|
|
6162
6303
|
),
|
|
6163
|
-
|
|
6304
|
+
term11(
|
|
6164
6305
|
"semicircle",
|
|
6165
6306
|
"Semicircle",
|
|
6166
6307
|
"A half-round unit bounded by one straight edge and one continuous curved edge."
|
|
6167
6308
|
),
|
|
6168
|
-
|
|
6169
|
-
|
|
6309
|
+
term11("triangle", "Triangle", "A unit bounded by three straight sides."),
|
|
6310
|
+
term11(
|
|
6170
6311
|
"rhombus",
|
|
6171
6312
|
"Rhombus",
|
|
6172
6313
|
"A four-sided unit with equal sides and oblique opposite angles.",
|
|
6173
6314
|
{ altLabels: ["Diamond"] }
|
|
6174
6315
|
),
|
|
6175
|
-
|
|
6316
|
+
term11(
|
|
6176
6317
|
"parallelogram",
|
|
6177
6318
|
"Parallelogram",
|
|
6178
6319
|
"A four-sided unit with both pairs of opposite sides parallel, excluding rectangles and rhombi when those more specific outlines are established."
|
|
6179
6320
|
),
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6321
|
+
term11("hexagon", "Hexagon", "A unit bounded by six straight sides."),
|
|
6322
|
+
term11("octagon", "Octagon", "A unit bounded by eight straight sides."),
|
|
6323
|
+
term11(
|
|
6183
6324
|
"trapezoid",
|
|
6184
6325
|
"Trapezoid",
|
|
6185
6326
|
"A four-sided unit with exactly one pair of parallel sides."
|
|
6186
6327
|
),
|
|
6187
|
-
|
|
6328
|
+
term11(
|
|
6188
6329
|
"picket",
|
|
6189
6330
|
"Picket",
|
|
6190
6331
|
"An elongated unit whose end forms a distinct pointed or peaked outline rather than a rectangular end.",
|
|
6191
6332
|
{
|
|
6192
6333
|
provenance: {
|
|
6193
6334
|
basis: "referenced",
|
|
6194
|
-
snapshot:
|
|
6335
|
+
snapshot: REVIEW_DATE4,
|
|
6195
6336
|
source: PICKET_SOURCE
|
|
6196
6337
|
}
|
|
6197
6338
|
}
|
|
6198
6339
|
),
|
|
6199
|
-
|
|
6340
|
+
term11(
|
|
6200
6341
|
"chevron",
|
|
6201
6342
|
"Chevron unit",
|
|
6202
6343
|
"One genuinely V-shaped or boomerang-shaped physical unit; never rectangular units mitred or arranged into a chevron layout."
|
|
6203
6344
|
),
|
|
6204
|
-
|
|
6345
|
+
term11(
|
|
6205
6346
|
"arabesque",
|
|
6206
6347
|
"Arabesque",
|
|
6207
6348
|
"A bilaterally organised ornamental unit with alternating convex and concave lobes."
|
|
6208
6349
|
),
|
|
6209
|
-
|
|
6350
|
+
term11(
|
|
6210
6351
|
"scallop",
|
|
6211
6352
|
"Scallop",
|
|
6212
6353
|
"A fan-like unit with one convex curved edge and a narrower opposing edge.",
|
|
6213
6354
|
{ altLabels: ["Fan"] }
|
|
6214
6355
|
),
|
|
6215
|
-
|
|
6356
|
+
term11(
|
|
6216
6357
|
"star",
|
|
6217
6358
|
"Star",
|
|
6218
6359
|
"A unit with multiple outward-pointing arms around a centre."
|
|
6219
6360
|
),
|
|
6220
|
-
|
|
6361
|
+
term11(
|
|
6221
6362
|
"cross",
|
|
6222
6363
|
"Cross",
|
|
6223
6364
|
"A unit whose outline forms intersecting arms around a centre."
|
|
6224
6365
|
),
|
|
6225
|
-
|
|
6366
|
+
term11(
|
|
6226
6367
|
"irregular",
|
|
6227
6368
|
"Irregular unit shape",
|
|
6228
6369
|
"A positively observed non-regular physical outline that fits no governed shape term; it is not unknown, not unobserved and not an other bucket."
|
|
@@ -6288,10 +6429,10 @@ var MOOD_ANCHORS = {
|
|
|
6288
6429
|
"Interior with light passing through a diffusing layer before it reaches anything, arrises rounded and edges bullnosed, boucle and brushed textile throughout, and shadows fading out with no boundary"
|
|
6289
6430
|
]
|
|
6290
6431
|
};
|
|
6291
|
-
for (const
|
|
6292
|
-
if (MOOD_ANCHORS[
|
|
6432
|
+
for (const term12 of MOOD_TERMS) {
|
|
6433
|
+
if (MOOD_ANCHORS[term12.slug] === void 0) {
|
|
6293
6434
|
throw new Error(
|
|
6294
|
-
`mood.${
|
|
6435
|
+
`mood.${term12.slug} has no retrieval anchor. A mood term with no anchor is present in the vocabulary and invisible to every retrieval consumer. Add one in mood-anchors.ts.`
|
|
6295
6436
|
);
|
|
6296
6437
|
}
|
|
6297
6438
|
}
|
|
@@ -6332,10 +6473,10 @@ var PERIOD_ANCHORS = {
|
|
|
6332
6473
|
"Interior with a bay window carried on its own structure, pattern printed and woven onto wall, floor and textile at once, a moulded plaster cornice with a ceiling rose, and cast-iron grates"
|
|
6333
6474
|
]
|
|
6334
6475
|
};
|
|
6335
|
-
for (const
|
|
6336
|
-
if (PERIOD_ANCHORS[
|
|
6476
|
+
for (const term12 of PERIOD_TERMS) {
|
|
6477
|
+
if (PERIOD_ANCHORS[term12.slug] === void 0) {
|
|
6337
6478
|
throw new Error(
|
|
6338
|
-
`period.${
|
|
6479
|
+
`period.${term12.slug} has no retrieval anchor. A period term with no anchor is present in the vocabulary and invisible to every retrieval consumer. Add one in period-anchors.ts.`
|
|
6339
6480
|
);
|
|
6340
6481
|
}
|
|
6341
6482
|
}
|
|
@@ -6414,10 +6555,10 @@ var PLACE_ANCHORS = {
|
|
|
6414
6555
|
"A built water edge immediately outside - quay coping, bollards and mooring rings, a pontoon or a lock gate - with still fresh water held between banks and the far side visible across it"
|
|
6415
6556
|
]
|
|
6416
6557
|
};
|
|
6417
|
-
for (const
|
|
6418
|
-
if (PLACE_ANCHORS[
|
|
6558
|
+
for (const term12 of [...PLACE_REGION_TERMS, ...PLACE_LANDSCAPE_TERMS]) {
|
|
6559
|
+
if (PLACE_ANCHORS[term12.slug] === void 0) {
|
|
6419
6560
|
throw new Error(
|
|
6420
|
-
`place.${
|
|
6561
|
+
`place.${term12.slug} has no retrieval anchor. A place term with no anchor is present in the vocabulary and invisible to every retrieval consumer. Add one in place-anchors.ts.`
|
|
6421
6562
|
);
|
|
6422
6563
|
}
|
|
6423
6564
|
}
|
|
@@ -7101,10 +7242,10 @@ var SPACE_ANCHORS = {
|
|
|
7101
7242
|
...SLEEPING_ANCHORS,
|
|
7102
7243
|
...WORKING_ANCHORS
|
|
7103
7244
|
};
|
|
7104
|
-
for (const
|
|
7105
|
-
if (SPACE_ANCHORS[
|
|
7245
|
+
for (const term12 of SPACE_TERMS) {
|
|
7246
|
+
if (SPACE_ANCHORS[term12.slug] === void 0) {
|
|
7106
7247
|
throw new Error(
|
|
7107
|
-
`space.${
|
|
7248
|
+
`space.${term12.slug} has no retrieval anchor. A space term with no anchor is present in the vocabulary and invisible to every retrieval consumer. Add one in space-anchors.ts.`
|
|
7108
7249
|
);
|
|
7109
7250
|
}
|
|
7110
7251
|
}
|
|
@@ -7189,33 +7330,40 @@ var STYLE_ANCHORS = {
|
|
|
7189
7330
|
"Wabi-sabi interior with visibly repaired ceramics, uneven hand-applied plaster, weathered timber, asymmetry left uncorrected, patina and age treated as the value rather than tolerated"
|
|
7190
7331
|
]
|
|
7191
7332
|
};
|
|
7192
|
-
for (const
|
|
7193
|
-
if (STYLE_ANCHORS[
|
|
7333
|
+
for (const term12 of STYLE_TERMS) {
|
|
7334
|
+
if (STYLE_ANCHORS[term12.slug] === void 0) {
|
|
7194
7335
|
throw new Error(
|
|
7195
|
-
`style.${
|
|
7336
|
+
`style.${term12.slug} has no retrieval anchor. A style term with no anchor is present in the vocabulary and invisible to every retrieval consumer. Add one in style-anchors.ts.`
|
|
7196
7337
|
);
|
|
7197
7338
|
}
|
|
7198
7339
|
}
|
|
7199
7340
|
|
|
7200
7341
|
// src/axes/index.ts
|
|
7201
|
-
var single = (slug, label, terms, governance) => [
|
|
7202
|
-
{
|
|
7203
|
-
...governance === void 0 ? {} : { governance },
|
|
7204
|
-
label,
|
|
7205
|
-
slug,
|
|
7206
|
-
terms
|
|
7207
|
-
}
|
|
7208
|
-
];
|
|
7209
7342
|
var TAX45_REVIEW_DATE = "2026-08-31";
|
|
7210
7343
|
var TAX45_GEOMETRY_GOVERNANCE = {
|
|
7211
7344
|
introducedAt: TAX45_REVIEW_DATE,
|
|
7212
7345
|
provenance: {
|
|
7213
7346
|
basis: "referenced",
|
|
7214
7347
|
snapshot: TAX45_REVIEW_DATE,
|
|
7215
|
-
source: "Linear TAX-45 reviewed implementation contract
|
|
7348
|
+
source: "Linear TAX-45 reviewed implementation contract"
|
|
7216
7349
|
},
|
|
7217
7350
|
reviewedAt: TAX45_REVIEW_DATE
|
|
7218
7351
|
};
|
|
7352
|
+
var TAX48_REVIEW_DATE = "2026-09-11";
|
|
7353
|
+
var TAX48_AUTHORED_GOVERNANCE = {
|
|
7354
|
+
introducedAt: TAX48_REVIEW_DATE,
|
|
7355
|
+
provenance: { basis: "authored", source: "@instruments/taxonomy ADR 0006" },
|
|
7356
|
+
reviewedAt: TAX48_REVIEW_DATE
|
|
7357
|
+
};
|
|
7358
|
+
var TAX48_LIGHT_GOVERNANCE = {
|
|
7359
|
+
introducedAt: TAX48_REVIEW_DATE,
|
|
7360
|
+
provenance: {
|
|
7361
|
+
basis: "referenced",
|
|
7362
|
+
snapshot: TAX48_REVIEW_DATE,
|
|
7363
|
+
source: "EN 17037:2018 Daylight in buildings"
|
|
7364
|
+
},
|
|
7365
|
+
reviewedAt: TAX48_REVIEW_DATE
|
|
7366
|
+
};
|
|
7219
7367
|
var AXES = [
|
|
7220
7368
|
{
|
|
7221
7369
|
boundary: "Material family is what a thing is made of. It is not what the thing is for, which is Application, and not what part of a building it becomes, which is Element.",
|
|
@@ -7422,6 +7570,37 @@ var AXES = [
|
|
|
7422
7570
|
slug: "place",
|
|
7423
7571
|
status: "authored"
|
|
7424
7572
|
},
|
|
7573
|
+
{
|
|
7574
|
+
boundary: "Daylight is the natural light a space receives and the direction it comes from. Aspect is compass-literal and says nothing about the sun: which side is bright depends on the hemisphere, and that consequence is a separate claim on Light. It is not Palette, which is the colour of what is in the room rather than the light falling on it; not Mood, where airy and moody are outcomes a scheme achieves rather than conditions a room has; not Element, which holds the windows, rooflights and luminaires themselves, and artificial lighting is never recorded here; and not Place, which says where a building stands rather than which way a room looks.",
|
|
7575
|
+
facets: [
|
|
7576
|
+
{
|
|
7577
|
+
governance: TAX48_AUTHORED_GOVERNANCE,
|
|
7578
|
+
label: "Aspect",
|
|
7579
|
+
slug: "aspect",
|
|
7580
|
+
terms: DAYLIGHT_ASPECT_TERMS
|
|
7581
|
+
},
|
|
7582
|
+
{
|
|
7583
|
+
governance: TAX48_LIGHT_GOVERNANCE,
|
|
7584
|
+
label: "Light",
|
|
7585
|
+
slug: "light",
|
|
7586
|
+
terms: DAYLIGHT_LIGHT_TERMS
|
|
7587
|
+
}
|
|
7588
|
+
],
|
|
7589
|
+
governance: TAX48_AUTHORED_GOVERNANCE,
|
|
7590
|
+
label: "Daylight",
|
|
7591
|
+
question: "How does natural light reach it?",
|
|
7592
|
+
slug: "daylight",
|
|
7593
|
+
status: "authored"
|
|
7594
|
+
},
|
|
7595
|
+
{
|
|
7596
|
+
boundary: "Season is the time of year a scheme is designed for or evokes, reached by `evokes` like Place and Period are. It is not Period, which is a date range a season never has; not Palette, which carries the colours a seasonal scheme happens to choose; and not Daylight, which records the light a room receives rather than the calendar a scheme refers to.",
|
|
7597
|
+
facets: single("season", "Season", SEASON_TERMS, TAX48_AUTHORED_GOVERNANCE),
|
|
7598
|
+
governance: TAX48_AUTHORED_GOVERNANCE,
|
|
7599
|
+
label: "Season",
|
|
7600
|
+
question: "Which time of year is it meant for?",
|
|
7601
|
+
slug: "season",
|
|
7602
|
+
status: "authored"
|
|
7603
|
+
},
|
|
7425
7604
|
{
|
|
7426
7605
|
boundary: "Tier is where a thing sits in a market; Mood is how a room reads. They come apart in both directions - an Aman is luxury tier and austere, a budget hotel lobby can be loudly luxurious - and welding them together loses both. It is also not a channel: trade-only says who may buy, not how much it costs.",
|
|
7427
7606
|
facets: [
|
|
@@ -7441,7 +7620,7 @@ var AXES = [
|
|
|
7441
7620
|
{
|
|
7442
7621
|
boundary: "Procurement is how a thing is bought and by whom: trade-only supply, public tender, framework agreement, contract versus retail. It is not TIER, which is how much it costs, and the two were found welded together in both estate ladders that carry either.",
|
|
7443
7622
|
facets: [],
|
|
7444
|
-
gap: "Identified while authoring TIER on 22 August 2026, from two vocabularies that had each smuggled procurement into an ordinal scale.
|
|
7623
|
+
gap: "Identified while authoring TIER on 22 August 2026, from two vocabularies that had each smuggled procurement into an ordinal scale. A materials-retrieval system's brand positioning list carries `trade-only` alongside value-to-luxury, while its own `distribution_model` dictionary already carries that value properly - the same fact recorded in two places, one of which is the wrong kind of place. A project-materials database's budget bands carry `institutional` and `public_sector` alongside budget-to-luxury, and those are precisely the two values that break that ladder's ordering. All three were refused entry to TIER rather than widening it, so they currently have nowhere canonical to go. Not yet authored.",
|
|
7445
7624
|
label: "Procurement",
|
|
7446
7625
|
question: "How is it bought, and by whom?",
|
|
7447
7626
|
slug: "procurement",
|
|
@@ -7450,7 +7629,7 @@ var AXES = [
|
|
|
7450
7629
|
{
|
|
7451
7630
|
boundary: "A strategy is something a design sets out to achieve, not an idiom it follows. Biophilic design and passive design are strategies. They are not styles and were refused entry to Style rather than widening it.",
|
|
7452
7631
|
facets: [],
|
|
7453
|
-
gap: "Identified by the crosswalk-residue test (TAX-14) from
|
|
7632
|
+
gap: "Identified by the crosswalk-residue test (TAX-14) from an architecture-projects platform's Biophilic value. That platform's own SUSTAINABILITY enum is the obvious starting point. Not yet authored.",
|
|
7454
7633
|
label: "Strategy",
|
|
7455
7634
|
question: "What was the design trying to achieve?",
|
|
7456
7635
|
slug: "strategy",
|
|
@@ -7459,7 +7638,7 @@ var AXES = [
|
|
|
7459
7638
|
{
|
|
7460
7639
|
boundary: "How much is going on on the surface: pattern incidence, applied ornament, layering, and the restraint-to-maximalism range. It is not PALETTE, which carries how colour behaves rather than how much incident there is, and it is not STYLE, though several style terms are largely density claims wearing an idiom's name.",
|
|
7461
7640
|
facets: [],
|
|
7462
|
-
gap: "Identified after the fact, by the axis critique of 21 August 2026, and it is the one real gap that review found. The source vocabularies keep asking this question and no axis here answers it:
|
|
7641
|
+
gap: "Identified after the fact, by the axis critique of 21 August 2026, and it is the one real gap that review found. The source vocabularies keep asking this question and no axis here answers it: a rendering pipeline's `patterned`, a materials-retrieval system's `playful_graphic` and `decorative_traditional`, a furnishings retailer's `Eclectic`, and an editorial image library's `Modern Maximalism` against `Warm Minimalism` - a pair that differs chiefly on density and barely on anything else. The materials-retrieval system already carries `ms_pattern_density` at MATERIAL scale, which is the obvious seed, but the room-scale question is not the same one: a room of quiet materials can still be dense with incident. Until this exists, `maximalism` is filed as a style, which flatters it.",
|
|
7463
7642
|
label: "Density",
|
|
7464
7643
|
question: "How much is going on?",
|
|
7465
7644
|
slug: "density",
|
|
@@ -7468,7 +7647,7 @@ var AXES = [
|
|
|
7468
7647
|
{
|
|
7469
7648
|
boundary: "A formal move is a building-scale geometric decision: a cantilever, a courtyard, a sawtooth roof. It is not the visible outline of a supplied unit, a product profile, an idiom or a mood.",
|
|
7470
7649
|
facets: [],
|
|
7471
|
-
gap: "Identified by the crosswalk-residue test (TAX-14) from
|
|
7650
|
+
gap: "Identified by the crosswalk-residue test (TAX-14) from an architecture-projects platform's Sculptural value. That platform's own FORMAL_MOVE_EXAMPLES is the obvious starting point. Not yet authored. A materials-retrieval system's ms_shape was considered as a seed on 2026-08-27 and REJECTED: its twelve terms (linear, fluted, channelled, blocky, slender, faceted, gridded, organic) describe a product's own profile, while this axis asks what geometric move a building makes. Seeding it here would put two questions on one axis, which is the defect every boundary in ADR 0001 exists to prevent. Part of ms_shape is also texture-adjacent - fluted and channelled are relief, and finish.texture already carries ribbed - so it needs decomposing before it seeds anything, not adopting whole.",
|
|
7472
7651
|
label: "Form",
|
|
7473
7652
|
question: "What geometric move does it make?",
|
|
7474
7653
|
slug: "form",
|
|
@@ -7484,13 +7663,13 @@ var buildIndex = () => {
|
|
|
7484
7663
|
const locations = [];
|
|
7485
7664
|
for (const axis of AXES) {
|
|
7486
7665
|
for (const facet of axis.facets) {
|
|
7487
|
-
for (const
|
|
7666
|
+
for (const term12 of facet.terms) {
|
|
7488
7667
|
const location = {
|
|
7489
7668
|
axisSlug: axis.slug,
|
|
7490
7669
|
facetSlug: facet.slug,
|
|
7491
|
-
qualifiedReference: qualifiedReferenceOf(axis, facet.slug,
|
|
7492
|
-
term:
|
|
7493
|
-
termSlug:
|
|
7670
|
+
qualifiedReference: qualifiedReferenceOf(axis, facet.slug, term12.slug),
|
|
7671
|
+
term: term12,
|
|
7672
|
+
termSlug: term12.slug
|
|
7494
7673
|
};
|
|
7495
7674
|
locations.push(location);
|
|
7496
7675
|
const key = canonicalKey(location.qualifiedReference);
|
|
@@ -7509,10 +7688,12 @@ var resolveReference = (reference) => INDEX.byKey.get(canonicalKey(reference));
|
|
|
7509
7688
|
|
|
7510
7689
|
// src/v1.ts
|
|
7511
7690
|
var TAXONOMY_BASE_URI = "https://taxonomy.materialinstruments.com";
|
|
7512
|
-
var TAXONOMY_SNAPSHOT = "2026-09-
|
|
7513
|
-
var TAXONOMY_VERSION = "1.
|
|
7691
|
+
var TAXONOMY_SNAPSHOT = "2026-09-11";
|
|
7692
|
+
var TAXONOMY_VERSION = "1.3.0";
|
|
7514
7693
|
var PUBLISHED_V1_BASELINE = "2026-08-30";
|
|
7515
7694
|
var TAX45_REVIEW_SNAPSHOT = "2026-08-31";
|
|
7695
|
+
var LIMESTONE_INTRODUCED = "2026-09-01";
|
|
7696
|
+
var RETAIL_PATTERN_SOURCE = "pattern vocabulary in a furnishings retailer (src-03)";
|
|
7516
7697
|
var compareText = (left, right) => {
|
|
7517
7698
|
if (left < right) {
|
|
7518
7699
|
return -1;
|
|
@@ -7537,8 +7718,8 @@ var DEFAULT_PROVENANCE = {
|
|
|
7537
7718
|
basis: "authored",
|
|
7538
7719
|
source: "@instruments/taxonomy published corpus"
|
|
7539
7720
|
};
|
|
7540
|
-
var lifecycleFor = (
|
|
7541
|
-
const successor =
|
|
7721
|
+
var lifecycleFor = (term12) => {
|
|
7722
|
+
const successor = term12?.supersededByReference === void 0 ? void 0 : resolveReference(term12.supersededByReference);
|
|
7542
7723
|
const successorAxis = successor === void 0 ? void 0 : AXES.find((axis) => axis.slug === successor.axisSlug);
|
|
7543
7724
|
const supersededBy = successor === void 0 || successorAxis === void 0 ? void 0 : conceptUri(
|
|
7544
7725
|
successor.axisSlug,
|
|
@@ -7547,9 +7728,9 @@ var lifecycleFor = (term10) => {
|
|
|
7547
7728
|
successorAxis.facets.length > 1 || successorAxis.facets[0]?.slug !== successorAxis.slug
|
|
7548
7729
|
);
|
|
7549
7730
|
return {
|
|
7550
|
-
introducedAt:
|
|
7551
|
-
reviewedAt:
|
|
7552
|
-
status:
|
|
7731
|
+
introducedAt: term12?.introducedAt ?? PUBLISHED_V1_BASELINE,
|
|
7732
|
+
reviewedAt: term12?.reviewedAt ?? term12?.introducedAt ?? PUBLISHED_V1_BASELINE,
|
|
7733
|
+
status: term12?.status ?? "active",
|
|
7553
7734
|
...supersededBy === void 0 ? {} : { supersededBy }
|
|
7554
7735
|
};
|
|
7555
7736
|
};
|
|
@@ -7564,11 +7745,11 @@ var inversePredicate = {
|
|
|
7564
7745
|
"suitable-for": "supported-by",
|
|
7565
7746
|
"typically-in": "typically-contains"
|
|
7566
7747
|
};
|
|
7567
|
-
var isColorScopeTerm = (
|
|
7568
|
-
var governanceFor = (explanation,
|
|
7748
|
+
var isColorScopeTerm = (term12) => term12.canonicalAuthority?.authority === "colorscope";
|
|
7749
|
+
var governanceFor = (explanation, term12) => ({
|
|
7569
7750
|
explanation,
|
|
7570
|
-
lifecycle: lifecycleFor(
|
|
7571
|
-
provenance:
|
|
7751
|
+
lifecycle: lifecycleFor(term12),
|
|
7752
|
+
provenance: term12?.provenance ?? DEFAULT_PROVENANCE,
|
|
7572
7753
|
steward: "@instruments/taxonomy"
|
|
7573
7754
|
});
|
|
7574
7755
|
var externalReferences = (mappings) => mappings?.map((mapping) => ({
|
|
@@ -7577,10 +7758,10 @@ var externalReferences = (mappings) => mappings?.map((mapping) => ({
|
|
|
7577
7758
|
label: mapping.label,
|
|
7578
7759
|
match: mapping.match
|
|
7579
7760
|
}));
|
|
7580
|
-
var governedEdge = (from, predicate, to,
|
|
7761
|
+
var governedEdge = (from, predicate, to, term12, assertion = "asserted", role) => {
|
|
7581
7762
|
const governance = governanceFor(
|
|
7582
7763
|
`Taxonomy governs the asserted ${predicate} relationship and its navigable inverse.`,
|
|
7583
|
-
|
|
7764
|
+
term12
|
|
7584
7765
|
);
|
|
7585
7766
|
return {
|
|
7586
7767
|
assertion,
|
|
@@ -7616,48 +7797,48 @@ var addTermNodes = (assembly, axis, axisUri) => {
|
|
|
7616
7797
|
governedEdge(facetUri, "belongs-to-axis", axisUri, facet.governance),
|
|
7617
7798
|
governedEdge(axisUri, "has-facet", facetUri, facet.governance, "inverse")
|
|
7618
7799
|
);
|
|
7619
|
-
for (const [termOrder,
|
|
7620
|
-
if (isColorScopeTerm(
|
|
7800
|
+
for (const [termOrder, term12] of facet.terms.entries()) {
|
|
7801
|
+
if (isColorScopeTerm(term12)) {
|
|
7621
7802
|
continue;
|
|
7622
7803
|
}
|
|
7623
|
-
const uri = conceptUri(axis.slug, facet.slug,
|
|
7624
|
-
const qualified = faceted ? `${axis.slug}.${facet.slug}.${
|
|
7804
|
+
const uri = conceptUri(axis.slug, facet.slug, term12.slug, faceted);
|
|
7805
|
+
const qualified = faceted ? `${axis.slug}.${facet.slug}.${term12.slug}` : `${axis.slug}.${term12.slug}`;
|
|
7625
7806
|
assembly.conceptByQualifiedSlug.set(qualified, uri);
|
|
7626
|
-
assembly.conceptByAxisAndTerm.set(`${axis.slug}.${
|
|
7807
|
+
assembly.conceptByAxisAndTerm.set(`${axis.slug}.${term12.slug}`, uri);
|
|
7627
7808
|
const governance = governanceFor(
|
|
7628
|
-
`Taxonomy governs the canonical identity and meaning of ${
|
|
7629
|
-
|
|
7809
|
+
`Taxonomy governs the canonical identity and meaning of ${term12.label}.`,
|
|
7810
|
+
term12
|
|
7630
7811
|
);
|
|
7631
7812
|
assembly.nodes.push({
|
|
7632
|
-
...
|
|
7813
|
+
...term12.altLabels === void 0 ? {} : { altLabels: term12.altLabels },
|
|
7633
7814
|
axis: axisUri,
|
|
7634
|
-
...
|
|
7635
|
-
...
|
|
7815
|
+
...term12.definition === void 0 ? {} : { definition: term12.definition },
|
|
7816
|
+
...term12.external === void 0 ? {} : { externalReferences: externalReferences(term12.external) },
|
|
7636
7817
|
facet: facetUri,
|
|
7637
7818
|
governance,
|
|
7638
7819
|
governedBy: "taxonomy",
|
|
7639
7820
|
kind: "concept",
|
|
7640
|
-
label:
|
|
7821
|
+
label: term12.label,
|
|
7641
7822
|
lifecycle: governance.lifecycle,
|
|
7642
|
-
...
|
|
7823
|
+
...term12.note === void 0 ? {} : { note: term12.note },
|
|
7643
7824
|
order: termOrder,
|
|
7644
|
-
...
|
|
7825
|
+
...term12.placement === void 0 ? {} : { placement: term12.placement },
|
|
7645
7826
|
provenance: governance.provenance,
|
|
7646
|
-
...
|
|
7647
|
-
...
|
|
7648
|
-
...
|
|
7649
|
-
slug:
|
|
7650
|
-
...
|
|
7651
|
-
...
|
|
7827
|
+
...term12.rank === void 0 ? {} : { rank: term12.rank },
|
|
7828
|
+
...term12.searchedWithout === void 0 ? {} : { searchedWithout: term12.searchedWithout },
|
|
7829
|
+
...term12.seenAs === void 0 ? {} : { seenAs: term12.seenAs },
|
|
7830
|
+
slug: term12.slug,
|
|
7831
|
+
...term12.span === void 0 ? {} : { span: term12.span },
|
|
7832
|
+
...term12.styleKind === void 0 ? {} : { styleKind: term12.styleKind },
|
|
7652
7833
|
uri,
|
|
7653
|
-
...
|
|
7654
|
-
...
|
|
7834
|
+
...term12.usage === void 0 ? {} : { usage: term12.usage },
|
|
7835
|
+
...term12.usageWithheld === void 0 ? {} : { usageWithheld: term12.usageWithheld }
|
|
7655
7836
|
});
|
|
7656
7837
|
assembly.edges.push(
|
|
7657
|
-
governedEdge(uri, "belongs-to-axis", axisUri,
|
|
7658
|
-
governedEdge(axisUri, "has-concept", uri,
|
|
7659
|
-
governedEdge(uri, "belongs-to-facet", facetUri,
|
|
7660
|
-
governedEdge(facetUri, "has-concept", uri,
|
|
7838
|
+
governedEdge(uri, "belongs-to-axis", axisUri, term12),
|
|
7839
|
+
governedEdge(axisUri, "has-concept", uri, term12, "inverse"),
|
|
7840
|
+
governedEdge(uri, "belongs-to-facet", facetUri, term12),
|
|
7841
|
+
governedEdge(facetUri, "has-concept", uri, term12, "inverse")
|
|
7661
7842
|
);
|
|
7662
7843
|
}
|
|
7663
7844
|
}
|
|
@@ -7856,7 +8037,7 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
7856
8037
|
`${TAXONOMY_BASE_URI}/id/pattern/type/chevron`
|
|
7857
8038
|
],
|
|
7858
8039
|
"The former combined pattern label names two distinct motif readings. It does not identify an installation layout or physical unit shape without separate evidence.",
|
|
7859
|
-
"Linear TAX-45 reviewed implementation contract
|
|
8040
|
+
"Linear TAX-45 reviewed implementation contract",
|
|
7860
8041
|
TAX45_REVIEW_SNAPSHOT,
|
|
7861
8042
|
{
|
|
7862
8043
|
introducedAt: TAX45_REVIEW_SNAPSHOT,
|
|
@@ -7871,8 +8052,8 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
7871
8052
|
`${TAXONOMY_BASE_URI}/id/pattern/type/herringbone`,
|
|
7872
8053
|
`${TAXONOMY_BASE_URI}/id/pattern/type/chevron`
|
|
7873
8054
|
],
|
|
7874
|
-
"The
|
|
7875
|
-
|
|
8055
|
+
"The furnishings retailer's compound phrase did not record which of the two distinct motif readings was intended.",
|
|
8056
|
+
`${RETAIL_PATTERN_SOURCE}, reconciled by Linear TAX-45`,
|
|
7876
8057
|
TAX45_REVIEW_SNAPSHOT,
|
|
7877
8058
|
{
|
|
7878
8059
|
introducedAt: TAX45_REVIEW_SNAPSHOT,
|
|
@@ -7889,7 +8070,7 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
7889
8070
|
],
|
|
7890
8071
|
"Mosaic can name a purchasable mosaic-tile product or the small-piece supply format; it is neither inherently a pattern nor a substance. Consumers must union any exact ColorScope named-paint reading with these domain readings rather than let an exact Taxonomy phrase shadow the external identity.",
|
|
7891
8072
|
`${searchCorpusEvidence("mosaic")}; Uniclass Pr_35_93_96_53 Mosaic tiles; consumer authority-union boundary reviewed 2026-08-31`,
|
|
7892
|
-
|
|
8073
|
+
SEARCH_CORPUS_SNAPSHOT,
|
|
7893
8074
|
{
|
|
7894
8075
|
introducedAt: TAX45_REVIEW_SNAPSHOT,
|
|
7895
8076
|
reviewedAt: TAX45_REVIEW_SNAPSHOT,
|
|
@@ -8182,10 +8363,10 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
8182
8363
|
`${TAXONOMY_BASE_URI}/id/material/limestone`,
|
|
8183
8364
|
"Limestone has one governed carbonate-stone reading in this corpus; formation, quarry, grade, cut, finish, and similarly named paint identities remain separate, and ColorScope 7.3 has no exact named-colour identity.",
|
|
8184
8365
|
crossoverSource("limestone"),
|
|
8185
|
-
|
|
8366
|
+
LIMESTONE_INTRODUCED,
|
|
8186
8367
|
{
|
|
8187
|
-
introducedAt:
|
|
8188
|
-
reviewedAt:
|
|
8368
|
+
introducedAt: LIMESTONE_INTRODUCED,
|
|
8369
|
+
reviewedAt: LIMESTONE_INTRODUCED,
|
|
8189
8370
|
status: "active"
|
|
8190
8371
|
}
|
|
8191
8372
|
),
|
|
@@ -8250,16 +8431,16 @@ var targetForLocation = (location) => {
|
|
|
8250
8431
|
)
|
|
8251
8432
|
};
|
|
8252
8433
|
};
|
|
8253
|
-
var lexicalPhrases = (
|
|
8434
|
+
var lexicalPhrases = (term12) => [term12.slug, term12.label, ...term12.altLabels ?? [], ...term12.seenAs ?? []].map((phrase) => phrase.trim().toLowerCase()).filter(
|
|
8254
8435
|
(phrase, index, phrases) => phrase.length > 0 && phrases.indexOf(phrase) === index
|
|
8255
8436
|
);
|
|
8256
8437
|
var targetKey = (target) => target.authority === "taxonomy" ? `taxonomy:${target.uri}` : `colorscope:${target.referenceKind}:${target.identifier}`;
|
|
8257
8438
|
var inferredLifecycle = (readings) => {
|
|
8258
8439
|
const terms = readings.flatMap((reading) => reading.terms);
|
|
8259
|
-
const lifecycles = terms.map((
|
|
8260
|
-
const [introducedAt] = terms.map((
|
|
8440
|
+
const lifecycles = terms.map((term12) => lifecycleFor(term12));
|
|
8441
|
+
const [introducedAt] = terms.map((term12) => term12.introducedAt ?? PUBLISHED_V1_BASELINE).toSorted(compareText);
|
|
8261
8442
|
const reviewedAt = terms.map(
|
|
8262
|
-
(
|
|
8443
|
+
(term12) => term12.reviewedAt ?? term12.introducedAt ?? PUBLISHED_V1_BASELINE
|
|
8263
8444
|
).toSorted(compareText).at(-1);
|
|
8264
8445
|
if (introducedAt === void 0 || reviewedAt === void 0) {
|
|
8265
8446
|
throw new Error("Inferred lexical reading has no source term lifecycle.");
|