{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectBriefBase", "title": "ProjectBriefBase", "allOf": [ { "$ref": "#/components/schemas/ProjectBriefCompact" }, { "type": "object", "properties": { "title": { "description": "The title of the project brief.", "type": "string", "example": "Stuff to buy \u2014 Project Brief" }, "html_text": { "description": "HTML formatted text for the project brief.", "type": "string", "example": "<body>This is a <strong>project brief</strong>.</body>" } } } ] }