{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SpacePermission", "type": "object", "description": "This object represents a permission for given space. Permissions consist of\nat least one operation object with an accompanying subjects object.\n\nThe following combinations of `operation` and `targetType` values are\nvalid for the `operation` object:\n\n - 'create': 'page', 'blogpost', 'comment', 'attachment'\n - 'read': 'space'\n - 'delete': 'page', 'blogpost', 'comment', 'attachment'\n - 'export': 'space'\n - 'administer': 'space'", "properties": { "id": { "type": "integer" }, "subjects": { "type": "object", "description": "The users and/or groups that the permission applies to." }, "anonymousAccess": { "type": "boolean", "description": "Grant anonymous users permission to use the operation." }, "unlicensedAccess": { "type": "boolean", "description": "Grants access to unlicensed users from JIRA Service Desk when used\nwith the 'read space' operation." } } }