schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
rancher-fleet.json
items
An overlay to apply to the resource. The overlay can be a patch or a replacement. It should point to the folder containing the overlay file(s)
{"type": "string"}
rancher-fleet.json
imageScans
ImageScans is An array of images repositories to scan for, so the corresponding repositories may be automatically updated with the specified image
{"items": {"properties": {"image": {"type": "string"}, "interval": {"examples": ["5m"], "type": "string"}, "policy": {"properties": {"alphabetical": {"properties": {"order": {"type": "string"}}, "type": "object"}, "semver": {"properties": {"range": {"type": "string"}}, "type": "object"}}, "type": "object"}, "secretRef": {"properties": {"name": {"type": "string"}}, "type": "object"}, "tagName": {"type": "string"}}, "type": "object"}, "type": ["array", "null"]}
rancher-fleet.json
image
The image to scan for
{"type": "string"}
rancher-fleet.json
interval
The scan interval
{"examples": ["5m"], "type": "string"}
rancher-fleet.json
policy
An array of policies on how to retrieve the latest image. Can be semver or alphabetical
{"properties": {"alphabetical": {"properties": {"order": {"type": "string"}}, "type": "object"}, "semver": {"properties": {"range": {"type": "string"}}, "type": "object"}}, "type": "object"}
rancher-fleet.json
alphabetical
The alphabetical policy specifics
{"properties": {"order": {"type": "string"}}, "type": "object"}
rancher-fleet.json
order
The order of the images to use. Can be ascending or descending
{"type": "string"}
rancher-fleet.json
semver
The semver policy specifics
{"properties": {"range": {"type": "string"}}, "type": "object"}
rancher-fleet.json
range
Semver string to evaluate latest image. For more details on how to use semver, see https://github.com/Masterminds/semver
{"type": "string"}
rancher-fleet.json
secretRef
The secret reference to use for the image repository
{"properties": {"name": {"type": "string"}}, "type": "object"}
rancher-fleet.json
name
The name of the secret. It must be located in the same namespace as the GitRepo
{"type": "string"}
rancher-fleet.json
tagName
The tag name used in the manifest files, to be replaced with the latest image. Must be unique per Bundle
{"type": "string"}
minecraft-recipe.json
Configuration file defining a recipe for a data pack for Minecraft.
{"$schema": "http://json-schema.org/draft-07/schema#", "allOf": [{"if": {"properties": {"type": {"const": "minecraft:blasting"}}}, "then": {"anyOf": [{}, {}, {}]}}, {"if": {"properties": {"type": {"const": "minecraft:campfire_cooking"}}}, "then": {"anyOf": [{}, {}, {}]}}, {"if": {"properties": {"type": {"const": "minecraft:crafting_shaped"}}}, "then": {"anyOf": [{}, {}], "properties": {"pattern": {"type": "array", "items": {"type": "string", "maxLength": 3}, "maxItems": 3}, "key": {"additionalProperties": {"type": ["object", "array"], "properties": {"item": {"type": "string"}, "tag": {"type": "string"}}, "items": {"properties": {"item": {"type": "string"}, "tag": {"type": "string"}}}}}, "result": {}}}}, {"if": {"properties": {"type": {"const": "minecraft:crafting_shapeless"}}}, "then": {"anyOf": [{}, {}], "properties": {"ingredients": {"type": "array", "items": {"oneOf": [{"type": "object"}, {"type": "array", "minItems": 1, "maxItems": 9, "items": {}}]}}, "result": {}}}}, {"if": {"properties": {"type": {"const": "minecraft:smelting"}}}, "then": {"anyOf": [{}, {}, {}]}}, {"if": {"properties": {"type": {"const": "minecraft:smithing"}}}, "then": {"properties": {"base": {}, "addition": {}, "result": {"type": "object"}}}}, {"if": {"properties": {"type": {"const": "minecraft:smoking"}}}, "then": {"anyOf": [{}, {}, {}]}}, {"if": {"properties": {"type": {"const": "minecraft:stonecutting"}}}, "then": {"oneOf": [{}, {"type": "array", "items": {}}], "properties": {"result": {"type": "string"}, "count": {"type": "integer"}}}}], "definitions": {"item": {"type": "object", "properties": {"item": {"type": "string"}, "tag": {"type": "string"}}}, "ingredient": {"type": "object"}, "tagsCommonToAllRecipes": {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "show_notification": {"type": "boolean"}}}, "tagsCommonToAllCookingRecipes": {"type": "object", "properties": {"ingredient": {"type": ["object", "array"], "items": {}}, "result": {"type": "string"}, "experience": {"type": "number"}, "cookingtime": {"type": "integer"}}}, "commonRecipeCategory": {"type": "object", "properties": {"category": {"type": "string", "enum": ["building", "redstone", "equipment", "misc"]}}}, "cookingRecipeCategory": {"type": "object", "properties": {"category": {"type": "string", "enum": ["food", "blocks", "misc "]}}}, "result": {"type": "object", "properties": {"count": {"type": "integer", "default": 1}, "item": {"type": "string"}}}}, "properties": {"type": {"type": "string", "enum": ["minecraft:blasting", "minecraft:campfire_cooking", "minecraft:crafting_shaped", "minecraft:crafting_shapeless", "minecraft:smelting", "minecraft:smithing", "minecraft:smoking", "minecraft:stonecutting"]}}, "type": "object"}
minecraft-recipe.json
then
Represents a recipe in a blast furnace.
{"anyOf": [{}, {}, {}]}
minecraft-recipe.json
then
Represents a recipe in a campfire.
{"anyOf": [{}, {}, {}]}
minecraft-recipe.json
then
Represents a shaped crafting recipe in a crafting table.
{"anyOf": [{}, {}], "properties": {"pattern": {"type": "array", "items": {"type": "string", "maxLength": 3}, "maxItems": 3}, "key": {"additionalProperties": {"type": ["object", "array"], "properties": {"item": {"type": "string"}, "tag": {"type": "string"}}, "items": {"properties": {"item": {"type": "string"}, "tag": {"type": "string"}}}}}, "result": {}}}
minecraft-recipe.json
pattern
A list of single-character keys used to describe a pattern for shaped crafting.
{"type": "array", "items": {"type": "string", "maxLength": 3}, "maxItems": 3}
minecraft-recipe.json
key
All keys used for this shaped crafting recipe.
{"additionalProperties": {"type": ["object", "array"], "properties": {"item": {"type": "string"}, "tag": {"type": "string"}}, "items": {"properties": {"item": {"type": "string"}, "tag": {"type": "string"}}}}}
minecraft-recipe.json
additionalProperties
The ingredient corresponding to this key.
{"type": ["object", "array"], "properties": {"item": {"type": "string"}, "tag": {"type": "string"}}, "items": {"properties": {"item": {"type": "string"}, "tag": {"type": "string"}}}}
minecraft-recipe.json
item
An item ID.
{"type": "string"}
minecraft-recipe.json
tag
An item tag.
{"type": "string"}
minecraft-recipe.json
item
An item ID.
{"type": "string"}
minecraft-recipe.json
tag
An item tag.
{"type": "string"}
minecraft-recipe.json
then
Represents a shapeless crafting recipe in a crafting table.
{"anyOf": [{}, {}], "properties": {"ingredients": {"type": "array", "items": {"oneOf": [{"type": "object"}, {"type": "array", "minItems": 1, "maxItems": 9, "items": {}}]}}, "result": {}}}
minecraft-recipe.json
ingredients
A list of entries for this shapeless crafting recipe.
{"type": "array", "items": {"oneOf": [{"type": "object"}, {"type": "array", "minItems": 1, "maxItems": 9, "items": {}}]}}
minecraft-recipe.json
items
An entry made of a single ingredient.
{"type": "object"}
minecraft-recipe.json
items
An entry made of a list of acceptable ingredients.
{"type": "array", "minItems": 1, "maxItems": 9, "items": {}}
minecraft-recipe.json
then
Represents a recipe in a furnace.
{"anyOf": [{}, {}, {}]}
minecraft-recipe.json
then
Represents a recipe in a smithing table.
{"properties": {"base": {}, "addition": {}, "result": {"type": "object"}}}
minecraft-recipe.json
base
Ingredient specifying an item to be upgraded.
{}
minecraft-recipe.json
then
Represents a recipe in a smoker.
{"anyOf": [{}, {}, {}]}
minecraft-recipe.json
then
Represents a recipe in a stonecutter.
{"oneOf": [{}, {"type": "array", "items": {}}], "properties": {"result": {"type": "string"}, "count": {"type": "integer"}}}
minecraft-recipe.json
then
The ingredient for the recipe.
{}
minecraft-recipe.json
then
The list of ingredients for the recipe.
{"type": "array", "items": {}}
minecraft-recipe.json
result
An item ID. The output item of the recipe.
{"type": "string"}
minecraft-recipe.json
count
The amount of the output item.
{"type": "integer"}
minecraft-recipe.json
item
An item ID.
{"type": "string"}
minecraft-recipe.json
tag
An item tag.
{"type": "string"}
minecraft-recipe.json
ingredient
An acceptable ingredient.
{"type": "object"}
minecraft-recipe.json
type
A namespaced ID indicating the type of serializer of the recipe.
{"type": "string"}
minecraft-recipe.json
group
A string identifier. Used to group multiple recipes together in the recipe book.
{"type": "string"}
minecraft-recipe.json
show_notification
If a notification is shown when the recipe is unlocked.
{"type": "boolean"}
minecraft-recipe.json
ingredient
The ingredients.
{"type": ["object", "array"], "items": {}}
minecraft-recipe.json
result
An item ID. The output item of the recipe.
{"type": "string"}
minecraft-recipe.json
experience
The output experience of the recipe.
{"type": "number"}
minecraft-recipe.json
cookingtime
The cook time of the recipe in ticks.
{"type": "integer"}
minecraft-recipe.json
commonRecipeCategory
Category of common recipes (in recipe book).
{"type": "object", "properties": {"category": {"type": "string", "enum": ["building", "redstone", "equipment", "misc"]}}}
minecraft-recipe.json
cookingRecipeCategory
Category of cooking recipes (in recipe book).
{"type": "object", "properties": {"category": {"type": "string", "enum": ["food", "blocks", "misc "]}}}
minecraft-recipe.json
result
The output item of the recipe.
{"type": "object", "properties": {"count": {"type": "integer", "default": 1}, "item": {"type": "string"}}}
minecraft-recipe.json
count
The amount of the item.
{"type": "integer", "default": 1}
minecraft-recipe.json
item
An item ID.
{"type": "string"}
minecraft-recipe.json
type
The type of recipe.
{"type": "string", "enum": ["minecraft:blasting", "minecraft:campfire_cooking", "minecraft:crafting_shaped", "minecraft:crafting_shapeless", "minecraft:smelting", "minecraft:smithing", "minecraft:smoking", "minecraft:stonecutting"]}
build-cache-node-config-schema-5.json
The configuration format for build cache nodes
{"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"Entry(String,NodeCacheUser)": {"type": "object", "properties": {"key": {"type": "string"}, "value": {}, "hashCode()": {"type": "integer"}}, "required": ["key", "value", "hashCode()"], "additionalProperties": false, "minProperties": 1}, "NodeCacheUser": {"type": "object", "properties": {"level": {"type": "string", "enum": ["read", "readwrite"]}, "note": {"type": ["string", "null"]}, "password": {"allOf": [{}, {}]}}, "required": ["level", "password"], "additionalProperties": false, "minProperties": 1}, "Sha256HashedSecretString": {"type": "string", "pattern": "^(?:\\s*[A-Za-z0-9+/]){43}(?:\\s*=):(?:(?:\\s*[A-Za-z0-9+/]){4})*(?:(?:\\s*[A-Za-z0-9+/]){2}(?:\\s*=){2}|(?:\\s*[A-Za-z0-9+/]){3}(?:\\s*=))?\\s*$"}, "TargetSizeFixed": {"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "fixed"}, "size": {"type": "integer", "minimum": 1}}}, "TargetSizeMaxAvailable": {"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "maxAvailable"}}}, "UiAccessDisabled": {"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "disabled"}}}, "UiAccessGenerated": {"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "generated"}}}, "UiAccessOpen": {"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "open"}}}, "UiAccessSecure": {"type": "object", "required": ["password", "username"], "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "secure"}, "password": {"allOf": [{}, {}]}, "username": {"type": "string"}}}}, "type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"version": {"const": 5}, "cache": {"allOf": [{"type": "object", "properties": {"accessControl": {"allOf": [{"type": "object", "properties": {"anonymousLevel": {"type": "string", "enum": ["none", "read", "readwrite"]}, "users": {"type": "object", "additionalProperties": {}}}, "additionalProperties": false, "minProperties": 1}, {}]}, "freeSpaceBufferSize": {"type": "integer", "minimum": 256}, "maxArtifactSize": {"type": "integer", "minimum": 1}, "maxEntryAgeInHours": {"type": ["integer", "null"], "minimum": 1}, "targetSize": {"type": "object", "properties": {"type": {"enum": ["fixed", "maxAvailable"]}}, "required": ["type"], "allOf": [{"if": {"properties": {"type": {"const": "fixed"}}}, "then": {}}, {"if": {"properties": {"type": {"const": "maxAvailable"}}}, "then": {}}], "minProperties": 1}}, "additionalProperties": false, "minProperties": 1}, {}]}, "registration": {"allOf": [{"type": ["object", "null"], "properties": {"key": {"type": "string"}, "nodeAddress": {"type": "string", "format": "uri"}, "secret": {"type": "string"}, "serverAddress": {"type": "string", "format": "uri"}}, "required": ["key", "nodeAddress", "secret", "serverAddress"], "additionalProperties": false, "minProperties": 1}, {}]}, "uiAccess": {"type": "object", "properties": {"type": {"enum": ["disabled", "open", "secure", "generated"]}}, "required": ["type"], "allOf": [{"if": {"properties": {"type": {"const": "disabled"}}}, "then": {}}, {"if": {"properties": {"type": {"const": "open"}}}, "then": {}}, {"if": {"properties": {"type": {"const": "secure"}}}, "then": {}}, {"if": {"properties": {"type": {"const": "generated"}}}, "then": {}}], "minProperties": 1}}, "required": ["version"]}
build-cache-node-config-schema-5.json
NodeCacheUser
A user of the build cache
{"type": "object", "properties": {"level": {"type": "string", "enum": ["read", "readwrite"]}, "note": {"type": ["string", "null"]}, "password": {"allOf": [{}, {}]}}, "required": ["level", "password"], "additionalProperties": false, "minProperties": 1}
build-cache-node-config-schema-5.json
level
The level of the access for the build cache user
{"type": "string", "enum": ["read", "readwrite"]}
build-cache-node-config-schema-5.json
note
Some optional free text
{"type": ["string", "null"]}
build-cache-node-config-schema-5.json
password
The hashed password of the user
{}
build-cache-node-config-schema-5.json
TargetSizeFixed
Use a fixed target cache size
{"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "fixed"}, "size": {"type": "integer", "minimum": 1}}}
build-cache-node-config-schema-5.json
size
The total available size of the cache in MiB
{"type": "integer", "minimum": 1}
build-cache-node-config-schema-5.json
TargetSizeMaxAvailable
Set the target cache size dynamically based on the disk volume's capacity
{"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "maxAvailable"}}}
build-cache-node-config-schema-5.json
UiAccessDisabled
Access to the build cache node UI is disabled
{"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "disabled"}}}
build-cache-node-config-schema-5.json
UiAccessGenerated
Generated as startup credentials used for secure access to cache node UI
{"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "generated"}}}
build-cache-node-config-schema-5.json
UiAccessOpen
Access to the build cache node UI is open for anyone
{"type": "object", "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "open"}}}
build-cache-node-config-schema-5.json
UiAccessSecure
Credentials used for secure access to cache node UI
{"type": "object", "required": ["password", "username"], "additionalProperties": false, "minProperties": 1, "properties": {"type": {"const": "secure"}, "password": {"allOf": [{}, {}]}, "username": {"type": "string"}}}
build-cache-node-config-schema-5.json
password
The hashed password for securing the cache node UI
{}
build-cache-node-config-schema-5.json
username
The username for securing the cache node UI
{"type": "string"}
build-cache-node-config-schema-5.json
version
The version of the config file model (must be 5).
{"const": 5}
build-cache-node-config-schema-5.json
cache
Settings around cache size and access
{"type": "object", "properties": {"accessControl": {"allOf": [{"type": "object", "properties": {"anonymousLevel": {"type": "string", "enum": ["none", "read", "readwrite"]}, "users": {"type": "object", "additionalProperties": {}}}, "additionalProperties": false, "minProperties": 1}, {}]}, "freeSpaceBufferSize": {"type": "integer", "minimum": 256}, "maxArtifactSize": {"type": "integer", "minimum": 1}, "maxEntryAgeInHours": {"type": ["integer", "null"], "minimum": 1}, "targetSize": {"type": "object", "properties": {"type": {"enum": ["fixed", "maxAvailable"]}}, "required": ["type"], "allOf": [{"if": {"properties": {"type": {"const": "fixed"}}}, "then": {}}, {"if": {"properties": {"type": {"const": "maxAvailable"}}}, "then": {}}], "minProperties": 1}}, "additionalProperties": false, "minProperties": 1}
build-cache-node-config-schema-5.json
accessControl
These credentials are used to restrict access to the build cache
{"type": "object", "properties": {"anonymousLevel": {"type": "string", "enum": ["none", "read", "readwrite"]}, "users": {"type": "object", "additionalProperties": {}}}, "additionalProperties": false, "minProperties": 1}
build-cache-node-config-schema-5.json
anonymousLevel
The level of the access for anonymous users
{"type": "string", "enum": ["none", "read", "readwrite"]}
build-cache-node-config-schema-5.json
users
The users of the cache and their access level
{"type": "object", "additionalProperties": {}}
build-cache-node-config-schema-5.json
accessControl
The credentials for reading and writing to the cache
{}
build-cache-node-config-schema-5.json
freeSpaceBufferSize
The free space buffer to reserve in MiB
{"type": "integer", "minimum": 256}
build-cache-node-config-schema-5.json
maxArtifactSize
The maximum size of a single artifact in the cache in MiB
{"type": "integer", "minimum": 1}
build-cache-node-config-schema-5.json
maxEntryAgeInHours
The maximum age of an artifact in the cache in hours, if enabled
{"type": ["integer", "null"], "minimum": 1}
build-cache-node-config-schema-5.json
cache
The cache settings
{}
build-cache-node-config-schema-5.json
registration
Settings for connecting to Gradle Enterprise
{"type": ["object", "null"], "properties": {"key": {"type": "string"}, "nodeAddress": {"type": "string", "format": "uri"}, "secret": {"type": "string"}, "serverAddress": {"type": "string", "format": "uri"}}, "required": ["key", "nodeAddress", "secret", "serverAddress"], "additionalProperties": false, "minProperties": 1}
build-cache-node-config-schema-5.json
key
The key of the node (can be found on the nodes screen of Gradle Enterprise)
{"type": "string"}
build-cache-node-config-schema-5.json
nodeAddress
The URI of this build cache node
{"type": "string", "format": "uri"}
build-cache-node-config-schema-5.json
secret
The secret of the node (can be found on the nodes screen of Gradle Enterprise)
{"type": "string"}
build-cache-node-config-schema-5.json
serverAddress
The URI of the Gradle Enterprise instance
{"type": "string", "format": "uri"}
build-cache-node-config-schema-5.json
registration
The registration details to connect to Gradle Enterprise
{}
cv.schema.json
Level
Disability degree. Value must be between 1.0 (fully disabled) and 0
{}
cv.schema.json
License
Kind of driver licence, i.e.: A, B1, etc
{"type": "string"}
cv.schema.json
IdDocument
Identification document, I.e.: passport
{"type": "object", "required": ["Country", "Document", "Id"], "additionalProperties": false, "properties": {"Country": {}, "Document": {"type": "string"}, "Id": {"type": "string"}}}
cv.schema.json
Document
Document name. It could be a national document name, or passport
{"type": "string"}
cv.schema.json
Given Name
Given name. It can be multiple words for compound names
{"type": "string"}
cv.schema.json
Family Name
Family name. Depending on cultures, this field can be very different
{"type": "string"}
cv.schema.json
Native Language
First learned language. Or preferred language if you had many
{}
cv.schema.json
Avatar
Avatar. Image used to represent you without being an actual photo
{}
cv.schema.json
Nationalities
Set of nationalities. If none is supplied, the birth of country is used
{"type": "array", "uniqueItems": true, "items": {}}
cv.schema.json
Region
Country region. If set, can not be blank
{}
cv.schema.json
City
City. If set, can not be blank
{}
cv.schema.json
Postcode
Postcode. If set, can not be blank
{}
cv.schema.json
Address
Street address. If set, can not be blank
{}
cv.schema.json
Region
Country region. If set, can not be blank
{}
cv.schema.json
City
City. If set, can not be blank
{}
cv.schema.json
Postcode
Postcode. If set, can not be blank
{}
cv.schema.json
Address
Street address. If set, can not be blank
{}
cv.schema.json
Organization
Organization data (can be used for companies, educational institutions, etc.)
{"type": "object", "required": ["Name"], "additionalProperties": false, "properties": {"Name": {"type": "string"}, "Website": {}, "Type": {}, "Industry": {}}}