<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Minecraft%3AIdentifier</id>
	<title>Minecraft:Identifier - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sasgaming.net/index.php?action=history&amp;feed=atom&amp;title=Minecraft%3AIdentifier"/>
	<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Identifier&amp;action=history"/>
	<updated>2026-04-09T09:08:49Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.sasgaming.net/index.php?title=Minecraft:Identifier&amp;diff=50219&amp;oldid=prev</id>
		<title>imported&gt;Wilf233 at 07:16, 3 April 2026</title>
		<link rel="alternate" type="text/html" href="https://wiki.sasgaming.net/index.php?title=Minecraft:Identifier&amp;diff=50219&amp;oldid=prev"/>
		<updated>2026-04-03T07:16:58Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Identifiers&amp;#039;&amp;#039;&amp;#039; (also known as &amp;#039;&amp;#039;&amp;#039;resource locations&amp;#039;&amp;#039;&amp;#039;, &amp;#039;&amp;#039;&amp;#039;namespaced IDs&amp;#039;&amp;#039;&amp;#039;, &amp;#039;&amp;#039;&amp;#039;namespaced identifiers&amp;#039;&amp;#039;&amp;#039;, &amp;#039;&amp;#039;&amp;#039;resource identifiers&amp;#039;&amp;#039;&amp;#039;,&amp;lt;ref&amp;gt;{{snap|19w39a|September 27, 2019}}&amp;lt;/ref&amp;gt; or &amp;#039;&amp;#039;&amp;#039;namespaced strings&amp;#039;&amp;#039;&amp;#039;&amp;lt;ref&amp;gt;[https://github.com/Mojang/DataFixerUpper/blob/8b5f82ab78b30ff5813b3a7f3906cd3f4f732acf/src/main/java/com/mojang/datafixers/types/constant/NamespacedStringType.java DataFixerUpper/NamespacedStringType.java at 8b5f82ab78b30ff5813b3a7f3906cd3f4f732acf · Mojang/DataFixerUpper] – GitHub&amp;lt;/ref&amp;gt;) are a way to declare and specify game objects in &amp;#039;&amp;#039;Minecraft&amp;#039;&amp;#039;, which can identify built-in and user-defined objects without potential ambiguity or conflicts.&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Identifiers are used as plain strings to reference [[Minecraft:block]]s, [[Minecraft:item]]s, [[Minecraft:Entity#Types of entities|entity types]], and various other objects in vanilla &amp;#039;&amp;#039;Minecraft&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
