addedInput schema / properties / area / description
Added value: +"Keep only these areas. Project-declared, so the accepted values vary; project_workspace reports them."
addedInput schema / properties / claimedBy / description
Added value: +"Keep only cards claimed by this actor."
addedInput schema / properties / limit / default
Added value: +50
addedInput schema / properties / limit / description
Added value: +"Maximum cards to return."
addedInput schema / properties / offset / default
Added value: +0
addedInput schema / properties / offset / description
Added value: +"Skip this many matches before the page starts."
addedInput schema / properties / parent / description
Added value: +"Keep only direct children of this card ID."
addedInput schema / properties / priority / description
Added value: +"Keep only these priorities. One of: critical, high, medium, low."
addedInput schema / properties / priority / items / enum
Added value: +[
+ "critical",
+ "high",
+ "medium",
+ "low"
+]
addedInput schema / properties / status / description
Added value: +"Keep only these statuses; any match passes. One of: backlog, next, doing, review, blocked, deferred, done, discarded."
addedInput schema / properties / status / items / enum
Added value: +[
+ "backlog",
+ "next",
+ "doing",
+ "review",
+ "blocked",
+ "deferred",
+ "done",
+ "discarded"
+]
addedInput schema / properties / tags / description
Added value: +"Keep cards carrying any of these tags."
addedInput schema / properties / type / description
Added value: +"Keep only these card types. One of: epic, idea, feature, bug, task, audit, docs, chore."
addedInput schema / properties / type / items / enum
Added value: +[
+ "epic",
+ "idea",
+ "feature",
+ "bug",
+ "task",
+ "audit",
+ "docs",
+ "chore"
+]
addedInput schema / properties / unclaimed / description
Added value: +"Keep only cards nobody has claimed."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": true,
+ "properties": {
+ "limit": {
+ "description": "Maximum this page could contain.",
+ "type": "integer"
+ },
+ "offset": {
+ "description": "Offset this page started at.",
+ "type": "integer"
+ },
+ "records": {
+ "description": "Cards matching the filters, in list projection.",
+ "items": {
+ "additionalProperties": true,
+ "description": "A record in list projection: identity and frontmatter without the Markdown body.",
+ "properties": {
+ "bodyBytes": {
+ "description": "Size in bytes of the body this projection left out.",
+ "type": "integer"
+ },
+ "created": {
+ "description": "Creation date, YYYY-MM-DD.",
+ "type": "string"
+ },
+ "id": {
+ "description": "Stable record ID: T-0042, DOC-0003, CHG-0101, ADR-0009.",
+ "type": "string"
+ },
+ "incomingTotal": {
+ "description": "How many other records link to this one.",
+ "type": "integer"
+ },
+ "kind": {
+ "description": "Record family: card, doc, change, release or memory.",
+ "type": "string"
+ },
+ "path": {
+ "description": "Repository-relative path to the Markdown file.",
+ "type": "string"
+ },
+ "recordType": {
+ "description": "Type within the family — a card's type, a document's kind, a memory record's collection.",
+ "type": "string"
+ },
+ "status": {
+ "description": "Lifecycle status, in the vocabulary of this record's family.",
+ "type": "string"
+ },
+ "title": {
+ "description": "Human-readable title.",
+ "type": "string"
+ },
+ "updated": {
+ "description": "Date of the last write, YYYY-MM-DD.",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Matches before offset and limit were applied.",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "records",
+ "total"
+ ],
+ "type": "object"
+}