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