{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ContentBodyCreate",
"title": "ContentBodyCreate",
"required": [
"representation",
"value"
],
"type": "object",
"additionalProperties": true,
"properties": {
"value": {
"type": "string",
"description": "The body of the content in the relevant format.",
"example": "example_value"
},
"representation": {
"type": "string",
"description": "The content format type. Set the value of this property to\nthe name of the format being used, e.g. 'storage'.",
"enum": [
"view",
"export_view",
"styled_view",
"storage",
"editor",
"editor2",
"anonymous_export_view",
"wiki",
"atlas_doc_format",
"plain",
"raw"
],
"example": "view"
}
},
"description": "This object is used when creating or updating content."
}