{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.onenotePatchContentCommand", "title": "onenotePatchContentCommand", "required": [ "@odata.type" ], "type": "object", "properties": { "action": { "$ref": "#/components/schemas/microsoft.graph.onenotePatchActionType" }, "content": { "type": "string", "description": "A string of well-formed HTML to add to the page, and any image or file binary data. If the content contains binary data, the request must be sent using the multipart/form-data content type with a 'Commands' part.", "nullable": true }, "position": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.onenotePatchInsertPosition" }, { "type": "object", "nullable": true } ], "description": "The location to add the supplied content, relative to the target element. The possible values are: after (default) or before." }, "target": { "type": "string", "description": "The element to update. Must be the # or the generated of the element, or the body or title keyword." }, "@odata.type": { "type": "string" } } }