schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
minecraft-template-pool.json
elements
A list of structures to choose from.
{"type": "array", "items": {"type": "object", "properties": {"weight": {}, "location": {"type": "string"}, "projection": {"type": "string", "enum": ["rigid", "terrain_matching"]}, "element_type": {"type": "string", "enum": ["minecraft:empty_pool_element", "minecraft:list_pool_element", "minecraft:legacy_single_pool_element", "minecraft:single_pool_element"]}, "processors": {"type": ["string", "object"], "properties": {"processors": {"type": "array", "items": {"type": "object", "properties": {"processor_type": {"type": "string"}}}}}}}}}
minecraft-template-pool.json
location
The namespaced id of the structure to place.
{"type": "string"}
minecraft-template-pool.json
processors
The namespaced ID of a processor if this is a string.
{"type": ["string", "object"], "properties": {"processors": {"type": "array", "items": {"type": "object", "properties": {"processor_type": {"type": "string"}}}}}}
minecraft-template-pool.json
processors
A list of processors to use.
{"type": "array", "items": {"type": "object", "properties": {"processor_type": {"type": "string"}}}}
minecraft-template-pool.json
processor_type
The namespaced id of the processor to use.
{"type": "string"}
appveyor.json
possiblySecretString
This value will be used directly (regular string)
{"type": "string"}
appveyor.json
possiblySecretString
This value will be treated as a string even though it is a number
{"type": "number"}
appveyor.json
secure
This should have been encrypted by the same user account to which the project belongs
{"type": "string"}
appveyor.json
message
Regex for matching commit message
{"type": "string", "format": "regex"}
appveyor.json
author
Commit author's username, name, email or regexp matching one of these.
{"anyOf": [{"type": "string", "format": "regex"}, {"type": "string"}]}
appveyor.json
files
Only specific files (glob patterns)
{"type": "array", "items": {"type": "string"}}
appveyor.json
command
Run a batch command
{"type": "string"}
appveyor.json
ps
Run a PowerShell command
{"type": "string"}
appveyor.json
pwsh
Run a PowerShell Core command
{"type": "string"}
appveyor.json
command
Run a batch command
{"type": "object", "additionalProperties": false, "properties": {"cmd": {"type": "string"}}}
appveyor.json
command
Run a Bash command
{"type": "object", "additionalProperties": false, "properties": {"sh": {"type": "string"}}}
appveyor.json
image
Build worker image (VM template) -DEV_VERSION
{"oneOf": [{"type": "array", "items": {}}, {}]}
appveyor.json
platform
Build platform, i.e. x86, x64, Any CPU. This setting is optional
{"oneOf": [{}, {"type": "array", "items": {}}]}
appveyor.json
configuration
Build Configuration, i.e. Debug, Release, etc.
{"oneOf": [{}, {"type": "array", "items": {}}]}
appveyor.json
version
Version format
{"type": "string"}
appveyor.json
branches
Branches to build
{"type": "object", "additionalProperties": false, "properties": {"only": {"type": "array", "items": {"type": "string"}}, "except": {"type": "array", "items": {"type": "string"}}}}
appveyor.json
only
Whitelist
{"type": "array", "items": {"type": "string"}}
appveyor.json
except
Blacklist
{"type": "array", "items": {"type": "string"}}
appveyor.json
skip_tags
Do not build on tags (GitHub and BitBucket)
{"type": "boolean"}
appveyor.json
skip_non_tags
Start builds on tags only (GitHub and BitBucket)
{"type": "boolean"}
appveyor.json
skip_commits
Skipping commits with particular message or from specific user
{}
appveyor.json
only_commits
Including commits with particular message or from specific user
{}
appveyor.json
skip_branch_with_pr
Do not build feature branch with open Pull Requests
{"type": "boolean"}
appveyor.json
max_jobs
Maximum number of concurrent jobs for the project
{"type": "integer"}
appveyor.json
init
Scripts that are called at very beginning, before repo cloning
{"type": "array", "items": {}}
appveyor.json
clone_folder
Clone directory
{"type": "string"}
appveyor.json
shallow_clone
Fetch repository as zip archive
{"type": "boolean", "default": false}
appveyor.json
clone_depth
Set git clone depth
{"type": "integer"}
appveyor.json
hosts
Setting up etc\hosts file
{"type": "object", "additionalProperties": {"type": "string", "anyOf": [{"format": "ipv4"}, {"format": "ipv6"}]}}
appveyor.json
environment
Environment variables
{"anyOf": [{"type": "object", "properties": {"global": {}, "matrix": {"type": "array", "items": {}}}}, {}]}
appveyor.json
global
variables defined here are no different than those defined at top level of 'environment' node
{}
appveyor.json
matrix
an array of environment variables, each member of which is one dimension in the build matrix calculation
{"type": "array", "items": {}}
appveyor.json
fast_finish
Set this flag to immediately finish build once one of the jobs fails
{"type": "boolean"}
appveyor.json
allow_failures
This is how to allow failing jobs in the matrix
{"type": "array", "items": {}}
appveyor.json
exclude
Exclude configuration from the matrix. Works similarly to 'allow_failures' but build not even being started for excluded combination.
{"type": "array", "items": {}}
appveyor.json
cache
Build cache to preserve files/folders between builds
{"type": "array", "items": {"type": "string"}}
appveyor.json
services
Enable service required for build/tests
{"type": "array", "items": {"enum": ["docker", "iis", "mongodb", "msmq", "mssql", "mssql2008r2sp2", "mssql2008r2sp2rs", "mssql2012sp1", "mssql2012sp1rs", "mssql2014", "mssql2014rs", "mssql2016", "mssql2017", "mysql", "postgresql", "postgresql93", "postgresql94", "postgresql95", "postgresql96", "postgresql10", "postgresql11", "postgresql12", "postgresql13"]}}
appveyor.json
install
Scripts that run after cloning repository
{"type": "array", "items": {}}
appveyor.json
assembly_info
Enable patching of AssemblyInfo.* files
{"type": "object", "additionalProperties": false, "properties": {"patch": {"type": "boolean"}, "file": {"type": "string"}, "assembly_version": {"type": "string"}, "assembly_file_version": {"type": "string"}, "assembly_informational_version": {"type": "string"}}}
appveyor.json
nuget
Automatically register private account and/or project AppVeyor NuGet feeds
{"type": "object", "properties": {"account_feed": {"type": "boolean"}, "project_feed": {"type": "boolean"}, "disable_publish_on_pr": {"type": "boolean"}}}
appveyor.json
disable_publish_on_pr
Disable publishing of .nupkg artifacts to account/project feeds for pull request builds
{"type": "boolean"}
appveyor.json
platform
Build platform, i.e. x86, x64, Any CPU. This setting is optional
{"oneOf": [{}, {"type": "array", "items": {}}]}
appveyor.json
configuration
Build Configuration, i.e. Debug, Release, etc.
{"oneOf": [{}, {"type": "array", "items": {}}]}
appveyor.json
parallel
Enable MSBuild parallel builds
{"type": "boolean"}
appveyor.json
project
Path to Visual Studio solution or project
{"type": "string"}
appveyor.json
publish_wap
Package Web Application Projects (WAP) for Web Deploy
{"type": "boolean"}
appveyor.json
publish_wap_xcopy
Package Web Application Projects (WAP) for XCopy deployment
{"type": "boolean"}
appveyor.json
publish_wap_beanstalk
Package Web Applications for AWS Elastic Beanstalk deployment
{"type": "boolean"}
appveyor.json
publish_wap_octopus
Package Web Applications for Octopus deployment
{"type": "boolean"}
appveyor.json
publish_azure_webjob
Package Azure WebJobs for Zip Push deployment
{"type": "boolean"}
appveyor.json
publish_azure
Package Azure Cloud Service projects and push to artifacts
{"type": "boolean"}
appveyor.json
publish_aspnet_core
Package ASP.NET Core projects
{"type": "boolean"}
appveyor.json
publish_core_console
Package .NET Core console projects
{"type": "boolean"}
appveyor.json
publish_nuget
Package projects with .nuspec files and push to artifacts
{"type": "boolean"}
appveyor.json
publish_nuget_symbols
Generate and publish NuGet symbol packages
{"type": "boolean"}
appveyor.json
include_nuget_references
Add -IncludeReferencedProjects option while packaging NuGet artifacts
{"type": "boolean"}
appveyor.json
verbosity
MSBuild verbosity level
{"enum": ["quiet", "minimal", "normal", "detailed"]}
appveyor.json
before_build
Scripts to run before build
{"type": "array", "items": {}}
appveyor.json
before_package
Scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services)
{"type": "array", "items": {}}
appveyor.json
after_build
Scripts to run after build
{"type": "array", "items": {}}
appveyor.json
build_script
To run your custom scripts instead of automatic MSBuild
{"type": "array", "items": {}}
appveyor.json
before_test
Scripts to run before tests
{"type": "array", "items": {}}
appveyor.json
test
To disable automatic tests
{"type": "boolean", "enum": [false]}
appveyor.json
test
To run tests again only selected assemblies and/or categories
{"type": "object", "additionalProperties": false, "properties": {"assemblies": {"type": "object", "additionalProperties": false, "properties": {"only": {"type": "array", "items": {"type": "string"}}, "except": {"type": "array", "items": {"type": "string"}}}}, "categories": {"oneOf": [{"type": "object", "additionalProperties": false, "properties": {"only": {"type": "array", "items": {"type": "string"}}, "except": {"type": "array", "items": {"type": "string"}}}}, {"type": "array", "items": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}}]}}}
appveyor.json
categories
To run tests from different categories as separate jobs in parallel
{"type": "array", "items": {"oneOf": [{"type": "string"}, {"type": "array", "items": {"type": "string"}}]}}
appveyor.json
items
A category common for all jobs
{"type": "string"}
appveyor.json
test_script
To run your custom scripts instead of automatic tests
{"type": "array", "items": {}}
appveyor.json
after_test
Scripts to run after tests
{"type": "array", "items": {}}
appveyor.json
before_deploy
Scripts to run before deployment
{"type": "array", "items": {}}
appveyor.json
deploy_script
To run your custom scripts instead of provider deployments
{"type": "array", "items": {}}
appveyor.json
after_deploy
Scripts to run after deployment
{"type": "array", "items": {}}
appveyor.json
on_success
On successful build
{"type": "array", "items": {}}
appveyor.json
on_failure
On build failure
{"type": "array", "items": {}}
appveyor.json
on_finish
After build failure or success
{"type": "array", "items": {}}
minecraft-dimension.json
Configuration file defining a dimension for a data pack for Minecraft.
{"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"noise": {"type": "object", "properties": {"firstOctave": {"type": "integer", "default": -7}, "amplitudes": {"type": "array", "items": {"type": "number"}, "default": [1, 1]}}}, "dimensionType": {"type": "object", "properties": {"name": {"type": "string"}, "ultrawarm": {"type": "boolean"}, "natural": {"type": "boolean"}, "coordinate_scale": {"type": "number"}, "has_skylight": {"type": "boolean"}, "has_ceiling": {"type": "boolean"}, "ambient_light": {"type": "number", "default": 0.5}, "fixed_time": {"anyOf": [{"type": "boolean", "default": false}, {"type": "integer", "minimum": 0, "maximum": 24000}]}, "piglin_safe": {"type": "boolean"}, "bed_works": {"type": "boolean"}, "respawn_anchor_works": {"type": "boolean"}, "has_raids": {"type": "boolean"}, "logical_height": {"type": "integer"}, "min_y": {"type": "integer", "minimum": -2032, "maximum": 2031, "multipleOf": 16}, "height": {"type": "integer", "minimum": 0, "maximum": 4096, "multipleOf": 16}, "infiniburn": {"type": "string"}, "effects": {"type": "string", "enum": ["minecraft:overworld", "minecraft:the_nether", "minecraft:the_end"], "default": "minecraft:overworld"}}}}, "properties": {"type": {"anyOf": [{"type": "string", "enum": ["minecraft:overworld", "minecraft:overworld_caves", "minecraft:the_nether", "minecraft:the_end"]}, {}]}, "generator": {"type": "object", "properties": {"type": {"type": "string", "enum": ["minecraft:flat", "minecraft:noise", "minecraft:debug"]}}, "allOf": [{"if": {"properties": {"type": {"const": "minecraft:flat"}}}, "then": {"properties": {"settings": {"type": "object", "properties": {"layers": {"type": "array", "items": {"type": "object", "properties": {"height": {"type": "integer"}, "block": {"type": "string"}}}}, "biome": {"type": "string"}, "lakes": {"type": "boolean"}, "features": {"type": "boolean"}, "structures": {"type": "object", "properties": {"stronghold": {"type": "object", "properties": {"distance": {"type": "integer"}, "count": {"type": "integer"}, "spread": {"type": "integer"}}}, "structures": {"type": "object", "additionalProperties": {"type": "object", "properties": {"spacing": {"type": "integer"}, "seperation": {"type": "integer"}, "salt": {"type": "integer"}}}}}}}}}}}, {"if": {"properties": {"type": {"const": "minecraft:noise"}}}, "then": {"properties": {"seed": {"type": "integer"}, "settings": {"type": ["string", "object"]}, "biome_source": {"type": "object", "properties": {"seed": {"type": "integer"}, "biomes": {"type": "array"}, "type": {"type": "string", "allOf": [{"if": {"properties": {"type": {"const": "minecraft:vanilla_layered"}}}, "then": {"properties": {"large_biomes": {"type": "boolean"}, "legacy_biome_init_layer": {"type": "boolean"}}}}, {"if": {"properties": {"type": {"const": "minecraft:fixed"}}}, "then": {"properties": {"biome": {"type": "string"}}}}, {"if": {"properties": {"type": {"const": "minecraft:checkerboard"}}}, "then": {"properties": {"biomes": {"type": "array"}, "scale": {"type": "integer", "minimum": 0, "maximum": 62}}}}, {"if": {"properties": {"type": {"const": "minecraft:multi_noise"}}}, "then": {"properties": {"altitude_noise": {}, "weirdness_noise": {}, "temperature_noise": {}, "humidity_noise": {}}, "anyOf": [{"properties": {"preset": {"type": "string", "enum": ["minecraft:nether"]}}}, {"properties": {"biomes": {"type": "array", "items": {"type": "object", "properties": {"biome": {"type": "string"}, "parameters": {"type": "object", "properties": {"altitude": {"type": "number", "minimum": -2, "maximum": 2}, "weirdness": {"type": "number", "minimum": -2, "maximum": 2}, "offset": {"type": "number", "minimum": 0, "maximum": 1}, "temperature": {"type": "number", "minimum": -2, "maximum": 2}, "humidity": {"type": "number", "minimum": -2, "maximum": 2}}}}}}}}]}}, {"if": {"properties": {"type": {"const": "minecraft:the_end"}}}, "then": {}}]}}}}}}]}}, "type": "object"}
minecraft-dimension.json
firstOctave
The lower the value, the smoother the changes in altitude will be, making biome edges smoother.
{"type": "integer", "default": -7}
minecraft-dimension.json
amplitudes
A list of floats. Using more values allows for greater precision. Higher absolute values seem to make the altitude reach greater absolute values.
{"type": "array", "items": {"type": "number"}, "default": [1, 1]}
minecraft-dimension.json
dimensionType
Configuration file defining a dimension type for a data pack for Minecraft.
{"type": "object", "properties": {"name": {"type": "string"}, "ultrawarm": {"type": "boolean"}, "natural": {"type": "boolean"}, "coordinate_scale": {"type": "number"}, "has_skylight": {"type": "boolean"}, "has_ceiling": {"type": "boolean"}, "ambient_light": {"type": "number", "default": 0.5}, "fixed_time": {"anyOf": [{"type": "boolean", "default": false}, {"type": "integer", "minimum": 0, "maximum": 24000}]}, "piglin_safe": {"type": "boolean"}, "bed_works": {"type": "boolean"}, "respawn_anchor_works": {"type": "boolean"}, "has_raids": {"type": "boolean"}, "logical_height": {"type": "integer"}, "min_y": {"type": "integer", "minimum": -2032, "maximum": 2031, "multipleOf": 16}, "height": {"type": "integer", "minimum": 0, "maximum": 4096, "multipleOf": 16}, "infiniburn": {"type": "string"}, "effects": {"type": "string", "enum": ["minecraft:overworld", "minecraft:the_nether", "minecraft:the_end"], "default": "minecraft:overworld"}}}
minecraft-dimension.json
name
The resource location used for the dimension type.
{"type": "string"}
minecraft-dimension.json
ultrawarm
Whether the dimensions behaves like the nether (water evaporates and sponges dry) or not. Also lets stalactites drip lava and causes lava to spread faster and thinner.
{"type": "boolean"}
minecraft-dimension.json
natural
When true, nether portals can spawn zombified piglins. When false, compasses spin randomly, and using a bed to set the respawn point or sleep, is disabled.
{"type": "boolean"}
minecraft-dimension.json
coordinate_scale
The multiplier applied to coordinates when traveling to the dimension.
{"type": "number"}
minecraft-dimension.json
has_skylight
Whether the dimension has skylight access or not.
{"type": "boolean"}
minecraft-dimension.json
has_ceiling
Whether the dimension has a bedrock ceiling or not.
{"type": "boolean"}
minecraft-dimension.json
ambient_light
How much light the dimension has.
{"type": "number", "default": 0.5}
minecraft-dimension.json
fixed_time
If this is set to a number, the time of the day is the specified value.
{"anyOf": [{"type": "boolean", "default": false}, {"type": "integer", "minimum": 0, "maximum": 24000}]}
minecraft-dimension.json
piglin_safe
Whether piglins shake and transform to zombified piglins.
{"type": "boolean"}
minecraft-dimension.json
bed_works
When false, the bed blows up when trying to sleep.
{"type": "boolean"}
minecraft-dimension.json
respawn_anchor_works
Whether players can charge and use respawn anchors.
{"type": "boolean"}
minecraft-dimension.json
has_raids
Whether players with the Bad Omen effect can cause a raid.
{"type": "boolean"}
minecraft-dimension.json
logical_height
The maximum height to which chorus fruits and nether portals can bring players within this dimension. This excludes portals that were already built above the limit as they still connect normally.
{"type": "integer"}
minecraft-dimension.json
min_y
The minimum height in which blocks can exist within this dimension.
{"type": "integer", "minimum": -2032, "maximum": 2031, "multipleOf": 16}
minecraft-dimension.json
height
The total height in which blocks can exist within this dimension.
{"type": "integer", "minimum": 0, "maximum": 4096, "multipleOf": 16}
minecraft-dimension.json
infiniburn
A resource location defining what block tag to use for infiniburn.
{"type": "string"}
minecraft-dimension.json
effects
Determines the dimension effect used for this dimension.
{"type": "string", "enum": ["minecraft:overworld", "minecraft:the_nether", "minecraft:the_end"], "default": "minecraft:overworld"}