# core/ids/ontology.ids.ts

> 43 lines of code and 43 definitions.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-core-ids-ontology-ids-ts
Source text: https://banes-lab.com/assets/sources/source.66b248c78c303102b2dc99de052219ad76b7de7bc2b9ba74ccc20a64c63501c9.generated.txt

## Definitions

- `PRINCIPLES_TAB` (lexical_declaration, line 1, exported)
- `LEXICON_TAB` (lexical_declaration, line 2, exported)
- `ALGORITHMS_TAB` (lexical_declaration, line 3, exported)
- `REASONING_TAB` (lexical_declaration, line 4, exported)
- `SCHEMA_TAB` (lexical_declaration, line 5, exported)
- `ONTOLOGY_TAB_ORDER` (lexical_declaration, line 7, exported)
- `ARCH_ANCHOR` (lexical_declaration, line 9, exported)
- `LEX_ANCHOR` (lexical_declaration, line 10, exported)
- `ALGO_ANCHOR` (lexical_declaration, line 11, exported)
- `REASON_ANCHOR` (lexical_declaration, line 12, exported)
- `STAGE_ANCHOR` (lexical_declaration, line 13, exported)
- `TENSION_ANCHOR` (lexical_declaration, line 14, exported)
- `LAYER_ANCHOR` (lexical_declaration, line 15, exported)
- `FORCE_ANCHOR` (lexical_declaration, line 16, exported)
- `KIND_ANCHOR` (lexical_declaration, line 17, exported)
- `RELATION_ANCHOR` (lexical_declaration, line 18, exported)
- `ARCH_CATEGORY_ANCHOR` (lexical_declaration, line 19, exported)
- `LEX_CATEGORY_ANCHOR` (lexical_declaration, line 20, exported)
- `ALGO_DOMAIN_ANCHOR` (lexical_declaration, line 21, exported)
- `SUBSTRATE_SECTION_ID` (lexical_declaration, line 23, exported)
- `REASON_LAYER_SECTION_ID` (lexical_declaration, line 24, exported)
- `AXES_SECTION_ID` (lexical_declaration, line 25, exported)
- `NODE_SECTION_ID` (lexical_declaration, line 26, exported)
- `MATH_SECTION_ID` (lexical_declaration, line 27, exported)
- `DIMENSION_SECTION_ID` (lexical_declaration, line 28, exported)
- `LENS_SECTION_ID` (lexical_declaration, line 29, exported)
- `MODE_SECTION_ID` (lexical_declaration, line 30, exported)
- `REPRESENTATION_SECTION_ID` (lexical_declaration, line 31, exported)
- `PATTERN_SECTION_ID` (lexical_declaration, line 32, exported)
- `MODEL_SECTION_ID` (lexical_declaration, line 33, exported)
- `UNIVERSAL_SECTION_ID` (lexical_declaration, line 34, exported)
- `SURFACE_SECTION_ID` (lexical_declaration, line 35, exported)
- `TECHNIQUE_SECTION_ID` (lexical_declaration, line 36, exported)
- `INVARIANT_SECTION_ID` (lexical_declaration, line 37, exported)
- `UNCOVERED_SECTION_ID` (lexical_declaration, line 38, exported)
- `MAP_SECTION_ID` (lexical_declaration, line 39, exported)
- `EDGE_SECTION_ID` (lexical_declaration, line 40, exported)
- `TOPOLOGY_SECTION_ID` (lexical_declaration, line 41, exported)
- `MEMBERSHIP_SECTION_ID` (lexical_declaration, line 42, exported)
- `RESOLUTION_SECTION_ID` (lexical_declaration, line 43, exported)
- `KIND_SECTION_ID` (lexical_declaration, line 44, exported)
- `RANGE_SECTION_ID` (lexical_declaration, line 45, exported)
- `FORCE_SECTION_ID` (lexical_declaration, line 46, exported)

## Source

```typescript
export const PRINCIPLES_TAB = "principles";
export const LEXICON_TAB = "lexicon";
export const ALGORITHMS_TAB = "algorithms";
export const REASONING_TAB = "reasoning";
export const SCHEMA_TAB = "schema";

export const ONTOLOGY_TAB_ORDER = [PRINCIPLES_TAB, LEXICON_TAB, ALGORITHMS_TAB, REASONING_TAB, SCHEMA_TAB];

export const ARCH_ANCHOR = "arch-";
export const LEX_ANCHOR = "lex-";
export const ALGO_ANCHOR = "algo-";
export const REASON_ANCHOR = "reason-";
export const STAGE_ANCHOR = "stage-";
export const TENSION_ANCHOR = "tension-";
export const LAYER_ANCHOR = "layer-";
export const FORCE_ANCHOR = "force-";
export const KIND_ANCHOR = "kind-";
export const RELATION_ANCHOR = "relation-";
export const ARCH_CATEGORY_ANCHOR = "arch-category-";
export const LEX_CATEGORY_ANCHOR = "lex-category-";
export const ALGO_DOMAIN_ANCHOR = "algo-domain-";

export const SUBSTRATE_SECTION_ID = "the-substrate";
export const REASON_LAYER_SECTION_ID = "the-reasoning-layers";
export const AXES_SECTION_ID = "the-axes";
export const NODE_SECTION_ID = "the-nodes";
export const MATH_SECTION_ID = "the-mathematics";
export const DIMENSION_SECTION_ID = "the-dimensions";
export const LENS_SECTION_ID = "the-lenses";
export const MODE_SECTION_ID = "the-modes";
export const REPRESENTATION_SECTION_ID = "the-representations";
export const PATTERN_SECTION_ID = "the-pattern-types";
export const MODEL_SECTION_ID = "the-models";
export const UNIVERSAL_SECTION_ID = "the-universal-axes";
export const SURFACE_SECTION_ID = "the-test-surfaces";
export const TECHNIQUE_SECTION_ID = "the-techniques";
export const INVARIANT_SECTION_ID = "the-invariants";
export const UNCOVERED_SECTION_ID = "the-uncovered-cells";
export const MAP_SECTION_ID = "the-maps";
export const EDGE_SECTION_ID = "the-groundings";
export const TOPOLOGY_SECTION_ID = "the-layer-topology";
export const MEMBERSHIP_SECTION_ID = "the-membership";
export const RESOLUTION_SECTION_ID = "the-resolutions";
export const KIND_SECTION_ID = "the-kind-taxonomy";
export const RANGE_SECTION_ID = "the-relation-ranges";
export const FORCE_SECTION_ID = "the-forces";
```
