changedInput schema / $schema
Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
addedInput schema / properties / amountMin / description
Added value: +"Inclusive minimum absolute amount. When present, transfers/accountSuccessions are floored to this amount and the response gains an \"unmatched\" bucket of large movements with no matching counterpart. Omit for the ordinary reconciled-pairs answer."
addedInput schema / properties / scope / description
Added value: +"Optional structural scope (WHO × WHEN). Omit to search across all your completed statements. \"accounts\" is a list of account/product chips (kind + identityKey); \"dateRange\" bounds by transaction date (YYYY-MM-DD)."
addedInput schema / properties / scope / properties / accounts / description
Added value: +"Account/product chips (kind + identityKey) to scope to. Empty = all accounts."
removedInput schema / properties / scope / properties / accounts / items / anyOf
Removed value: -[
- {
- "properties": {
- "anchorContentHash": {
- "type": "string"
- },
- "identityKey": {
- "minLength": 1,
- "type": "string"
- },
- "kind": {
- "const": "account",
- "type": "string"
- },
- "label": {
- "type": "string"
- }
- },
- "required": [
- "kind",
- "identityKey"
- ],
- "type": "object"
- },
- {
- "properties": {
- "identityKey": {
- "minLength": 1,
- "type": "string"
- },
- "kind": {
- "const": "product",
- "type": "string"
- },
- "label": {
- "type": "string"
- }
- },
- "required": [
- "kind",
- "identityKey"
- ],
- "type": "object"
- }
-]
addedInput schema / properties / scope / properties / accounts / items / oneOf
Added value: +[
+ {
+ "properties": {
+ "anchorContentHash": {
+ "description": "Document-anchored lookup when present (results page); omit for a user-scoped lookup (workspace surfaces).",
+ "type": "string"
+ },
+ "identityKey": {
+ "description": "Canonical account identity key (accountIdentityKey), never a raw DB UUID.",
+ "minLength": 1,
+ "type": "string"
+ },
+ "kind": {
+ "const": "account",
+ "description": "This chip addresses a single account.",
+ "type": "string"
+ },
+ "label": {
+ "description": "Display label for this chip.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "kind",
+ "identityKey"
+ ],
+ "type": "object"
+ },
+ {
+ "properties": {
+ "identityKey": {
+ "description": "Product slug.",
+ "minLength": 1,
+ "type": "string"
+ },
+ "kind": {
+ "const": "product",
+ "description": "This chip addresses a product and expands to its child accounts.",
+ "type": "string"
+ },
+ "label": {
+ "description": "Display label for this chip.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "kind",
+ "identityKey"
+ ],
+ "type": "object"
+ }
+]
addedInput schema / properties / scope / properties / dateRange / description
Added value: +"Bounds results to transactions within this date range. Omit for no date filter."
addedInput schema / properties / scope / properties / dateRange / properties / from / description
Added value: +"Start of the date range (inclusive), YYYY-MM-DD."
addedInput schema / properties / scope / properties / dateRange / properties / to / description
Added value: +"End of the date range (inclusive), YYYY-MM-DD."
changedOutput schema / $schema
Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"