addedInput schema / properties / body / description
Added value: +"Markdown body, written below the frontmatter."
addedInput schema / properties / category / description
Added value: +"Optional sub-classification within the collection."
addedInput schema / properties / collection / description
Added value: +"Which kind of memory this is. learnings: something discovered that changes how the next attempt goes. decisions: a choice made, with its rationale (ADR). incidents: something that broke, and what it cost. conventions: a rule the project now follows. context: temporary situational state, which expires."
addedInput schema / properties / confidence / description
Added value: +"How well established this is — for learnings, whether it has been seen once or many times."
addedInput schema / properties / corrective_actions / description
Added value: +"For incidents: IDs of the cards that stop it recurring."
addedInput schema / properties / deciders / description
Added value: +"For decisions: who made the call."
addedInput schema / properties / expires / description
Added value: +"For context: the date after which this stops being true, YYYY-MM-DD."
addedInput schema / properties / graduated_to / description
Added value: +"IDs of the durable records a learning has been promoted into."
addedInput schema / properties / occurrences / description
Added value: +"How many times this has been observed."
addedInput schema / properties / owners / description
Added value: +"Who is answerable for keeping this accurate."
addedInput schema / properties / related / description
Added value: +"IDs of records worth reading alongside this one."
addedInput schema / properties / resolved_at / description
Added value: +"For incidents: when it was resolved, YYYY-MM-DD."
addedInput schema / properties / review_after / description
Added value: +"Date after which this should be re-read, YYYY-MM-DD."
addedInput schema / properties / scope / description
Added value: +"Subject matter this applies to — topics, not file paths."
addedInput schema / properties / severity / description
Added value: +"For incidents: how bad it was."
addedInput schema / properties / started_at / description
Added value: +"For incidents: when it began, YYYY-MM-DD."
addedInput schema / properties / status / description
Added value: +"Lifecycle status. Each collection has its own vocabulary — a decision is proposed or accepted, an incident is open or resolved. Project-declared, so the accepted values vary; project_workspace reports them."
addedInput schema / properties / supersedes / description
Added value: +"IDs of memory records this replaces. Prefer project_memory_supersede, which updates both sides."
addedInput schema / properties / tags / description
Added value: +"Free-form tags for filtering."
addedInput schema / properties / title / description
Added value: +"The knowledge itself, stated as a claim rather than a topic."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "record": {
+ "additionalProperties": true,
+ "description": "A canonical record with its body, revision and reference graph.",
+ "properties": {
+ "archived": {
+ "description": "Whether the record lives in the archive directory.",
+ "type": "boolean"
+ },
+ "body": {
+ "description": "Markdown body below the frontmatter.",
+ "type": "string"
+ },
+ "created": {
+ "description": "Creation date, YYYY-MM-DD.",
+ "type": "string"
+ },
+ "file": {
+ "description": "File name within the collection directory.",
+ "type": "string"
+ },
+ "id": {
+ "description": "Stable record ID.",
+ "type": "string"
+ },
+ "incoming": {
+ "description": "Backlinks: references other records make to this one.",
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "incomingTotal": {
+ "description": "Total backlinks, which may exceed the returned page.",
+ "type": "integer"
+ },
+ "issues": {
+ "description": "Validation findings doctor would report for this record.",
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "kind": {
+ "description": "Record family: card, doc, change, release or memory.",
+ "type": "string"
+ },
+ "outgoing": {
+ "description": "References this record makes to others.",
+ "items": {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "path": {
+ "description": "Repository-relative path to the Markdown file.",
+ "type": "string"
+ },
+ "recordType": {
+ "description": "Type within the family.",
+ "type": "string"
+ },
+ "revision": {
+ "description": "Content hash to pass back as expectedRevision on the next write.",
+ "type": "string"
+ },
+ "status": {
+ "description": "Lifecycle status.",
+ "type": "string"
+ },
+ "tags": {
+ "description": "Free-form tags.",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "description": "Human-readable title.",
+ "type": "string"
+ },
+ "updated": {
+ "description": "Date of the last write, YYYY-MM-DD.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "record"
+ ],
+ "type": "object"
+}