Asana · Schema

ProjectStatusBase

CollaborationProductivityProject ManagementProjectsTask ManagementTasksWorkflow
View JSON Schema on GitHub

JSON Schema

asana-projectstatusbase-schema.json Raw ↑
{
  "$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": "<body>The project <strong>is</strong> moving forward according to plan...</body>"
        },
        "color": {
          "description": "The color associated with the status update.",
          "type": "string",
          "enum": [
            "green",
            "yellow",
            "red",
            "blue",
            "complete"
          ]
        }
      }
    }
  ]
}