Skip to content

legopitstop/JSON-Schemas

Repository files navigation

INFO

Schemas are JSON files that will help and aid you in creating your code and will show you any errors that will come up when loading up your mod. A good example is the Minecraft Bedrock Addon Schemas. If you have that schema installed in VSC it will help you by suggesting things to be added into the code. It also provides useful tooltips when you hover over the text to tell you what it does.

Join my discord to get live updates on schemas. Discord
View Update Log

How to Install schema for Visual Studio Code

  1. Open VSC.
  2. Go to your settings ( CTRL + , )
  3. At the top corner you should find a button that will open settings (JSON). Click it.
  4. Paste the below code into that JSON.
  5. Save it. Thats it you're done!
{
    "json.schemas": [
        // append below code here.
    ]
}
{
    "name": "Bedrock Edition Schema",
    "description": "Schema for Bedrock Edition behavior, and resourcepacks.",
    "fileMatch": [
        "com.mojang/**.json"
    ],
    "url": "https://raw.githubusercontent.com/legopitstop/JSON-Schemas/main/schemas/bedrock/schema.json"
}
{
    "name": "Shields",
    "description": "A schema for https://shields.io/",
    "fileMatch": [
        "shields.io/*.json"
    ],
    "url": "https://raw.githubusercontent.com/legopitstop/JSON-Schemas/main/schemas/shields.io/schema.json"
}
{
    "name": "Pack Update JSON",
    "description": "A schema for https://legopitstop.github.io/Update_Checker/update-checker.html",
    "fileMatch": [
        "update.json"
    ],
    "url": "https://raw.githubusercontent.com/legopitstop/Update_Checker/main/schema.json"
}

UPDATES

Find the latest news about this schema via the UPDATES page

About

Has some custom schemas to help you code.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published