Update git submodules
[mediawiki.git] / docs / abstract-schema-changes.schema.json
blobbef3cf1c5b51de1e470fdc6c0350826e187397ff
2         "$schema": "https://json-schema.org/schema#",
3         "description": "MediaWiki abstract database schema schema",
4         "type": "object",
5         "additionalProperties": false,
6         "properties": {
7                 "comment": {
8                         "type": "string",
9                         "description": "Comment describing the schema change"
10                 },
11                 "before": {
12                         "type": "object",
13                         "description": "Schema before the change",
14                         "$ref": "abstract-schema-table.json"
15                 },
16                 "after": {
17                         "type": "object",
18                         "description": "Schema after the change",
19                         "$ref": "abstract-schema-table.json"
20                 }
21         }