A valid identifier has a format of &amp;lt;code&amp;gt;namespace:path&amp;lt;/code&amp;gt;, where only certain characters can be used.&lt;br /&gt;
&lt;br /&gt;
=== Legal characters ===&lt;br /&gt;
&lt;br /&gt;
==== &amp;#039;&amp;#039;Java Edition&amp;#039;&amp;#039; ====&lt;br /&gt;
The namespace and the path of an identifier should only contain the following symbols:&lt;br /&gt;
&lt;br /&gt;
* &amp;lt;code&amp;gt;0123456789&amp;lt;/code&amp;gt; Numbers&lt;br /&gt;
* &amp;lt;code&amp;gt;abcdefghijklmnopqrstuvwxyz&amp;lt;/code&amp;gt; Lowercase letters&lt;br /&gt;
* &amp;lt;code&amp;gt;_&amp;lt;/code&amp;gt; Underscore&lt;br /&gt;
* &amp;lt;code&amp;gt;-&amp;lt;/code&amp;gt; Hyphen/minus&lt;br /&gt;
* &amp;lt;code&amp;gt;.&amp;lt;/code&amp;gt; Dot&lt;br /&gt;
&lt;br /&gt;
The following characters are illegal in the namespace, but acceptable in the path:&lt;br /&gt;
* &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; Forward slash (directory separator)&lt;br /&gt;
&lt;br /&gt;
The preferred naming convention for either namespace or path is &amp;lt;code&amp;gt;snake_case&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==== &amp;#039;&amp;#039;Bedrock Edition&amp;#039;&amp;#039; ====&lt;br /&gt;
The namespace and the path of a namespaced ID can contain all symbols with the exception of slashes and colons.&lt;br /&gt;
&lt;br /&gt;
The following characters are illegal in the namespace, but acceptable in the path of &amp;#039;&amp;#039;&amp;#039;loot tables and functions&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
* &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; Forward slash (directory separator)&lt;br /&gt;
&lt;br /&gt;
The preferred naming convention for either namespace or path is &amp;lt;code&amp;gt;snake_case&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
=== Conversion to string ===&lt;br /&gt;
An identifier is converted to a string by concatenating its namespace with a &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; (colon) and its path.&lt;br /&gt;
&lt;br /&gt;
Examples:&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Namespace !! Path !! String representation&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;diamond&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;minecraft:diamond&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;foo&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;bar.baz&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;foo:bar.baz&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;minecraftwiki&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;commands/minecraft_wiki&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;minecraftwiki:commands/minecraft_wiki&amp;lt;/code&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Conversion from string ===&lt;br /&gt;
&lt;br /&gt;
All identifiers can be converted to strings; however, not all strings can be converted to identifiers.&lt;br /&gt;
&lt;br /&gt;
For a string to be converted, it must follow these restrictions:&lt;br /&gt;
* The string may have at most one &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; (colon) character&lt;br /&gt;
* The rest of the string must fulfill the requirement for [[#Legal characters|legal characters]]. This includes disallowing &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; (forward slash) characters before the &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt;, if a &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; is present&lt;br /&gt;
&lt;br /&gt;
When the &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; is present, the part of the string before the &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; becomes the namespace, and the part of the string after the &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; becomes the path.&lt;br /&gt;
&lt;br /&gt;
{{IN|java}}, and in some cases {{in|bedrock}}, when the &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; is absent, [[#minecraft namespace|&amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt;]] becomes the namespace and the whole string becomes the path.&lt;br /&gt;
&lt;br /&gt;
It is recommended to always include a &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; in the string format of identifiers.&lt;br /&gt;
&lt;br /&gt;
;Examples&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! String !! Resolved namespace !! Resolved path !! What the game converts it back to&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;bar:code&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;bar&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;code&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;bar:code&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;minecraft:zombie&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;zombie&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;minecraft:zombie&amp;lt;/code&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;diamond&amp;lt;/code&amp;gt;&lt;br /&gt;
| &lt;br /&gt;
*&amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt;{{only|java}}&lt;br /&gt;
*None{{only|bedrock}}&lt;br /&gt;
| &amp;lt;code&amp;gt;diamond&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
*&amp;lt;code&amp;gt;minecraft:diamond&amp;lt;/code&amp;gt;{{only|java}}&lt;br /&gt;
*&amp;lt;code&amp;gt;diamond&amp;lt;/code&amp;gt;{{only|bedrock}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;:dirt&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;dirt&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;minecraft:dirt&amp;lt;/code&amp;gt;{{needs testing|bedrock=1}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;minecraft:&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt; || None || &amp;lt;code&amp;gt;minecraft:&amp;lt;/code&amp;gt;{{needs testing|bedrock=1}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;:&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt; || None || &amp;lt;code&amp;gt;minecraft:&amp;lt;/code&amp;gt;{{needs testing|bedrock=1}}&lt;br /&gt;
|-&lt;br /&gt;
| Empty String || &amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt; || None || &amp;lt;code&amp;gt;minecraft:&amp;lt;/code&amp;gt;{{needs testing|bedrock=1}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;foo/bar:coal&amp;lt;/code&amp;gt; || Invalid character &amp;lt;code&amp;gt;/&amp;lt;/code&amp;gt; || ||&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;minecraft/villager&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
*&amp;lt;code&amp;gt;minecraft&amp;lt;/code&amp;gt;{{only|java}}&lt;br /&gt;
*None{{only|bedrock}}&lt;br /&gt;
| &amp;lt;code&amp;gt;minecraft/villager&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
*&amp;lt;code&amp;gt;minecraft:minecraft/villager&amp;lt;/code&amp;gt;{{only|java}}&lt;br /&gt;
*&amp;lt;code&amp;gt;minecraft/villager&amp;lt;/code&amp;gt;{{only|bedrock}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;mymap:schrödingers_var&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;mymap&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
*Invalid character &amp;lt;code&amp;gt;ö&amp;lt;/code&amp;gt;{{only|java}}&lt;br /&gt;
*&amp;lt;code&amp;gt;schrödingers_var&amp;lt;/code&amp;gt;{{only|bedrock}}&lt;br /&gt;
|&amp;lt;code&amp;gt;mymap:schrödingers_var&amp;lt;/code&amp;gt;{{only|bedrock}}&lt;br /&gt;
|-&lt;br /&gt;
| &amp;lt;code&amp;gt;custom_pack:Capital&amp;lt;/code&amp;gt; || &amp;lt;code&amp;gt;custom_pack&amp;lt;/code&amp;gt;&lt;br /&gt;
|&lt;br /&gt;
*Invalid character &amp;lt;code&amp;gt;C&amp;lt;/code&amp;gt;{{only|java}}&lt;br /&gt;
*&amp;lt;code&amp;gt;Capital&amp;lt;/code&amp;gt;{{only|bedrock}}&lt;br /&gt;
|&amp;lt;code&amp;gt;custom_pack:Capital&amp;lt;/code&amp;gt;{{only|bedrock}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== &amp;#039;&amp;#039;Java Edition&amp;#039;&amp;#039; usage ==&lt;br /&gt;
{{wip|section=1}}&lt;br /&gt;
&lt;br /&gt;
{{IN|java}}, identifiers act mainly as main keys of objects in registries or file paths of contents in [[Minecraft:data packs]] and [[Minecraft:resource packs]]. Some non-customizable contents also use identifiers to identify them.&lt;br /&gt;
&lt;br /&gt;
=== Registries and registry objects ===&lt;br /&gt;
{{update|section=1|Lots of tags seem missing, see [[Minecraft::zh:注册表]] for reference to add here if you speak Chinese}}&lt;br /&gt;
&amp;lt;div class=&amp;quot;treeview&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
All registries and objects therein have identifiers to represent them. At the root of all registries is a registry with the identifier of {{cd|minecraft:root|inline=1}} into which all other registries are registered. Most registries are intended only for use internally by the game and by extension by [[Minecraft:mods]], but some &amp;#039;&amp;#039;dynamic&amp;#039;&amp;#039; registries can have content added to them through [[Minecraft:data packs]], marked in the list below with an asterisk (&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
* {{File|directory|minecraft:root|inline=1}}: Root registry.&lt;br /&gt;
** {{File|file|minecraft:attribute|inline=1}}: Attributes.&lt;br /&gt;
** {{File|file|minecraft:block|inline=1}}: Blocks.&lt;br /&gt;
** {{File|file|minecraft:block_entity_type|inline=1}}: Block entity types.&lt;br /&gt;
** {{File|file|minecraft:chunk_status|inline=1}}: Chunk status.&lt;br /&gt;
** {{File|file|minecraft:command_argument_type|inline=1}}: Command argument types.&lt;br /&gt;
** {{File|file|minecraft:dimension|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Dimensions and level stems.&lt;br /&gt;
** {{File|file|minecraft:dimension_type|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Dimension types.&lt;br /&gt;
** {{File|file|minecraft:enchantment|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Enchantments.&lt;br /&gt;
** {{File|file|minecraft:entity_type|inline=1}}: Entity types.&lt;br /&gt;
** {{File|file|minecraft:fluid|inline=1}}: Fluids.&lt;br /&gt;
** {{File|file|minecraft:game_event|inline=1}}: Game events.&lt;br /&gt;
** {{File|file|minecraft:position_source_type|inline=1}}: Position source types (used by game events).&lt;br /&gt;
** {{File|file|minecraft:item|inline=1}}: Items.&lt;br /&gt;
** {{File|file|minecraft:menu|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Menu types.&lt;br /&gt;
** {{File|file|minecraft:mob_effect|inline=1}}: Mob effects.&lt;br /&gt;
** {{File|file|minecraft:particle_type|inline=1}}: Particle types.&lt;br /&gt;
** {{File|file|minecraft:potion|inline=1}}: Potions.&lt;br /&gt;
** {{File|file|minecraft:recipe_serializer|inline=1}}: Recipe serializers.&lt;br /&gt;
** {{File|file|minecraft:recipe_type|inline=1}}: Recipe types.&lt;br /&gt;
** {{File|file|minecraft:sound_event|inline=1}}: Sound events.&lt;br /&gt;
** {{File|file|minecraft:stat_type|inline=1}}: Statistics types.&lt;br /&gt;
** {{File|file|minecraft:custom_stat|inline=1}}: Custom Statistics.&lt;br /&gt;
** {{File|file|minecraft:world_clock|inline=1}}: [[Minecraft:World clock]]s.&lt;br /&gt;
** {{File|file|minecraft:timeline|inline=1}} Timelines for world clocks.&lt;br /&gt;
** {{File|directory|inline=1}} Entity data registries:&lt;br /&gt;
*** {{File|file|minecraft:activity|inline=1}}: Entity schedule activitys.&lt;br /&gt;
*** {{File|file|minecraft:memory_module_type|inline=1}}: Entity memory module types.&lt;br /&gt;
*** {{File|file|minecraft:schedule|inline=1}}: Entity schedules.&lt;br /&gt;
*** {{File|file|minecraft:sensor_type|inline=1}}: Entity AI sensor types.&lt;br /&gt;
*** {{File|file|minecraft:motive|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Painting motives.&lt;br /&gt;
*** {{File|file|minecraft:villager_profession|inline=1}}: Villager professions.&lt;br /&gt;
*** {{File|file|minecraft:villager_type|inline=1}}: Villager types.&lt;br /&gt;
*** {{File|file|minecraft:villager_trade|inline=1}}: [[Minecraft:Villager trade definition]].&lt;br /&gt;
*** {{File|file|minecraft:point_of_interest_type|inline=1}}: Poi types.&lt;br /&gt;
** {{File|directory|inline=1}} Loot table serializers:&lt;br /&gt;
*** {{File|file|minecraft:loot_condition_type|inline=1}}: Loot condition types.&lt;br /&gt;
*** {{File|file|minecraft:loot_function_type|inline=1}}: Loot function types.&lt;br /&gt;
*** {{File|file|minecraft:loot_nbt_provider_type|inline=1}}: Loot nbt provider types.&lt;br /&gt;
*** {{File|file|minecraft:loot_number_provider_type|inline=1}}: Loot number provider types.&lt;br /&gt;
*** {{File|file|minecraft:loot_pool_entry_type|inline=1}}: Loot pool entry types.&lt;br /&gt;
*** {{File|file|minecraft:loot_score_provider_type|inline=1}}: Loot score provider types.&lt;br /&gt;
** {{File|directory|inline=1}} JSON file value providers:&lt;br /&gt;
*** {{File|file|minecraft:float_provider_type|inline=1}}: Float provider types.&lt;br /&gt;
*** {{File|file|minecraft:int_provider_type|inline=1}}: Int provider types.&lt;br /&gt;
*** {{File|file|minecraft:height_provider_type|inline=1}}: Height provider types.&lt;br /&gt;
** {{File|directory|inline=1}} World generator registries:&lt;br /&gt;
*** {{File|file|minecraft:block_predicate_type|inline=1}}: Block predicate types.&lt;br /&gt;
*** {{File|file|minecraft:rule_test|inline=1}}: Structure feature rule test types.&lt;br /&gt;
*** {{File|file|minecraft:pos_rule_test|inline=1}}: Structure feature position rule test types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/carver|inline=1}}: World carvers.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/configured_carver|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Configured world carvers.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/feature|inline=1}}: Features.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/configured_feature|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Configured features.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/structure_set|inline=1}}: Structure sets.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/structure_processor|inline=1}}: Structure processor types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/processor_list|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Structure processor lists.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/structure_pool_element|inline=1}}: Structure pool element types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/template_pool|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Structure template pools.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/structure_piece|inline=1}}: Structure piece types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/structure_type|inline=1}}: Structure features.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/structure|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Configured structure features.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/structure_placement|inline=1}}: Structure placement types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/placement_modifier_type|inline=1}}: Placement modifier types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/placed_feature|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Placed features.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/biome|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Biomes.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/biome_source|inline=1}}: Biome sources.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/noise|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Normal noise.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/noise_settings|inline=1}}&amp;lt;span style=&amp;quot;color:#d33&amp;quot;&amp;gt;*&amp;lt;/span&amp;gt;: Noise generator settings.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/density_function|inline=1}}: Density functions.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/density_function_type|inline=1}}: Density function types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/world_preset|inline=1}}: World presets.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/flat_level_generator_preset|inline=1}}: Flat world generator presets.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/chunk_generator|inline=1}}: Chunk generators.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/material_condition|inline=1}}: Surface condition sources.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/material_rule|inline=1}}: Surface rule sources.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/block_state_provider_type|inline=1}}: Block state provider types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/foliage_placer_type|inline=1}}: Foliage placer types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/trunk_placer_type|inline=1}}: Trunk placer types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/tree_decorator_type|inline=1}}: Tree decorator types.&lt;br /&gt;
*** {{File|file|minecraft:worldgen/feature_size_type|inline=1}}: Feature size types.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Pack contents===&lt;br /&gt;
Identifiers are also used to represent file paths in [[Minecraft:data packs]] or [[Minecraft:resource packs]].&lt;br /&gt;
&lt;br /&gt;
; Data pack&lt;br /&gt;
:* Tags&lt;br /&gt;
:* Advancements&lt;br /&gt;
:* Recipes&lt;br /&gt;
:* Predicates&lt;br /&gt;
:* Loot tables&lt;br /&gt;
:* Item modifier&lt;br /&gt;
:* Functions&lt;br /&gt;
:* Structure files&lt;br /&gt;
:* Dimensions&lt;br /&gt;
:* Dimension types&lt;br /&gt;
:* &amp;#039;&amp;#039;World generator contents&amp;#039;&amp;#039;&lt;br /&gt;
:** Biomes&lt;br /&gt;
:** Configured carvers&lt;br /&gt;
:** Configured features&lt;br /&gt;
:** Configured structure features&lt;br /&gt;
:** Placed features&lt;br /&gt;
:** Structures&lt;br /&gt;
:** Structure sets&lt;br /&gt;
:** Processor lists&lt;br /&gt;
:** Template pools&lt;br /&gt;
:** Noise&lt;br /&gt;
:** Noise generator settings&lt;br /&gt;
:** Density functions&lt;br /&gt;
:** Flat level generator presets&lt;br /&gt;
:** World presets&lt;br /&gt;
&lt;br /&gt;
; Resource pack&lt;br /&gt;
:* Block state model definitions&lt;br /&gt;
:* Models&lt;br /&gt;
:* Textures&lt;br /&gt;
:* Sounds&lt;br /&gt;
:* Fonts&lt;br /&gt;
:* Font resource files&lt;br /&gt;
:* Particles&lt;br /&gt;
:* Shaders&lt;br /&gt;
&lt;br /&gt;
==== Locating contents in packs ====&lt;br /&gt;
Given that objects in resource packs and data packs are files, the identifiers are constructed from their path relative to the {{cd|data}} or {{cd|assets}} folder.&lt;br /&gt;
&lt;br /&gt;
Though the locations vary by object type and the pack type the object type belongs to, there is a pattern to follow. In general, the location is in the fashion of pack_type/namespace/object_type/name.suffix, where all the / (forward slash) symbol (may be part of object_type or name) is replaced by operating system-dependent directory separator.&lt;br /&gt;
&lt;br /&gt;
Given the type of content we want to locate, we can find out the corresponding {{cd|&amp;#039;&amp;#039;pack_type&amp;#039;&amp;#039;}}, {{cd|&amp;#039;&amp;#039;object_type&amp;#039;&amp;#039;}}, and {{cd|&amp;#039;&amp;#039;suffix&amp;#039;&amp;#039;}}. Then, we can substitute in and find out the final file location of the content.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;collapsible collapsed collapsetoggle-inline&amp;quot; data-expandtext=&amp;quot;show&amp;quot; data-collapsetext=&amp;quot;hide&amp;quot;&amp;gt;&lt;br /&gt;
Examples&lt;br /&gt;
&amp;lt;!-- TODO: Add more?--&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Identifier !! Content Type !! {{cd|&amp;#039;&amp;#039;pack_type&amp;#039;&amp;#039;}} !! {{cd|&amp;#039;&amp;#039;object_type&amp;#039;&amp;#039;}} !! {{cd|&amp;#039;&amp;#039;suffix&amp;#039;&amp;#039;}} !! Final Location&lt;br /&gt;
|-&lt;br /&gt;
| {{cd|my_texture_pack:diamonds}} || [[Minecraft:Resource pack#Textures|Texture]] || {{cd|assets}} || {{cd|textures}} || {{cd|png}} || {{cd|assets/my_texture_pack/textures/diamonds.png}}&lt;br /&gt;
|-&lt;br /&gt;
| {{cd|abc:run_game}} || [[Minecraft:Function (Java Edition)|Function]] || {{cd|data}} || {{cd|functions}} || {{cd|mcfunction}} || {{cd|data/abc/functions/run_game.mcfunction}}&lt;br /&gt;
|-&lt;br /&gt;
| {{cd|block/torch}}&amp;lt;br&amp;gt;(same as {{cd|minecraft:block/torch}}) || [[Minecraft:Model]] || {{cd|assets}} || {{cd|models}} || {{cd|json}} || {{cd|assets/minecraft/models/block/torch.json}}&lt;br /&gt;
|-&lt;br /&gt;
| {{cd|load}}&amp;lt;br&amp;gt;(same as {{cd|minecraft:load}}) || [[Minecraft:Tag#Function Tags|Function Tag]] || {{cd|data}} || {{cd|tags/functions}} || {{cd|json}} || {{cd|data/minecraft/tags/functions/load.json}}&lt;br /&gt;
|-&lt;br /&gt;
| {{cd|rocket_pack:industry/start_of_story}} || [[Minecraft:Advancement]] || {{cd|data}} || {{cd|advancements}} || {{cd|json}} || {{cd|data/rocket_pack/advancements/industry/start_of_story.json}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Registered pack contents ====&lt;br /&gt;
A registried pack content refers to pack content that is registered into a registry when the pack is loaded. For a registried pack content, its identifier works as both main key of registry entry and path of its resource file.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;collapsible collapsed collapsetoggle-inline&amp;quot; data-expandtext=&amp;quot;show&amp;quot; data-collapsetext=&amp;quot;hide&amp;quot;&amp;gt;&lt;br /&gt;
List of registered pack contents&lt;br /&gt;
&amp;lt;div class=&amp;quot;collapsible-content&amp;quot;&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Content Type !! Registered into !! Folder !! Suffix&lt;br /&gt;
|-&lt;br /&gt;
| Dimensions || {{cd|minecraft:dimension}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/dimension}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Dimension types || {{cd|minecraft:dimension_type}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/dimension_type}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Configured carvers || {{cd|minecraft:worldgen/configured_carver}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/configured_carver}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Configured features || {{cd|minecraft:worldgen/configured_feature}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/configured_feature}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Configured structure features || {{cd|minecraft:worldgen/structure}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/structure}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Structure sets || {{cd|minecraft:worldgen/structure_set}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/structure_set}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Processor lists || {{cd|minecraft:worldgen/processor_list}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/processor_list}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Template pools || {{cd|minecraft:worldgen/template_pool}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/template_pool}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Placed features || {{cd|minecraft:worldgen/placed_feature}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/placed_feature}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Biomes || {{cd|minecraft:worldgen/biome}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/biome}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Noise || {{cd|minecraft:worldgen/noise}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/noise}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Noise generator settings || {{cd|minecraft:worldgen/noise_settings}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/noise_settings}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Density functions || {{cd|minecraft:worldgen/density_function}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/density_function}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| Flat level generator presets || {{cd|minecraft:worldgen/flat_level_generator_preset}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/flat_level_generator_preset}} || {{cd|json}}&lt;br /&gt;
|-&lt;br /&gt;
| World presets || {{cd|minecraft:worldgen/world_preset}} || {{cd|data/&amp;#039;&amp;#039;namespace&amp;#039;&amp;#039;/worldgen/world_preset}} || {{cd|json}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Other contents===&lt;br /&gt;
; Customizable contents&lt;br /&gt;
:* Boss bars&lt;br /&gt;
:* Command storages&lt;br /&gt;
&lt;br /&gt;
; Hardcoded contents&lt;br /&gt;
:* Cat types for predicates (e.g. textures/entity/cat/tabby.png, textures/entity/cat/jellie.png)&lt;br /&gt;
:* Criteria triggers&lt;br /&gt;
:* Item properties (i.e. item predicates in models. e.g. angle, custom_model_data)&lt;br /&gt;
:* Loot context param sets (i.e. types of loot table. e.g. barter, generic)&lt;br /&gt;
:* Unaccessible contents:&lt;br /&gt;
:** Suggestion providers for autocompletion of commands (e.g. summonable_entities, all_recipes)&lt;br /&gt;
:** Entity models&lt;br /&gt;
:** Loot context params (e.g. this_entity, origin, tool)&lt;br /&gt;
&lt;br /&gt;
== &amp;#039;&amp;#039;Bedrock Edition&amp;#039;&amp;#039; usage ==&lt;br /&gt;
Unlike &amp;#039;&amp;#039;Java Edition&amp;#039;&amp;#039;, where there is a unified standard and handling methods of them, namespaced identifiers are usually treated as normal strings in Bedrock Edition. Moreover, some objects are identified based on their path (e.g. the identifier for [[Minecraft:recipe]]s and [[Minecraft:Villager trade definition|trades]]) rather than what was defined in their file. In these cases, it is recommended that a folder named after the namespace is parented before the file at hand.&amp;lt;ref name=&amp;quot;cooperative&amp;quot;&amp;gt;{{Citation|url=https://learn.microsoft.com/en-us/minecraft/creator/documents/practices/guidelinesforbuildingcooperativeaddons?view=minecraft-bedrock-stable|title=Guidelines for Building Cooperative Add-Ons|website=Minecraft: Bedrock Edition Creator Documentation}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following is a list of all places that use namespaced identifiers: &amp;lt;!-- Todo add more, incomplete--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Built-in contents ===&lt;br /&gt;
:* Blocks&lt;br /&gt;
:* Block traits&lt;br /&gt;
:* Block entities&lt;br /&gt;
:* Items&lt;br /&gt;
:* Entities&lt;br /&gt;
:* Status effects&lt;br /&gt;
:* Dimensions &lt;br /&gt;
:* Biomes&lt;br /&gt;
:* Structures&lt;br /&gt;
:* Features&lt;br /&gt;
:* Entity attributes&lt;br /&gt;
:* Item NBT components&lt;br /&gt;
:* Item components&lt;br /&gt;
:* Block components&lt;br /&gt;
:* Entity components&lt;br /&gt;
:* JSON schemas&lt;br /&gt;
:* GameTest script-enabled components&lt;br /&gt;
&lt;br /&gt;
===Registried add-on entries===&lt;br /&gt;
A registried add-on entry refers to any add-on content that is registered with an identifier declared within the content&amp;#039;s file definition. Custom content under these types are able to be created.&lt;br /&gt;
&lt;br /&gt;
Here is a list of registried add-on entries whose identifiers are namespaced.&lt;br /&gt;
&lt;br /&gt;
; Behavior pack contents&lt;br /&gt;
:* Blocks&lt;br /&gt;
:* Block states&lt;br /&gt;
:* Entities&lt;br /&gt;
:* Entity events&lt;br /&gt;
:* Items&lt;br /&gt;
:* Spawn rules&lt;br /&gt;
:* Biomes&lt;br /&gt;
:* Features&lt;br /&gt;
:* Feature rules&lt;br /&gt;
:* Recipes&lt;br /&gt;
:* Structures&lt;br /&gt;
:* GameTests&lt;br /&gt;
:* Dialog scenes&lt;br /&gt;
:* Spawn groups&lt;br /&gt;
:* Structure sets&lt;br /&gt;
:* Template pools&lt;br /&gt;
:* Processor lists&lt;br /&gt;
:* Catalog groups&lt;br /&gt;
&lt;br /&gt;
; Resource pack contents&lt;br /&gt;
:* Attachables&lt;br /&gt;
:* Cameras&lt;br /&gt;
:* Entity client definitions&lt;br /&gt;
:* Particle effects&lt;br /&gt;
:* Biome client definitions&lt;br /&gt;
:* Fog settings&lt;br /&gt;
:* Lighting settings&lt;br /&gt;
:* Atmosphere settings&lt;br /&gt;
:* Color grading settings&lt;br /&gt;
:* Water effect settings&lt;br /&gt;
&lt;br /&gt;
Some custom fields in add-on files can also be namespaced, such as custom block properties and entity component groups, which aren&amp;#039;t listed here.&lt;br /&gt;
&lt;br /&gt;
==== Others ====&lt;br /&gt;
:* Structures saved from a structure block&lt;br /&gt;
&lt;br /&gt;
=== Script-registered entries ===&lt;br /&gt;
Some content may also be registered within the scripts of behavior packs. These are read as the world is generating.&lt;br /&gt;
&lt;br /&gt;
:*Block components&lt;br /&gt;
:*Item components&lt;br /&gt;
:*Commands&lt;br /&gt;
&lt;br /&gt;
== Namespaces ==&lt;br /&gt;
{{quote|This isn&amp;#039;t a new concept, but I thought I should reiterate what a &amp;quot;namespace&amp;quot; is. Most things in the game has a namespace, so that if we add {{cd|something}} and a mod (or map, or whatever) adds {{cd|something}}, they&amp;#039;re both different {{cd|something}}s. Whenever you&amp;#039;re asked to name something, for example a loot table, you&amp;#039;re expected to also provide what namespace that thing comes from. If you don&amp;#039;t specify the namespace, we default to {{cd|minecraft}}. This means that {{cd|something}} and {{cd|minecraft:something}} are the same thing.|[[Minecraft:Dinnerbone]]|namespaces&amp;lt;ref&amp;gt;{{snap|17w43a}}&amp;lt;/ref&amp;gt;|Nathan Adams Mojang avatar.png}}&lt;br /&gt;
&lt;br /&gt;
A namespace is a domain for content. It is to prevent potential content conflicts or unintentional overrides of objects of the same name.&lt;br /&gt;
&lt;br /&gt;
For example, two data packs add two minigame mechanisms to Minecraft; both have a function named {{cd|start}}. Without namespaces, these two functions would clash and the minigames would be broken. When they have different namespaces of {{cd|minigame_one}} and {{cd|minigame_two}}, the functions would become {{cd|minigame_one:start}} and {{cd|minigame_two:start}}, which no longer conflict.&lt;br /&gt;
&lt;br /&gt;
=== {{cd|minecraft}} namespace ===&lt;br /&gt;
Minecraft reserves the {{cd|minecraft}} namespace. When a namespace is not specified, an identifier falls back to {{cd|minecraft}}{{only|java}}. As a result, the {{cd|minecraft}} namespace should only be used by content creators when the content needs to overwrite or modify existing Minecraft data, such as adding a function to the {{cd|minecraft:load}} function tag.&lt;br /&gt;
&lt;br /&gt;
=== Custom namespace ===&lt;br /&gt;
The namespace should be distinct for different projects or content creations (e.g. a data pack, a resource pack, a mod, backing data/resource packs for a custom map, etc.)&lt;br /&gt;
&lt;br /&gt;
To prevent potential clashes, it is recommended that the namespace should be as specific as possible:&lt;br /&gt;
*Avoid [[Wikipedia:Alphabet soup (linguistics)|alphabet soups]]. For example, a project named &amp;quot;nuclear craft&amp;quot; should not use the namespace {{cd|nc}}, as this is too ambiguous.&lt;br /&gt;
*Avoid words that are too vague. {{cd|battle_royale}} would not be informative to look up as well, but {{cd|&amp;#039;&amp;#039;player_name&amp;#039;&amp;#039;_battle_royale}} would be much better.&lt;br /&gt;
*For [[Minecraft:add-on]]s, use a shortened creator name followed by the name of the project in a format like {{cd|creatorname_packname}}.&amp;lt;ref name=&amp;quot;cooperative&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In either case, these poorly chosen namespaces reduce the exposure of a project and bring difficulties for debugging when there are multiple content creations applied to the game.&lt;br /&gt;
&lt;br /&gt;
=== Other built-in namespaces ===&lt;br /&gt;
{{IN|je}}, the vanilla Minecraft resource pack declares Realms-oriented language files in the {{cd|realms}} namespace (located at assets/realms/lang/.json) and game-related language files in the {{cd|minecraft}} namespace, even though translation keys are not identifiers. The realms jar itself also declares its en_us.json language file and its various textures in the {{cd|realms}} namespace.&lt;br /&gt;
&lt;br /&gt;
In the IDs of command argument types, a {{cd|brigadier}} namespace also appears for command argument types that are native to [[Minecraft:Brigadier]].&lt;br /&gt;
&lt;br /&gt;
{{IN|be}}, the internal resource and behavior packs for &amp;#039;&amp;#039;[[Minecraft:Bedrock Editor]]&amp;#039;&amp;#039; contain some entities and items namespaced with &amp;lt;code&amp;gt;editor&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
== History ==&lt;br /&gt;
=== &amp;#039;&amp;#039;Java Edition&amp;#039;&amp;#039; ===&lt;br /&gt;
{{HistoryTable&lt;br /&gt;
|{{HistoryLine|java}}&lt;br /&gt;
|{{HistoryLine||1.6.1|dev=13w21a|Added resource locations alongside the {{cd|minecraft}} prefix for identifying assets.}}&lt;br /&gt;
|{{HistoryLine||1.7.2|dev=13w37a|Commands now accept name IDs aside from numerical IDs.}}&lt;br /&gt;
|{{HistoryLine||1.8|dev=14w02a|Item ID format has changed from using numbers (for example, TNT&amp;#039;s id was 46) to namespaced IDs of the form minecraft:item_name. (Example: minecraft:tnt)}}&lt;br /&gt;
|{{HistoryLine||1.11|dev=16w32a|Resource locations now have a character restriction.&lt;br /&gt;
|Disallowed uppercase characters in resource locations.}}&lt;br /&gt;
|{{HistoryLine||1.13|dev=17w47a|After the [[Minecraft:flattening]], resource locations are the only accepted form of identifiers.}}&lt;br /&gt;
|{{HistoryLine|||dev=pre4|Resource locations are now used to identify plugin message channels.&amp;lt;ref&amp;gt;[https://wiki.vg/Protocol_History#1.13-pre4 Protocol History] – wiki.vg&amp;lt;/ref&amp;gt;}}&lt;br /&gt;
|{{HistoryLine||1.14.4|dev=pre1|The &amp;lt;samp&amp;gt;realms&amp;lt;/samp&amp;gt; namespace is added to the [[Minecraft:Client.jar|client jar]]&amp;#039;s builtin resource pack.}}&lt;br /&gt;
|{{HistoryLine||1.16|dev=20w14a|[[Minecraft:Attribute]]s are now resource locations.}}&lt;br /&gt;
|{{HistoryLine||1.21.11|dev=25w45a|&amp;lt;code&amp;gt;ResourceLocation&amp;lt;/code&amp;gt; is renamed to &amp;lt;code&amp;gt;Identifier&amp;lt;/code&amp;gt; in the game&amp;#039;s code.}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== &amp;#039;&amp;#039;Bedrock Edition&amp;#039;&amp;#039; ===&lt;br /&gt;
{{HistoryTable&lt;br /&gt;
|{{HistoryLine|pocket alpha}}&lt;br /&gt;
|{{HistoryLine||v0.16.0|dev=build 1|Added [[Minecraft:commands]], which supported string IDs. However, these identifiers were not namespaced yet.}}&lt;br /&gt;
|{{HistoryLine|||dev=build 4|All entity [[Minecraft:attribute]]s are now namespaced.}}&lt;br /&gt;
|{{HistoryLine|bedrock}}&lt;br /&gt;
|{{HistoryLine||1.6.0|dev=beta 1.6.0.5|In the save files for worlds, items now use namespaced IDs instead of numeric IDs.}}&lt;br /&gt;
|{{HistoryLine||1.12.0|dev=beta 1.12.0.2|IDs are now namespaced using the {{cd|minecraft}} prefix, to support custom items being added through [[Minecraft:add-on]]s.}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* [[Minecraft:Java Edition data values]]&lt;br /&gt;
* [[Minecraft:Bedrock Edition data values]]&lt;br /&gt;
* [[Minecraft:Resource pack]]&lt;br /&gt;
* [[Minecraft:Data pack]]&lt;br /&gt;
* [[Minecraft:Add-on]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
{{reflist}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* Namespaces, as explained in {{snap|17w43a}}.&lt;br /&gt;
&lt;br /&gt;
== Navigation ==&lt;br /&gt;
{{Navbox Java Edition technical|general}}&lt;br /&gt;
{{Navbox Bedrock Edition}}&lt;br /&gt;
&lt;br /&gt;
[[Minecraft:de:Namensraum]]&lt;br /&gt;
[[Minecraft:es:Ubicación de recurso]]&lt;br /&gt;
[[Minecraft:fr:Identifiant]]&lt;br /&gt;
[[Minecraft:ja:識別子]]&lt;br /&gt;
[[Minecraft:ko:식별자]]&lt;br /&gt;
[[Minecraft:pt:Localização de recurso]]&lt;br /&gt;
[[Minecraft:ru:Пространство имён идентификаторов]]&lt;br /&gt;
[[Minecraft:uk:Простір імен ідентифікаторів]]&lt;br /&gt;
[[Minecraft:zh:命名空间ID]]&lt;/div&gt;</summary>
		<author><name>imported&gt;Wilf233</name></author>
	</entry>
</feed>