{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectStatusBase", "title": "ProjectStatusBase", "allOf": [ { "$ref": "#/components/schemas/ProjectStatusCompact" }, { "type": "object", "properties": { "text": { "description": "The text content of the status update.", "type": "string", "example": "The project is moving forward according to plan..." }, "html_text": { "description": "[Opt In](/docs/inputoutput-options). The text content of the status update with formatting as HTML.", "type": "string", "example": "The project is moving forward according to plan..." }, "color": { "description": "The color associated with the status update.", "type": "string", "enum": [ "green", "yellow", "red", "blue", "complete" ] } } } ] }