2022-02-11 15:03:28 +00:00
|
|
|
{
|
|
|
|
|
"$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": {
|
2023-07-21 03:33:15 +00:00
|
|
|
"oneOf": [
|
|
|
|
|
{
|
|
|
|
|
"type": "object",
|
|
|
|
|
"description": "Emtpy object signifying table creation",
|
|
|
|
|
"maxProperties": 0
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"type": "object",
|
|
|
|
|
"description": "Schema before the change",
|
|
|
|
|
"$ref": "abstract-schema-table.json"
|
|
|
|
|
}
|
|
|
|
|
]
|
2022-02-11 15:03:28 +00:00
|
|
|
},
|
|
|
|
|
"after": {
|
|
|
|
|
"type": "object",
|
|
|
|
|
"description": "Schema after the change",
|
|
|
|
|
"$ref": "abstract-schema-table.json"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|