File size: 919 Bytes
25b7932 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | {
"$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"
}
}
} |