Formatter Validator Minifier Escape / Unescape JSON ↔ String JSON ↔ YAML JSON → CSV NDJSON / JSON Lines JSON → Types JSON ↔ XML JSON Diff JSON Patch Canonicalize (RFC 8785) Schema Validator Schema Generator JSONPath Tester JWT Decoder JSON Errors Schemas More Tools
JSONTools / Schema registry / Minecraft Data Pack Biome
Schema registry

Minecraft Data Pack Biome

Configuration file defining a biome for a data pack for Minecraft

**/data/*/worldgen/biome/*.json

Check your file against this schema

Opens the validator with this schema already loaded. Paste your **/data/*/worldgen/biome/*.json and it validates in your browser — nothing is uploaded.

Validate a **/data/*/worldgen/biome/*.json → View raw schema

Fields

Generated directly from the schema, following local $refs, to two levels of nesting.

Field Type Description
depthnumberUsed for terrain noise generation. Biomes with positive depth are considered land, biomes with negative depth are oceans https://minecraft.wiki/w/Custom_biome
scalenumberUsed for terrain noise generation. Vertically stretches the terrain. Lower values produce flatter terrain https://minecraft.wiki/w/Custom_biome
has_precipitationbooleanControls if the current biome has precipitation
categorystring
one of: "none", "taiga", "extreme_hills", "jungle", "mesa", "plains" … (+11)
temperaturenumberA temperature for the current biome https://minecraft.wiki/w/Custom_biome
temperature_modifierstringA temperature modifier for the current biome https://minecraft.wiki/w/Custom_biome
default: "none"
one of: "none", "frozen"
downfallnumberA grass and foliage color for the current biome https://minecraft.wiki/w/Custom_biome
player_spawn_friendlyboolean
creature_spawn_friendlynumberSpawns passive mobs as long as random value is less than this https://minecraft.wiki/w/Custom_biome
effectsobjectEffect options for the current biome https://minecraft.wiki/w/Custom_biome
effects.fog_colorintegerA fog color https://minecraft.wiki/w/Custom_biome
effects.foliage_colorintegerDecimal value converted from Hex color to use for tree leaves and vines. If not present, the value depends on humidity and temperature https://minecraft.wiki/w/Custom_biome
effects.grass_colorintegerA grass color https://minecraft.wiki/w/Custom_biome
effects.sky_colorintegerA sky color https://minecraft.wiki/w/Custom_biome
effects.water_colorintegerA water color https://minecraft.wiki/w/Custom_biome
effects.water_fog_colorintegerDecimal value converted from Hex color to use for fog https://minecraft.wiki/w/Custom_biome
effects.grass_color_modifierstringA grass color modifier https://minecraft.wiki/w/Custom_biome
default: "none"
one of: "none", "dark_forest", "swamp"
effects.particleobjectParticle options for the current biome https://minecraft.wiki/w/Custom_biome
effects.particle.probabilitynumberA particle spawning frequency for the current biome https://minecraft.wiki/w/Custom_biome
effects.particle.optionsobjectA particle type for the current biome https://minecraft.wiki/w/Custom_biome
effects.ambient_soundstringSound event to use for ambient sound https://minecraft.wiki/w/Custom_biome
effects.mood_soundobjectSettings for mood sound https://minecraft.wiki/w/Custom_biome
effects.mood_sound.soundstringSound event to use https://minecraft.wiki/w/Custom_biome
effects.mood_sound.tick_delayinteger
effects.mood_sound.block_search_contextintegerDetermines the cubic range of possible positions to play the mood sound. The player is at the center of the cubic range, and the edge length is 2 * block_search_extent + 1 https://minecraft.wiki/w/Custom_biome
effects.mood_sound.offsetinteger
effects.additions_soundobjectSettings for additions sound https://minecraft.wiki/w/Custom_biome
effects.additions_sound.soundstringSound event to use https://minecraft.wiki/w/Custom_biome
effects.additions_sound.tick_chanceinteger
effects.musicobjectSpecific music that should be played in the biome https://minecraft.wiki/w/Custom_biome
effects.music.soundstringSound event to use https://minecraft.wiki/w/Custom_biome
effects.music.min_delayinteger
effects.music.max_delayinteger
effects.music.replace_current_musicbooleanWhether or not to replace music which is already playing https://minecraft.wiki/w/Custom_biome
surface_builderstringThe namespaced id of the configured surface builder to use https://minecraft.wiki/w/Custom_biome
carversobjectCarvers to use for the current biome https://minecraft.wiki/w/Custom_biome
carvers.airarray<string>Carvers used during air generation step for the current biome https://minecraft.wiki/w/Custom_biome
carvers.liquidarray<string>Carvers used during liquid generation step for the current biome https://minecraft.wiki/w/Custom_biome
featuresarray<['string', 'array']>Features for the current biome https://minecraft.wiki/w/Custom_biome
creature_spawn_probabilitynumberA creature spawn probability for the current biome https://minecraft.wiki/w/Custom_biome
startsarray<string>The structures to generate in this biome https://minecraft.wiki/w/Custom_biome
spawnersobjectEntity spawning options for the current biome https://minecraft.wiki/w/Custom_biome
spawners.monsterarray<object>Spawner options for the current biome https://minecraft.wiki/w/Custom_biome
spawners.creaturearray<object>Spawner options for the current biome https://minecraft.wiki/w/Custom_biome
spawners.ambientarray<object>Spawner options for the current biome https://minecraft.wiki/w/Custom_biome
spawners.water_creaturearray<object>Spawner options for the current biome https://minecraft.wiki/w/Custom_biome
spawners.underground_water_creaturearray<object>Spawner options for the current biome https://minecraft.wiki/w/Custom_biome
spawners.water_ambientarray<object>Spawner options for the current biome https://minecraft.wiki/w/Custom_biome
spawners.miscarray<object>Spawner options for the current biome https://minecraft.wiki/w/Custom_biome
spawners.axolotlsarray<object>Spawner options for the current biome https://minecraft.wiki/w/Custom_biome
spawn_costsobjectEntity identifiers for the current biome https://minecraft.wiki/w/Custom_biome

What we found in this schema

Specification sections for the keywords in this schema

Keyword Document Section
$commentJSON Schema Core, draft 2020-12§8.3 — Comments With "$comment"
$idJSON Schema Core, draft 2020-12§8.2.1 — The "$id" Keyword
$refJSON Schema Core, draft 2020-12§8.2.3.1 — Direct References with "$ref"
$schemaJSON Schema Core, draft 2020-12§8.1.1 — "$schema"
additionalPropertiesJSON Schema Core, draft 2020-12§10.3.2.3 — "additionalProperties"
allOfJSON Schema Core, draft 2020-12§10.2.1.1 — "allOf"
constJSON Schema Validation, draft 2020-12§6.1.3 — "const"
defaultJSON Schema Validation, draft 2020-12§9.2 — "default"
descriptionJSON Schema Validation, draft 2020-12§9.1 — "title" and "description"
enumJSON Schema Validation, draft 2020-12§6.1.2 — "enum"
ifJSON Schema Core, draft 2020-12§10.2.2.1 — "if"
itemsJSON Schema Core, draft 2020-12§10.3.1.2 — "items"
maxItemsJSON Schema Validation, draft 2020-12§6.4.1 — "maxItems"
maximumJSON Schema Validation, draft 2020-12§6.2.2 — "maximum"
minItemsJSON Schema Validation, draft 2020-12§6.4.2 — "minItems"
minLengthJSON Schema Validation, draft 2020-12§6.3.2 — "minLength"
minimumJSON Schema Validation, draft 2020-12§6.2.4 — "minimum"
propertiesJSON Schema Core, draft 2020-12§10.3.2.1 — "properties"
thenJSON Schema Core, draft 2020-12§10.2.2.2 — "then"
typeJSON Schema Validation, draft 2020-12§6.1.1 — "type"
uniqueItemsJSON Schema Validation, draft 2020-12§6.4.3 — "uniqueItems"

Documents

Attribution

This schema comes from SchemaStore, distributed under the Apache License 2.0. Copyright 2015–present Mads Kristensen and contributors. View the original file. The field table and audit on this page are generated by JSONTools.tools; the schema itself is unmodified.

← All schemas