{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://primordial.local/schemas/user_workspace_schema_v3_3.json", "title": "User Workspace Schema v3.3", "type": "object", "required": [ "workspace_id", "owner_route", "privacy_scope", "allowed_write_scope", "audit_log_path" ], "properties": { "workspace_id": { "type": "string" }, "owner_route": { "type": "string" }, "privacy_scope": { "enum": [ "PRIVATE_WORKSPACE", "CONTROLLED_LINK", "PUBLIC_READ_ONLY", "PUBLIC_CONTRIBUTION_QUEUE" ] }, "allowed_write_scope": { "enum": [ "WORKSPACE_ONLY", "OVERLAY_PROPOSAL_ONLY" ] }, "overlay_path": { "type": "string" }, "audit_log_path": { "type": "string" }, "public_contribution_policy": { "type": "string" } } }