{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DefaultShareScope", "title": "DefaultShareScope", "additionalProperties": false, "description": "Details of the scope of the default sharing for new filters and dashboards.", "properties": { "scope": { "description": "The scope of the default sharing for new filters and dashboards:\n\n * `AUTHENTICATED` Shared with all logged-in users.\n * `GLOBAL` Shared with all logged-in users. This shows as `AUTHENTICATED` in the response.\n * `PRIVATE` Not shared with any users.", "enum": [ "GLOBAL", "AUTHENTICATED", "PRIVATE" ], "type": "string" } }, "required": [ "scope" ], "type": "object", "xml": { "name": "defaultShareScope" } }