addedInput schema / properties / area / description
Added value: +"Part of the system this touches. Project-declared, so the accepted values vary; project_workspace reports them."
addedInput schema / properties / axes / description
Added value: +"Declared classification axes as { axis: value }, e.g. { context: \"treasury\" }. Project-declared, so the accepted values vary; project_workspace reports them."
addedInput schema / properties / body / description
Added value: +"Markdown body, written below the frontmatter."
addedInput schema / properties / depends / description
Added value: +"IDs of cards that must close first. Blocks this card from being ranked as actionable."
addedInput schema / properties / due / description
Added value: +"Target completion date, YYYY-MM-DD."
addedInput schema / properties / effort / description
Added value: +"Rough size: S, M or L."
addedInput schema / properties / effort / enum
Added value: +[
+ "S",
+ "M",
+ "L"
+]
addedInput schema / properties / parent / description
Added value: +"ID of the parent card. The hierarchy is bounded by cards.maxHierarchyDepth."
addedInput schema / properties / priority / description
Added value: +"How urgent the work is."
addedInput schema / properties / priority / enum
Added value: +[
+ "critical",
+ "high",
+ "medium",
+ "low"
+]
addedInput schema / properties / related / description
Added value: +"IDs of records worth reading alongside this one."
addedInput schema / properties / scope / description
Added value: +"Repository paths this work will change. Declared here, enforced when the card is claimed."
addedInput schema / properties / source / description
Added value: +"Where the work came from: an issue URL, a person, a meeting."
addedInput schema / properties / start / description
Added value: +"Planned start date, YYYY-MM-DD."
addedInput schema / properties / status / default
Added value: +"backlog"
addedInput schema / properties / status / description
Added value: +"Starting lifecycle status."
addedInput schema / properties / status / enum
Added value: +[
+ "backlog",
+ "next",
+ "doing",
+ "review",
+ "blocked",
+ "deferred",
+ "done",
+ "discarded"
+]
addedInput schema / properties / tags / description
Added value: +"Free-form tags for filtering."
addedInput schema / properties / title / description
Added value: +"What the card is about, in one line."
addedInput schema / properties / type / description
Added value: +"What kind of work this is."
addedInput schema / properties / type / enum
Added value: +[
+ "epic",
+ "idea",
+ "feature",
+ "bug",
+ "task",
+ "audit",
+ "docs",
+ "chore"
+]
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"
+}