-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathRowLevelIsolationStrategy.json
More file actions
74 lines (74 loc) · 2.2 KB
/
Copy pathRowLevelIsolationStrategy.json
File metadata and controls
74 lines (74 loc) · 2.2 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"$ref": "#/definitions/RowLevelIsolationStrategy",
"definitions": {
"RowLevelIsolationStrategy": {
"type": "object",
"properties": {
"strategy": {
"type": "string",
"const": "shared_schema",
"description": "Row-level isolation strategy"
},
"database": {
"type": "object",
"properties": {
"enableRLS": {
"type": "boolean",
"default": true,
"description": "Enable PostgreSQL Row-Level Security"
},
"contextMethod": {
"type": "string",
"enum": [
"session_variable",
"search_path",
"application_name"
],
"default": "session_variable",
"description": "How to set tenant context"
},
"contextVariable": {
"type": "string",
"default": "app.current_tenant",
"description": "Session variable name"
},
"applicationValidation": {
"type": "boolean",
"default": true,
"description": "Application-level tenant validation"
}
},
"additionalProperties": false,
"description": "Database configuration"
},
"performance": {
"type": "object",
"properties": {
"usePartialIndexes": {
"type": "boolean",
"default": true,
"description": "Use partial indexes per tenant"
},
"usePartitioning": {
"type": "boolean",
"default": false,
"description": "Use table partitioning by tenant_id"
},
"poolSizePerTenant": {
"type": "integer",
"exclusiveMinimum": 0,
"description": "Connection pool size per tenant"
}
},
"additionalProperties": false,
"description": "Performance settings"
}
},
"required": [
"strategy"
],
"additionalProperties": false
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}