{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Scope", "title": "Scope", "additionalProperties": true, "description": "The projects the item is associated with. Indicated for items associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO).", "properties": { "project": { "allOf": [ { "$ref": "#/components/schemas/ProjectDetails" } ], "description": "The project the item has scope in.", "readOnly": true }, "type": { "description": "The type of scope.", "enum": [ "PROJECT", "TEMPLATE" ], "readOnly": true, "type": "string" } }, "type": "object" }