1
0
mirror of https://github.com/pmmp/BedrockData.git synced 2024-07-07 20:55:52 -03:00
BedrockData/upgrade_schema/mapping_schema_schema.json
2022-02-03 20:10:22 +00:00

66 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$defs": {
"blockStateProperty": {
"type": "object",
"properties": {
"type": {
"enum": ["string", "int", "byte"]
},
"value": {
"type": ["string", "integer"]
}
}
}
},
"type": "object",
"additionalProperties": false,
"properties": {
"renamedIds": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"renamedProperties": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"addedProperties": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"$ref": "#/$defs/blockStateProperty"
}
}
},
"removedProperties": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
},
"remappedPropertyValues": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/$defs/blockStateProperty"
}
}
}
}
}
}