1
0
mirror of https://github.com/pmmp/BedrockData.git synced 2024-07-07 19:45:53 -03:00
BedrockData/upgrade_schema/mapping_schema_schema.json
2022-02-02 14:33:43 +00:00

74 lines
1.3 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$defs": {
"blockStateProperty": {
"type": "object",
"properties": {
"type": {
"oneOf": ["int", "string", "byte"]
},
"value": {
"anyOf": ["int", "string"]
}
}
}
},
"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": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"value": {
"type": ["string", "integer"]
}
}
}
}
},
"removedProperties": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "string"
}
}
},
"remappedPropertyValues": {
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"$ref": "#/$defs/blockStateProperty"
}
}
}
}
}
}