aboutsummaryrefslogtreecommitdiffstats
path: root/docs/abstract-schema-changes.schema.json
blob: 9422ab38d31102ae1cbf34edcbb81eda6b03e88c (plain) (blame)
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
{
	"$schema": "https://json-schema.org/schema#",
	"description": "MediaWiki abstract database schema schema",
	"type": "object",
	"additionalProperties": false,
	"properties": {
		"comment": {
			"type": "string",
			"description": "Comment describing the schema change"
		},
		"before": {
			"oneOf": [
				{
					"type": "object",
					"description": "Emtpy object signifying table creation",
					"maxProperties": 0
				},
				{
					"type": "object",
					"description": "Schema before the change",
					"$ref": "abstract-schema-table.json"
				}
			]
		},
		"after": {
			"type": "object",
			"description": "Schema after the change",
			"$ref": "abstract-schema-table.json"
		}
	}
}