The scope of the status.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StatusScope", "title": "StatusScope", "additionalProperties": false, "description": "The scope of the status.", "properties": { "project": { "$ref": "#/components/schemas/ProjectId" }, "type": { "description": "The scope of the status. `GLOBAL` for company-managed projects and `PROJECT` for team-managed projects.", "enum": [ "PROJECT", "GLOBAL" ], "type": "string" } }, "required": [ "type" ], "type": "object" }