{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://misskey.io/schemas/PageBlock", "title": "PageBlock", "type": "object", "oneOf": [ { "type": "object", "properties": { "id": { "type": "string" }, "type": { "type": "string", "enum": [ "text" ] }, "text": { "type": "string" } }, "required": [ "id", "type", "text" ] }, { "type": "object", "properties": { "id": { "type": "string" }, "type": { "type": "string", "enum": [ "section" ] }, "title": { "type": "string" }, "children": { "type": "array", "items": { "type": "object" } } }, "required": [ "id", "type", "title", "children" ] }, { "type": "object", "properties": { "id": { "type": "string" }, "type": { "type": "string", "enum": [ "image" ] }, "fileId": { "type": [ "string", "null" ] } }, "required": [ "id", "type", "fileId" ] }, { "type": "object", "properties": { "id": { "type": "string" }, "type": { "type": "string", "enum": [ "note" ] }, "detailed": { "type": "boolean" }, "note": { "type": [ "string", "null" ] } }, "required": [ "id", "type", "detailed", "note" ] } ] }