BlockMigration
Documentation for the BlockMigration asset type.
Location
Item/Block/Migrations
Use in Your Files
Add this to your JSON files for IDE autocompletion and validation:
"$schema": "https://hytaledb.ginco.gg/schemas/BlockMigration.schema.json" Schema
DirectMigrations objectnull
Additional properties: string
NameMigrations objectnull
Additional properties: string
All of
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "BlockMigration.json",
"title": "BlockMigration",
"description": "BlockMigration asset type",
"type": "object",
"allOf": [
{
"$ref": "base.schema.json"
}
],
"properties": {
"DirectMigrations": {
"type": [
"object",
"null"
],
"additionalProperties": {
"type": "string"
}
},
"NameMigrations": {
"type": [
"object",
"null"
],
"additionalProperties": {
"type": "string"
}
}
}
}