schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
camel-yaml-dsl.json
allowable-values
Sets the parameter list of allowable values.
{"type": "array", "items": {}}
camel-yaml-dsl.json
array-type
Sets the parameter array type. Required if data type is array. Describes the type of items in the array.
{"type": "string", "default": "string"}
camel-yaml-dsl.json
collection-format
Sets the parameter collection format.
{"type": "string", "default": "csv", "enum": ["csv", "multi", "pipes", "ssv", "tsv"]}
camel-yaml-dsl.json
data-format
Sets the parameter data format.
{"type": "string"}
camel-yaml-dsl.json
data-type
Sets the header data type.
{"type": "string", "default": "string"}
camel-yaml-dsl.json
description
Description of the parameter.
{"type": "string"}
camel-yaml-dsl.json
example
Sets the example
{"type": "string"}
camel-yaml-dsl.json
name
Name of the parameter. This option is mandatory.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.rest.ResponseMessageDefinition
To specify the rest operation response messages.
{"type": "object", "properties": {"code": {"type": "string", "default": "200"}, "examples": {"type": "array", "items": {}}, "header": {"type": "array", "items": {}}, "message": {"type": "string"}, "response-model": {"type": "string"}}, "required": ["message"]}
camel-yaml-dsl.json
code
The response code such as a HTTP status code
{"type": "string", "default": "200"}
camel-yaml-dsl.json
examples
Examples of response messages
{"type": "array", "items": {}}
camel-yaml-dsl.json
header
Adds a response header
{"type": "array", "items": {}}
camel-yaml-dsl.json
message
The response message (description)
{"type": "string"}
camel-yaml-dsl.json
response-model
The response model
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.rest.RestBindingDefinition
To configure rest binding
{"type": "object", "properties": {"binding-mode": {"type": "string", "default": "off", "enum": ["off", "auto", "json", "xml", "json_xml"]}, "client-request-validation": {"type": "boolean"}, "component": {"type": "string"}, "consumes": {"type": "string"}, "enable-cors": {"type": "boolean"}, "id": {"type": "string"}, "out-type": {"type": "string"}, "produces": {"type": "string"}, "skip-binding-on-error-code": {"type": "boolean"}, "type": {"type": "string"}}}
camel-yaml-dsl.json
binding-mode
Sets the binding mode to use. The default value is off
{"type": "string", "default": "off", "enum": ["off", "auto", "json", "xml", "json_xml"]}
camel-yaml-dsl.json
client-request-validation
Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
{"type": "boolean"}
camel-yaml-dsl.json
component
Sets the component name that this definition will apply to
{"type": "string"}
camel-yaml-dsl.json
consumes
To define the content type what the REST service consumes (accept as input), such as application/xml or application/json
{"type": "string"}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
out-type
Sets the class name to use for binding from POJO to output for the outgoing data The name of the class of the input data. Append a to the end of the name if you want the input to be an array type.
{"type": "string"}
camel-yaml-dsl.json
produces
To define the content type what the REST service produces (uses for output), such as application/xml or application/json
{"type": "string"}
camel-yaml-dsl.json
skip-binding-on-error-code
Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do.
{"type": "boolean"}
camel-yaml-dsl.json
type
Sets the class name to use for binding from input to POJO for the incoming data The name of the class of the input data. Append a to the end of the name if you want the input to be an array type.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.rest.RestConfigurationDefinition
To configure rest
{"type": "object", "properties": {"api-component": {"type": "string", "enum": ["openapi", "swagger"]}, "api-context-path": {"type": "string"}, "api-context-route-id": {"type": "string"}, "api-host": {"type": "string"}, "api-property": {"type": "array", "items": {}}, "api-vendor-extension": {"type": "boolean"}, "binding-mode": {"type": "string", "default": "off", "enum": ["auto", "json", "json_xml", "off", "xml"]}, "client-request-validation": {"type": "boolean"}, "component": {"type": "string", "enum": ["platform-http", "servlet", "jetty", "undertow", "netty-http", "coap"]}, "component-property": {"type": "array", "items": {}}, "consumer-property": {"type": "array", "items": {}}, "context-path": {"type": "string"}, "cors-headers": {"type": "array", "items": {}}, "data-format-property": {"type": "array", "items": {}}, "enable-cors": {"type": "boolean"}, "endpoint-property": {"type": "array", "items": {}}, "host": {"type": "string"}, "host-name-resolver": {"type": "string", "default": "allLocalIp", "enum": ["allLocalIp", "localHostName", "localIp"]}, "inline-routes": {"type": "boolean"}, "json-data-format": {"type": "string"}, "port": {"type": "string"}, "producer-api-doc": {"type": "string"}, "producer-component": {"type": "string", "enum": ["vertx-http", "http", "undertow", "netty-http"]}, "scheme": {"type": "string"}, "skip-binding-on-error-code": {"type": "boolean"}, "use-x-forward-headers": {"type": "boolean"}, "xml-data-format": {"type": "string"}}}
camel-yaml-dsl.json
api-component
The name of the Camel component to use as the REST API. If no API Component has been explicit configured, then Camel will lookup if there is a Camel component responsible for servicing and generating the REST API documentation, or if a org.apache.camel.spi.RestApiProcessorFactory is registered in the registry. If either one is found, then that is being used.
{"type": "string", "enum": ["openapi", "swagger"]}
camel-yaml-dsl.json
api-context-path
Sets a leading API context-path the REST API services will be using. This can be used when using components such as camel-servlet where the deployed web application is deployed using a context-path.
{"type": "string"}
camel-yaml-dsl.json
api-context-route-id
Sets the route id to use for the route that services the REST API. The route will by default use an auto assigned route id.
{"type": "string"}
camel-yaml-dsl.json
api-host
To use a specific hostname for the API documentation (such as swagger or openapi) This can be used to override the generated host with this configured hostname
{"type": "string"}
camel-yaml-dsl.json
api-property
Allows to configure as many additional properties for the api documentation. For example set property api.title to my cool stuff
{"type": "array", "items": {}}
camel-yaml-dsl.json
api-vendor-extension
Whether vendor extension is enabled in the Rest APIs. If enabled then Camel will include additional information as vendor extension (eg keys starting with x-) such as route ids, class names etc. Not all 3rd party API gateways and tools supports vendor-extensions when importing your API docs.
{"type": "boolean"}
camel-yaml-dsl.json
binding-mode
Sets the binding mode to use. The default value is off
{"type": "string", "default": "off", "enum": ["auto", "json", "json_xml", "off", "xml"]}
camel-yaml-dsl.json
client-request-validation
Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
{"type": "boolean"}
camel-yaml-dsl.json
component
The Camel Rest component to use for the REST transport (consumer), such as netty-http, jetty, servlet, undertow. If no component has been explicit configured, then Camel will lookup if there is a Camel component that integrates with the Rest DSL, or if a org.apache.camel.spi.RestConsumerFactory is registered in the registry. If either one is found, then that is being used.
{"type": "string", "enum": ["platform-http", "servlet", "jetty", "undertow", "netty-http", "coap"]}
camel-yaml-dsl.json
component-property
Allows to configure as many additional properties for the rest component in use.
{"type": "array", "items": {}}
camel-yaml-dsl.json
consumer-property
Allows to configure as many additional properties for the rest consumer in use.
{"type": "array", "items": {}}
camel-yaml-dsl.json
context-path
Sets a leading context-path the REST services will be using. This can be used when using components such as camel-servlet where the deployed web application is deployed using a context-path. Or for components such as camel-jetty or camel-netty-http that includes a HTTP server.
{"type": "string"}
camel-yaml-dsl.json
cors-headers
Allows to configure custom CORS headers.
{"type": "array", "items": {}}
camel-yaml-dsl.json
data-format-property
Allows to configure as many additional properties for the data formats in use. For example set property prettyPrint to true to have json outputted in pretty mode. The properties can be prefixed to denote the option is only for either JSON or XML and for either the IN or the OUT. The prefixes are: json.in. json.out. xml.in. xml.out. For example a key with value xml.out.mustBeJAXBElement is only for the XML data format for the outgoing. A key without a prefix is a common key for all situations.
{"type": "array", "items": {}}
camel-yaml-dsl.json
endpoint-property
Allows to configure as many additional properties for the rest endpoint in use.
{"type": "array", "items": {}}
camel-yaml-dsl.json
host
The hostname to use for exposing the REST service.
{"type": "string"}
camel-yaml-dsl.json
host-name-resolver
If no hostname has been explicit configured, then this resolver is used to compute the hostname the REST service will be using.
{"type": "string", "default": "allLocalIp", "enum": ["allLocalIp", "localHostName", "localIp"]}
camel-yaml-dsl.json
inline-routes
Inline routes in rest-dsl which are linked using direct endpoints. By default, each service in Rest DSL is an individual route, meaning that you would have at least two routes per service (rest-dsl, and the route linked from rest-dsl). Enabling this allows Camel to optimize and inline this as a single route, however this requires to use direct endpoints, which must be unique per service. This option is default false.
{"type": "boolean"}
camel-yaml-dsl.json
json-data-format
Name of specific json data format to use. By default jackson will be used. Important: This option is only for setting a custom name of the data format, not to refer to an existing data format instance.
{"type": "string"}
camel-yaml-dsl.json
port
The port number to use for exposing the REST service. Notice if you use servlet component then the port number configured here does not apply, as the port number in use is the actual port number the servlet component is using. eg if using Apache Tomcat its the tomcat http port, if using Apache Karaf its the HTTP service in Karaf that uses port 8181 by default etc. Though in those situations setting the port number here, allows tooling and JMX to know the port number, so its recommended to set the port number to the number that the servlet engine uses.
{"type": "string"}
camel-yaml-dsl.json
producer-api-doc
Sets the location of the api document the REST producer will use to validate the REST uri and query parameters are valid accordingly to the api document. The location of the api document is loaded from classpath by default, but you can use file: or http: to refer to resources to load from file or http url.
{"type": "string"}
camel-yaml-dsl.json
producer-component
Sets the name of the Camel component to use as the REST producer
{"type": "string", "enum": ["vertx-http", "http", "undertow", "netty-http"]}
camel-yaml-dsl.json
scheme
The scheme to use for exposing the REST service. Usually http or https is supported. The default value is http
{"type": "string"}
camel-yaml-dsl.json
skip-binding-on-error-code
Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do.
{"type": "boolean"}
camel-yaml-dsl.json
use-x-forward-headers
Whether to use X-Forward headers for Host and related setting. The default value is true.
{"type": "boolean"}
camel-yaml-dsl.json
xml-data-format
Name of specific XML data format to use. By default jaxb will be used. Important: This option is only for setting a custom name of the data format, not to refer to an existing data format instance.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.rest.RestDefinition
Defines a rest service using the rest-dsl
{"type": "object", "properties": {"api-docs": {"type": "boolean"}, "binding-mode": {"type": "string", "default": "off", "enum": ["off", "auto", "json", "xml", "json_xml"]}, "client-request-validation": {"type": "boolean"}, "consumes": {"type": "string"}, "delete": {"type": "array", "items": {}}, "disabled": {"type": "boolean"}, "enable-cors": {"type": "boolean"}, "get": {"type": "array", "items": {}}, "head": {"type": "array", "items": {}}, "id": {"type": "string"}, "patch": {"type": "array", "items": {}}, "path": {"type": "string"}, "post": {"type": "array", "items": {}}, "produces": {"type": "string"}, "put": {"type": "array", "items": {}}, "security-definitions": {}, "security-requirements": {"type": "array", "items": {}}, "skip-binding-on-error-code": {"type": "boolean"}, "tag": {"type": "string"}}}
camel-yaml-dsl.json
api-docs
Whether to include or exclude this rest operation in API documentation. This option will override what may be configured on a parent level. The default value is true.
{"type": "boolean"}
camel-yaml-dsl.json
binding-mode
Sets the binding mode to use. This option will override what may be configured on a parent level The default value is auto
{"type": "string", "default": "off", "enum": ["off", "auto", "json", "xml", "json_xml"]}
camel-yaml-dsl.json
client-request-validation
Whether to enable validation of the client request to check: 1) Content-Type header matches what the Rest DSL consumes; returns HTTP Status 415 if validation error. 2) Accept header matches what the Rest DSL produces; returns HTTP Status 406 if validation error. 3) Missing required data (query parameters, HTTP headers, body); returns HTTP Status 400 if validation error. 4) Parsing error of the message body (JSon, XML or Auto binding mode must be enabled); returns HTTP Status 400 if validation error.
{"type": "boolean"}
camel-yaml-dsl.json
consumes
To define the content type what the REST service consumes (accept as input), such as application/xml or application/json. This option will override what may be configured on a parent level
{"type": "string"}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this REST service from the route during build time. Once an REST service has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
path
Path of the rest service, such as /foo
{"type": "string"}
camel-yaml-dsl.json
produces
To define the content type what the REST service produces (uses for output), such as application/xml or application/json This option will override what may be configured on a parent level
{"type": "string"}
camel-yaml-dsl.json
security-definitions
Sets the security definitions such as Basic, OAuth2 etc.
{}
camel-yaml-dsl.json
security-requirements
Sets the security requirement(s) for all endpoints.
{"type": "array", "items": {}}
camel-yaml-dsl.json
skip-binding-on-error-code
Whether to skip binding on output if there is a custom HTTP error code header. This allows to build custom error messages that do not bind to json / xml etc, as success messages otherwise will do. This option will override what may be configured on a parent level
{"type": "boolean"}
camel-yaml-dsl.json
tag
To configure a special tag for the operations within this rest definition.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.rest.RestPropertyDefinition
A key value pair
{"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}
camel-yaml-dsl.json
key
Property key
{"type": "string"}
camel-yaml-dsl.json
value
Property value
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.rest.RestSecuritiesDefinition
To configure rest security definitions.
{"type": "object", "properties": {"api-key": {}, "basic-auth": {}, "bearer": {}, "mutual-tls": {}, "oauth2": {}, "open-id-connect": {}}}
camel-yaml-dsl.json
org.apache.camel.model.rest.RestsDefinition
A series of rest services defined using the rest-dsl
{"type": "object", "properties": {"id": {"type": "string"}, "rest": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.rest.SecurityDefinition
Rest security definition
{"type": "object", "properties": {"key": {"type": "string"}, "scopes": {"type": "string"}}, "required": ["key"]}
camel-yaml-dsl.json
key
Key used to refer to this security definition
{"type": "string"}
camel-yaml-dsl.json
scopes
The scopes to allow (separate multiple scopes by comma)
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.transformer.TransformersDefinition
To configure transformers.
{"type": "object", "properties": {"custom-transformer": {}, "data-format-transformer": {}, "endpoint-transformer": {}, "load-transformer": {}}}
camel-yaml-dsl.json
org.apache.camel.model.validator.ValidatorsDefinition
To configure validators.
{"type": "object", "properties": {"custom-validator": {}, "endpoint-validator": {}, "predicate-validator": {}}}
minecraft-tag.json
A tag's for a Minecraft data pack config schema
{"$schema": "http://json-schema.org/draft-07/schema#", "properties": {"replace": {"type": "boolean", "default": false}, "values": {"type": "array", "items": {"oneOf": [{"anyOf": [{"type": "string", "pattern": "^[a-z0-9_.-]+:[a-z0-9_.-]+"}, {"type": "string", "pattern": "^#[a-z0-9_.-]+:[a-z0-9_.-]+"}]}, {"type": "object", "properties": {"id": {"anyOf": [{"type": "string", "pattern": "^[a-z0-9_.-]+:[a-z0-9_.-]+"}, {"type": "string", "pattern": "^#[a-z0-9_.-]+:[a-z0-9_.-]+"}]}, "required": {"type": "boolean"}}}]}}}, "required": ["values"], "type": "object"}
minecraft-tag.json
values
Values
{"type": "array", "items": {"oneOf": [{"anyOf": [{"type": "string", "pattern": "^[a-z0-9_.-]+:[a-z0-9_.-]+"}, {"type": "string", "pattern": "^#[a-z0-9_.-]+:[a-z0-9_.-]+"}]}, {"type": "object", "properties": {"id": {"anyOf": [{"type": "string", "pattern": "^[a-z0-9_.-]+:[a-z0-9_.-]+"}, {"type": "string", "pattern": "^#[a-z0-9_.-]+:[a-z0-9_.-]+"}]}, "required": {"type": "boolean"}}}]}}
minecraft-tag.json
id
An identifier for the current data pack
{"type": "string", "pattern": "^[a-z0-9_.-]+:[a-z0-9_.-]+"}
minecraft-tag.json
id
An identifier for the current data pack
{"type": "string", "pattern": "^#[a-z0-9_.-]+:[a-z0-9_.-]+"}
minecraft-tag.json
required
Whether it's required for the current data pack
{"type": "boolean"}
devinit.schema-6.0.json
tool
The name of the tool to run.
{"type": "string", "enum": ["apt-get-install", "azurecli-login", "choco-install", "choco-upgrade", "dotnet-restore", "dotnet-toolinstall", "enable-iis", "msi-install", "npm-install", "nuget-restore", "require-azureartifactscredentialprovider", "require-azurecli", "require-choco", "require-dotnetcoresdk", "require-dotnetframeworksdk", "require-gitsubmodule", "require-mssql", "require-nodejs", "require-npm", "require-nuget", "require-psmodule", "require-vcpkg", "require-vscomponent", "require-winget", "set-env", "vcpkg-install", "windowsfeature-disable", "windowsfeature-enable", "windowsfeature-list", "winget-install", "wsl-install"]}
devinit.schema-6.0.json
input
The input varies by tool. For example, the required version number, the package-id, the input source file or source directory.
{"anyOf": [{"type": "string"}, {"type": "null"}]}
devinit.schema-6.0.json
additionalOptions
Additional Options to be appended to the tool's command line.
{"anyOf": [{"type": "string"}, {"type": "null"}]}
devinit.schema-6.0.json
comments
Comments for this tool item. For documentation only; ignored by the tool.
{"anyOf": [{"type": "string"}, {"type": "null"}]}
devinit.schema-6.0.json
run
'devinit.exe init' runs this list of tools sequentially. See also 'devinit.exe run'.
{"items": {"allOf": [{}], "anyOf": [{}]}}
devinit.schema-6.0.json
comments
Comments for this file. For documentation only; ignored by the tool.
{"anyOf": [{"type": "string"}, {"type": "null"}]}
minecraft-template-pool.json
Configuration file defining a template pool for a data pack for Minecraft.
{"$schema": "http://json-schema.org/draft-07/schema#", "properties": {"name": {"type": "string"}, "fallback": {"type": "string"}, "elements": {"type": "array", "items": {"type": "object", "properties": {"weight": {"type": "integer"}, "element": {"type": "object", "properties": {"element_type": {"type": "string", "enum": ["minecraft:empty_pool_element", "minecraft:feature_pool_element", "minecraft:list_pool_element", "minecraft:legacy_single_pool_element", "minecraft:single_pool_element"]}, "feature": {"type": "string"}, "location": {"type": "string"}, "projection": {"type": "string", "enum": ["rigid", "terrain_matching"]}, "processors": {"type": ["string", "object"], "properties": {"processors": {"type": "array", "items": {"type": "object", "properties": {"processor_type": {"type": "string"}}}}}}, "elements": {"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"}}}}}}}}}}}}}}}, "type": "object"}
minecraft-template-pool.json
name
The namespaced ID of the pool.
{"type": "string"}
minecraft-template-pool.json
fallback
Can set to another template pool, which generates when the original pool cannot generate at the end of all layers.
{"type": "string"}
minecraft-template-pool.json
elements
A list of structures to choose from.
{"type": "array", "items": {"type": "object", "properties": {"weight": {"type": "integer"}, "element": {"type": "object", "properties": {"element_type": {"type": "string", "enum": ["minecraft:empty_pool_element", "minecraft:feature_pool_element", "minecraft:list_pool_element", "minecraft:legacy_single_pool_element", "minecraft:single_pool_element"]}, "feature": {"type": "string"}, "location": {"type": "string"}, "projection": {"type": "string", "enum": ["rigid", "terrain_matching"]}, "processors": {"type": ["string", "object"], "properties": {"processors": {"type": "array", "items": {"type": "object", "properties": {"processor_type": {"type": "string"}}}}}}, "elements": {"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
weight
How likely this element is to be chosen when using this pool.
{"type": "integer"}
minecraft-template-pool.json
element
The properties of this element.
{"type": "object", "properties": {"element_type": {"type": "string", "enum": ["minecraft:empty_pool_element", "minecraft:feature_pool_element", "minecraft:list_pool_element", "minecraft:legacy_single_pool_element", "minecraft:single_pool_element"]}, "feature": {"type": "string"}, "location": {"type": "string"}, "projection": {"type": "string", "enum": ["rigid", "terrain_matching"]}, "processors": {"type": ["string", "object"], "properties": {"processors": {"type": "array", "items": {"type": "object", "properties": {"processor_type": {"type": "string"}}}}}}, "elements": {"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
feature
The namespaced id of the feature.
{"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"}