{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectBriefRequest",
"title": "ProjectBriefRequest",
"allOf": [
{
"$ref": "#/components/schemas/ProjectBriefBase"
},
{
"type": "object",
"properties": {
"text": {
"description": "The plain text of the project brief. When writing to a project brief, you can specify either `html_text` (preferred) or `text`, but not both.",
"type": "string",
"example": "This is a project brief."
}
}
}
]
}