removedInput schema / properties / page_type
Removed value: -{
- "default": "wysiwyg",
- "description": "Wiki page type. Prefer 'wysiwyg' unless a different editor type is required.",
- "title": "Page Type",
- "type": "string"
-}
addedOutput schema / $defs
Added value: +{
+ "WikiOwner": {
+ "description": "Page owner: the API nests the full identity payload under `user`.",
+ "properties": {
+ "group": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "user": {
+ "anyOf": [
+ {
+ "$ref": "#/$defs/WikiUser"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ }
+ },
+ "type": "object"
+ },
+ "WikiUser": {
+ "description": "Trimmed user reference — the API sends much more (identity, flags…).",
+ "properties": {
+ "display_name": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "id": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "username": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ }
+ },
+ "type": "object"
+ }
+}
removedOutput schema / additionalProperties
Removed value: -true
addedOutput schema / properties / access_lists
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
addedOutput schema / properties / access_policy
Added value: +{
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
removedOutput schema / properties / attributes / title
Removed value: -"Attributes"
removedOutput schema / properties / breadcrumbs / title
Removed value: -"Breadcrumbs"
removedOutput schema / properties / content / title
Removed value: -"Content"
removedOutput schema / properties / created_at / title
Removed value: -"Created At"
removedOutput schema / properties / id / title
Removed value: -"Id"
removedOutput schema / properties / modified_at / title
Removed value: -"Modified At"
addedOutput schema / properties / owner
Added value: +{
+ "anyOf": [
+ {
+ "$ref": "#/$defs/WikiOwner"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
removedOutput schema / properties / page_type / title
Removed value: -"Page Type"
removedOutput schema / properties / redirect / title
Removed value: -"Redirect"
removedOutput schema / properties / slug / title
Removed value: -"Slug"
removedOutput schema / properties / title / title
Removed value: -"Title"
removedOutput schema / properties / yfm_warnings / title
Removed value: -"Yfm Warnings"
removedOutput schema / title
Removed value: -"PageWriteResponse"