{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.itemBody", "title": "itemBody", "required": [ "@odata.type" ], "type": "object", "properties": { "content": { "type": "string", "description": "The content of the item.", "nullable": true }, "contentType": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.bodyType" }, { "type": "object", "nullable": true } ], "description": "The type of the content. Possible values are text and html." }, "@odata.type": { "type": "string" } } }