removedInput schema / $defs / Fact
Removed value: -{
- "additionalProperties": false,
- "properties": {
- "basis": {
- "description": "Evidence basis: stated for the user's explicit statement; observed only where the Agent Contract permits a repeated behavioral observation.",
- "enum": [
- "stated",
- "observed"
- ],
- "title": "Basis",
- "type": "string"
- },
- "content": {
- "description": "One complete, independently maintainable, single-line assertion.",
- "maxLength": 4096,
- "title": "Content",
- "type": "string"
- }
- },
- "required": [
- "basis",
- "content"
- ],
- "title": "Fact",
- "type": "object"
-}
addedInput schema / $defs / FactSelector
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "basis": {
+ "description": "Evidence basis: stated for the user's explicit statement; observed for Agent derivation or inference from current visible material.",
+ "enum": [
+ "stated",
+ "observed"
+ ],
+ "title": "Basis",
+ "type": "string"
+ },
+ "content": {
+ "description": "Exact basis and content copied from an existing Page Snapshot.",
+ "maxLength": 4096,
+ "title": "Content",
+ "type": "string"
+ }
+ },
+ "required": [
+ "basis",
+ "content"
+ ],
+ "title": "FactSelector",
+ "type": "object"
+}
addedInput schema / $defs / MoveOperation / oneOf
Added value: +[
+ {
+ "properties": {
+ "aliases": {
+ "type": "null"
+ },
+ "description": {
+ "type": "null"
+ },
+ "destination_path": {
+ "type": "string"
+ },
+ "destination_version": {
+ "type": "string"
+ },
+ "new_path": {
+ "type": "null"
+ }
+ },
+ "required": [
+ "destination_path",
+ "destination_version"
+ ]
+ },
+ {
+ "properties": {
+ "aliases": {
+ "type": "array"
+ },
+ "description": {
+ "type": "string"
+ },
+ "destination_path": {
+ "type": "null"
+ },
+ "destination_version": {
+ "type": "null"
+ },
+ "new_path": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "new_path",
+ "description",
+ "aliases"
+ ]
+ }
+]
addedInput schema / $defs / MoveOperation / properties / aliases
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 6,
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Aliases"
+}
addedInput schema / $defs / MoveOperation / properties / description
Added value: +{
+ "anyOf": [
+ {
+ "maxLength": 80,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Description"
+}
addedInput schema / $defs / MoveOperation / properties / destination_path / anyOf
Added value: +[
+ {
+ "description": "Canonical existing page path from the current Route Catalog.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / $defs / MoveOperation / properties / destination_path / default
Added value: +null
removedInput schema / $defs / MoveOperation / properties / destination_path / description
Removed value: -"Canonical existing page path from the current Route Catalog."
removedInput schema / $defs / MoveOperation / properties / destination_path / type
Removed value: -"string"
addedInput schema / $defs / MoveOperation / properties / destination_version / anyOf
Added value: +[
+ {
+ "description": "Opaque version from the latest Page Snapshot of this page; pass unchanged.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / $defs / MoveOperation / properties / destination_version / default
Added value: +null
removedInput schema / $defs / MoveOperation / properties / destination_version / description
Removed value: -"Opaque version from the latest Page Snapshot of this page; pass unchanged."
removedInput schema / $defs / MoveOperation / properties / destination_version / type
Removed value: -"string"
changedInput schema / $defs / MoveOperation / properties / facts / items / $ref
Previous value: -"#/$defs/Fact"New value: +"#/$defs/FactSelector"
changedInput schema / $defs / MoveOperation / properties / facts / maxItems
Previous value: -50New value: +30
addedInput schema / $defs / MoveOperation / properties / new_path
Added value: +{
+ "anyOf": [
+ {
+ "description": "New direct topics/, areas/, or people/ Markdown path using a canonical slug.",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "New Path"
+}
changedInput schema / $defs / MoveOperation / required
Previous value: -[
- "source_path",
- "source_version",
- "destination_path",
- "destination_version",
- "facts"
-]New value: +[
+ "source_path",
+ "source_version",
+ "facts"
+]
changedInput schema / properties / operations / maxItems
Previous value: -20New value: +15