removedOutput schema / $defs
Removed value: -{
- "WikiGridRow": {
- "additionalProperties": true,
- "properties": {
- "color": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Color"
- },
- "id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "integer"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Id"
- },
- "pinned": {
- "anyOf": [
- {
- "type": "boolean"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "title": "Pinned"
- },
- "row": {
- "items": {},
- "title": "Row",
- "type": "array"
- }
- },
- "title": "WikiGridRow",
- "type": "object"
- }
-}
removedOutput schema / additionalProperties
Removed value: -true
addedOutput schema / description
Added value: +"`POST /grids/{id}/cells` answers with `cells`, not `results`.\n\nIts own model rather than a shared one: `results` has a list default, so\nit is never dropped as empty, and a mutation reply carrying\n`\"results\": []` reads as \"nothing changed\" to an agent checking it."
addedOutput schema / properties / cells
Added value: +{
+ "anyOf": [
+ {
+ "items": {},
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
removedOutput schema / properties / results
Removed value: -{
- "items": {
- "$ref": "#/$defs/WikiGridRow"
- },
- "title": "Results",
- "type": "array"
-}
removedOutput schema / properties / revision / title
Removed value: -"Revision"
removedOutput schema / title
Removed value: -"GridMutationResponse"