cfe925a76c
Files changed: - CHANGES.md - VERSION - instructions/link-taxonomy.md - instructions/migrations/4.0.0-link-taxonomy.md - kb/comparisons/amd-pstate vs acpi-cpufreq.md - kb/concepts/Episodic Memory.md - kb/concepts/Memory Lifecycle.md - kb/concepts/Mesh Sync.md - kb/concepts/Procedural Memory.md - kb/concepts/Reciprocal Rank Fusion.md - kb/concepts/Semantic Memory.md - kb/concepts/Shared vs Private.md - kb/concepts/Split Threshold.md - kb/concepts/Stub Threshold.md - kb/concepts/Supersession.md - kb/concepts/Typed Relationships.md - kb/concepts/Vector Search.md - kb/concepts/Work Coordination.md - kb/concepts/Working Memory.md - kb/entities/technologies/Wine-Staging.md - kb/entities/tools/pascalandy schema.md - kb/index.md - kb/log.md - kb/sources/COLLECTION.md - tools/CONTRACT.md - tools/chemenu/commands/lint.py - tools/chemenu/kb_collections.py - tools/chemenu/lint_core.py - tools/chemenu/tests/test_conventions.py - tools/chemenu/tests/test_lint.py - tools/chemenu/tests/test_type_resolver.py - types/comparison.md - types/comparison.schema.yaml
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
# YAML Schema for comparison type
|
|
type: object
|
|
properties:
|
|
type:
|
|
type: string
|
|
const: "types/comparison.md"
|
|
description: Must reference the comparison type-spec
|
|
tags:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: Navigation tags for categorization
|
|
created:
|
|
type: string
|
|
format: date
|
|
pattern: "^\\d{4}-\\d{2}-\\d{2}$"
|
|
description: Creation date in YYYY-MM-DD format
|
|
entities:
|
|
type: array
|
|
items:
|
|
type: string
|
|
description: Entity titles being compared
|
|
minItems: 2
|
|
related:
|
|
type: array
|
|
items:
|
|
oneOf:
|
|
- type: string
|
|
- type: object
|
|
minProperties: 1
|
|
maxProperties: 1
|
|
additionalProperties:
|
|
type: string
|
|
description: >-
|
|
Declared outbound edges, in the same shape entity and concept pages use.
|
|
A comparison's own assertion is `compares-with` against each subject: the
|
|
titles are already in `entities:`, but that field is the untyped
|
|
provenance-style list, so without this one the edge the page exists to
|
|
make would live only in hand-written prose - which is the thing
|
|
instructions/link-taxonomy.md was built to end.
|
|
summary:
|
|
type: string
|
|
description: 1-line summary for index.md
|
|
minLength: 1
|
|
required:
|
|
- type
|
|
- created
|
|
- entities
|
|
- summary
|
|
additionalProperties: false |