schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
minecraft-item-modifier.json
destination
The type of generated structure to locate. Accepts any of the StructureTypes used by the /locate command (case insensitive).
{"type": "string"}
minecraft-item-modifier.json
decoration
The icon used to mark the destination on the map. Accepts any of the map icon text IDs (case insensitive).
{"type": "string"}
minecraft-item-modifier.json
zoom
The zoom level of the resulting map.
{"type": "integer", "default": 2}
minecraft-item-modifier.json
search_radius
The size, in chunks, of the area to search for structures. The area checked is square, not circular.
{"type": "integer", "default": 50}
minecraft-item-modifier.json
skip_existing_chunks
Don't search in chunks that have already been generated.
{"type": "boolean", "default": true}
minecraft-item-modifier.json
then
For loot tables of type 'block', removes some items from a stack, if there was an explosion. Each item has a chance of 1/explosion radius to be lost.
{}
minecraft-item-modifier.json
then
Smelts the item as it would be in a furnace. Used in combination with the entity_properties condition to cook food from animals on death.
{}
minecraft-item-modifier.json
then
Adds required item tags of a player head.
{"properties": {"entity": {"type": "string"}}}
minecraft-item-modifier.json
entity
Specifies an entity to be used for the player head.
{"type": "string"}
minecraft-item-modifier.json
then
Limits the count of every item stack.
{"properties": {"limit": {"type": ["integer", "object"], "properties": {"min": {"type": ["integer", "object"]}, "max": {"type": ["integer", "object"]}}}}}
minecraft-item-modifier.json
limit
Specifies the exact limit to use.
{"type": ["integer", "object"], "properties": {"min": {"type": ["integer", "object"]}, "max": {"type": ["integer", "object"]}}}
minecraft-item-modifier.json
min
Minimum limit to use.
{"type": ["integer", "object"]}
minecraft-item-modifier.json
max
Max limit to use.
{"type": ["integer", "object"]}
minecraft-item-modifier.json
then
Adjusts the stack size based on the level of the Looting enchantment on the killer entity.
{"properties": {"count": {"type": ["integer", "object"]}, "limit": {"type": "integer"}}}
minecraft-item-modifier.json
count
Specifies the number of additional items per level of looting.
{"type": ["integer", "object"]}
minecraft-item-modifier.json
limit
Specifies the maximum amount of items in the stack after the looting calculation. If the value is 0, no limit is applied.
{"type": "integer"}
minecraft-item-modifier.json
then
Add attribute modifiers to the item.
{"properties": {"modifiers": {"type": "array", "items": {"type": "object", "additionalProperties": {"properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "operation": {"type": "string", "enum": ["addition", "multiply_base", "multiply_total"]}, "amount": {"type": ["number", "object"]}, "id": {"type": "string"}, "slot": {"type": ["string", "array"], "items": {"type": "string"}}}}}}}}
minecraft-item-modifier.json
name
Name of the modifer.
{"type": "string"}
minecraft-item-modifier.json
attribute
The name of the attribute this modifer is to act upon.
{"type": "string"}
minecraft-item-modifier.json
amount
Specifies the amount of the modifier.
{"type": ["number", "object"]}
minecraft-item-modifier.json
id
UUID of the modifier following.
{"type": "string"}
minecraft-item-modifier.json
slot
Slots the item must be in for the modifier to take effect.
{"type": ["string", "array"], "items": {"type": "string"}}
minecraft-item-modifier.json
then
Sets tags needed for banner patterns.
{"properties": {"patterns": {"type": "array", "items": {"type": "object", "additionalProperties": {"type": "object", "properties": {"pattern": {"type": "string"}, "color": {"type": "string", "enum": ["white", "orange", "magenta", "light_blue", "yellow", "lime", "pink", "gray", "light_gray", "cyan", "purple", "blue", "brown", "green", "red", "black"]}}}}}, "append": {"type": "boolean"}}}
minecraft-item-modifier.json
patterns
List of patterns.
{"type": "array", "items": {"type": "object", "additionalProperties": {"type": "object", "properties": {"pattern": {"type": "string"}, "color": {"type": "string", "enum": ["white", "orange", "magenta", "light_blue", "yellow", "lime", "pink", "gray", "light_gray", "cyan", "purple", "blue", "brown", "green", "red", "black"]}}}}}
minecraft-item-modifier.json
pattern
The pattern type.
{"type": "string"}
minecraft-item-modifier.json
color
The color for this pattern.
{"type": "string", "enum": ["white", "orange", "magenta", "light_blue", "yellow", "lime", "pink", "gray", "light_gray", "cyan", "purple", "blue", "brown", "green", "red", "black"]}
minecraft-item-modifier.json
append
If true, new patterns will be appended to existing ones.
{"type": "boolean"}
minecraft-item-modifier.json
then
For loot tables of type 'block', sets the contents of a container block item to a list of entries.
{"properties": {"entries": {"type": "array"}}}
minecraft-item-modifier.json
entries
The entries to use as contents.
{"type": "array"}
minecraft-item-modifier.json
then
Sets the stack size.
{"properties": {"count": {"type": ["integer", "object"]}, "add": {"type": "boolean"}}}
minecraft-item-modifier.json
count
Specifies the stack size to set.
{"type": ["integer", "object"]}
minecraft-item-modifier.json
add
If true, change will be relative to the current count.
{"type": "boolean"}
minecraft-item-modifier.json
then
Sets the item's damage value (durability) for tools.
{"properties": {"damage": {"type": ["number", "object"]}, "add": {"type": "boolean"}}}
minecraft-item-modifier.json
damage
Specifies the damage fraction to set (1.0 is undamaged, 0.0 is zero durability left).
{"type": ["number", "object"]}
minecraft-item-modifier.json
add
If true, change will be relative to current damage.
{"type": "boolean"}
minecraft-item-modifier.json
then
Sets the item's enchantments.
{"properties": {"enchantments": {"type": "object", "additionalProperties": {"type": ["integer", "object"]}}, "add": {"type": "boolean"}}}
minecraft-item-modifier.json
enchantments
Enchantments to add.
{"type": "object", "additionalProperties": {"type": ["integer", "object"]}}
minecraft-item-modifier.json
additionalProperties
Key name is the enchantment ID.
{"type": ["integer", "object"]}
minecraft-item-modifier.json
add
If true, change will be relative to current level.
{"type": "boolean"}
minecraft-item-modifier.json
then
Sets the loot table for a container (chest etc.).
{"properties": {"name": {"type": "string"}, "seed": {"type": "integer"}}}
minecraft-item-modifier.json
name
Specifies the resource location of the loot table to be used.
{"type": "string"}
minecraft-item-modifier.json
seed
Specifies the loot table seed. If absent or set to 0, a random seed will be used.
{"type": "integer"}
minecraft-item-modifier.json
then
Adds lore to the item.
{"properties": {"lore": {"type": "array", "items": {"type": "object"}}, "entity": {"type": "string"}, "replace": {"type": "boolean"}}}
minecraft-item-modifier.json
lore
List of JSON text components. Each list entry represents one line of the lore. Advanced components are resolved only if entity successfully targets an entity.
{"type": "array", "items": {"type": "object"}}
minecraft-item-modifier.json
entity
Specifies the entity to act as the source @s in the JSON text component.
{"type": "string"}
minecraft-item-modifier.json
replace
If true, replaces all existing lines of lore, if false appends the list.
{"type": "boolean"}
minecraft-item-modifier.json
then
Adds display name of the item.
{"properties": {"name": {"type": ["array", "object", "string"]}, "entity": {"type": "string"}}}
minecraft-item-modifier.json
name
A JSON text component name, allowing color, translations, etc. Advanced components are resolved only if entity successfully targets an entity.
{"type": ["array", "object", "string"]}
minecraft-item-modifier.json
entity
Specifies an entity to act as source @s in the JSON text component.
{"type": "string"}
minecraft-item-modifier.json
then
Adds NBT data to the item.
{"properties": {"tag": {"type": "string"}}}
minecraft-item-modifier.json
tag
Tag string to add, similar to those used by commands. Note that the first bracket is required and quotation marks need to be escaped using a backslash (\).
{"type": "string"}
minecraft-item-modifier.json
then
Sets the status effects for suspicious stew.
{"properties": {"effects": {"type": "array", "items": {"type": "object", "additionalProperties": {"type": "object", "properties": {"type": {"type": "string"}, "duration": {"type": ["integer", "object"]}}}}}}}
minecraft-item-modifier.json
effects
The effects to apply.
{"type": "array", "items": {"type": "object", "additionalProperties": {"type": "object", "properties": {"type": {"type": "string"}, "duration": {"type": ["integer", "object"]}}}}}
minecraft-item-modifier.json
type
The effect ID.
{"type": "string"}
minecraft-item-modifier.json
duration
The duration of the effect.
{"type": ["integer", "object"]}
dotnet-releases-index.json
A collection of manifests for .NET products, which is updated with each preview and stable release of the .NET SDK and/or Runtime
{"$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": false, "definitions": {"dateYYYYMMDD": {"type": "string", "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"}, "releaseVersion": {"type": "string", "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$"}, "releaseType": {"type": "string", "enum": ["sts", "lts"]}, "supportPhase": {"type": "string", "enum": ["preview", "go-live", "active", "maintenance", "eol"]}, "product": {"type": "object", "properties": {"channel-version": {"type": "string", "pattern": "^[0-9]+\\.[0-9]+$"}, "eol-date": {"oneOf": [{}, {"type": "null"}]}, "security": {"type": "boolean"}, "latest-release-date": {}, "latest-release": {}, "latest-runtime": {}, "latest-sdk": {}, "product": {"type": "string"}, "releases.json": {"type": "string", "format": "uri"}, "release-type": {}, "support-phase": {}}, "required": ["channel-version", "security", "latest-release-date", "latest-release", "latest-runtime", "latest-sdk", "product", "releases.json", "release-type", "support-phase"], "additionalProperties": false}}, "id": "https://json.schemastore.org/dotnet-releases-index.json", "properties": {"releases-index": {"type": "array", "items": {}}}, "required": ["releases-index"], "type": "object"}
dotnet-releases-index.json
dateYYYYMMDD
A date in the format YYYY-MM-DD
{"type": "string", "pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$"}
dotnet-releases-index.json
releaseVersion
A SemVer-compatible version string
{"type": "string", "pattern": "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$"}
dotnet-releases-index.json
releaseType
An enumeration describing the different releaes types of a product
{"type": "string", "enum": ["sts", "lts"]}
dotnet-releases-index.json
supportPhase
An enumeration describing the different support phases of a product
{"type": "string", "enum": ["preview", "go-live", "active", "maintenance", "eol"]}
dotnet-releases-index.json
channel-version
The version of the product, e.g '5.0' or '1.1'
{"type": "string", "pattern": "^[0-9]+\\.[0-9]+$"}
dotnet-releases-index.json
eol-date
The end-of-life (EOL) date for this Product when it is considered to be out of support. The value may be `null` if the EOL date is undetermined, e.g. when a product is still a prerelease.
{"oneOf": [{}, {"type": "null"}]}
dotnet-releases-index.json
security
`true` if the latest release of this product includes a security update, `false` otherwise.
{"type": "boolean"}
dotnet-releases-index.json
latest-release-date
The date of the latest release of this product.
{}
dotnet-releases-index.json
latest-release
The version of the latest release
{}
dotnet-releases-index.json
latest-runtime
The version of the runtime included in the latest release
{}
dotnet-releases-index.json
latest-sdk
The version of the SDK included in the latest release. This is usually the SDK with the highest feature band. A ProductRelease may include multiple SDKs across different feature bands, all of which carry the same runtime version.
{}
dotnet-releases-index.json
product
The name of the product.
{"type": "string"}
dotnet-releases-index.json
releases.json
The URL pointing to the releases.json file that contains information about all the releases associated with this Product.
{"type": "string", "format": "uri"}
dotnet-releases-index.json
release-type
The type of Product release indicating whether the release is Standard Term Support (sts) or Long Term Support (lts).
{}
dotnet-releases-index.json
support-phase
The support phase of the Product.
{}
dotnet-releases-index.json
releases-index
A collection of all released products
{"type": "array", "items": {}}
anywork-ac-1.1.json
Used to configure any part of AnyWork automation.
{"$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": true, "allOf": [{"if": {"properties": {"ctype": {"const": "swagger-codegen"}}}, "then": {"required": ["swagger-codegen"], "properties": {"swagger-codegen": {"type": "object", "additionalProperties": false, "required": ["schemas"], "properties": {"schemas": {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["name", "actions"], "properties": {"name": {"type": "string", "pattern": "[a-zA-Z]+", "examples": ["authorization"]}, "disable": {"type": "boolean", "default": true}, "actions": {"type": "array", "uniqueItems": true, "items": {"anyOf": [{"type": "object", "additionalProperties": false, "required": ["type", "sourceUrl", "id"], "properties": {"type": {"type": "string", "const": "download"}, "sourceUrl": {"type": "string", "examples": ["http://somewhere/path/to/swagger.json"], "pattern": "http[s]?:\\/\\/.*\\/swagger\\.json"}, "id": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": true, "required": ["type", "ngVersion", "id", "downloadId"], "properties": {"type": {"type": "string", "const": "generate"}, "ngVersion": {"default": "12.2.14"}, "id": {"type": "number", "default": 0}, "downloadId": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "generateId"], "properties": {"type": {"type": "string", "const": "correction"}, "generateId": {}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "typescriptVersion", "id", "generateId"], "properties": {"type": {"type": "string", "const": "build"}, "typescriptVersion": {"default": "4.3.5"}, "id": {"type": "number"}, "generateId": {}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "registryUrl", "token", "id"], "properties": {"type": {"type": "string", "const": "publish"}, "registryUrl": {"type": "string", "pattern": "http[s]?://.*", "default": "http://verdaccio.anywork.local:4873"}, "token": {"type": "string", "default": "bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w=", "examples": ["bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w="]}, "buildId": {}, "id": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "targetPath", "publishId"], "properties": {"type": {"type": "string", "const": "install"}, "publishId": {"type": "number", "default": 0}, "targetPath": {"type": "string"}, "disable": {}}}]}}}}}}}}}}], "definitions": {"version": {"pattern": "^[\\^~]?(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$"}, "buildId": {"type": "number", "default": 0}, "generateId": {"type": "number", "default": 0}, "disable": {"type": "boolean", "default": true}}, "properties": {"ctype": {"type": "string"}, "cversion": {"type": "integer", "default": 1}}, "required": ["ctype", "cversion"], "type": "object"}
anywork-ac-1.1.json
swagger-codegen
swagger-codegen Configuration
{"type": "object", "additionalProperties": false, "required": ["schemas"], "properties": {"schemas": {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["name", "actions"], "properties": {"name": {"type": "string", "pattern": "[a-zA-Z]+", "examples": ["authorization"]}, "disable": {"type": "boolean", "default": true}, "actions": {"type": "array", "uniqueItems": true, "items": {"anyOf": [{"type": "object", "additionalProperties": false, "required": ["type", "sourceUrl", "id"], "properties": {"type": {"type": "string", "const": "download"}, "sourceUrl": {"type": "string", "examples": ["http://somewhere/path/to/swagger.json"], "pattern": "http[s]?:\\/\\/.*\\/swagger\\.json"}, "id": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": true, "required": ["type", "ngVersion", "id", "downloadId"], "properties": {"type": {"type": "string", "const": "generate"}, "ngVersion": {"default": "12.2.14"}, "id": {"type": "number", "default": 0}, "downloadId": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "generateId"], "properties": {"type": {"type": "string", "const": "correction"}, "generateId": {}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "typescriptVersion", "id", "generateId"], "properties": {"type": {"type": "string", "const": "build"}, "typescriptVersion": {"default": "4.3.5"}, "id": {"type": "number"}, "generateId": {}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "registryUrl", "token", "id"], "properties": {"type": {"type": "string", "const": "publish"}, "registryUrl": {"type": "string", "pattern": "http[s]?://.*", "default": "http://verdaccio.anywork.local:4873"}, "token": {"type": "string", "default": "bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w=", "examples": ["bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w="]}, "buildId": {}, "id": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "targetPath", "publishId"], "properties": {"type": {"type": "string", "const": "install"}, "publishId": {"type": "number", "default": 0}, "targetPath": {"type": "string"}, "disable": {}}}]}}}}}}}
anywork-ac-1.1.json
schemas
List of schemas (microservices) to generate it's libraries.
{"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["name", "actions"], "properties": {"name": {"type": "string", "pattern": "[a-zA-Z]+", "examples": ["authorization"]}, "disable": {"type": "boolean", "default": true}, "actions": {"type": "array", "uniqueItems": true, "items": {"anyOf": [{"type": "object", "additionalProperties": false, "required": ["type", "sourceUrl", "id"], "properties": {"type": {"type": "string", "const": "download"}, "sourceUrl": {"type": "string", "examples": ["http://somewhere/path/to/swagger.json"], "pattern": "http[s]?:\\/\\/.*\\/swagger\\.json"}, "id": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": true, "required": ["type", "ngVersion", "id", "downloadId"], "properties": {"type": {"type": "string", "const": "generate"}, "ngVersion": {"default": "12.2.14"}, "id": {"type": "number", "default": 0}, "downloadId": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "generateId"], "properties": {"type": {"type": "string", "const": "correction"}, "generateId": {}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "typescriptVersion", "id", "generateId"], "properties": {"type": {"type": "string", "const": "build"}, "typescriptVersion": {"default": "4.3.5"}, "id": {"type": "number"}, "generateId": {}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "registryUrl", "token", "id"], "properties": {"type": {"type": "string", "const": "publish"}, "registryUrl": {"type": "string", "pattern": "http[s]?://.*", "default": "http://verdaccio.anywork.local:4873"}, "token": {"type": "string", "default": "bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w=", "examples": ["bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w="]}, "buildId": {}, "id": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "targetPath", "publishId"], "properties": {"type": {"type": "string", "const": "install"}, "publishId": {"type": "number", "default": 0}, "targetPath": {"type": "string"}, "disable": {}}}]}}}}}
anywork-ac-1.1.json
name
Name of schema. This will be used to generate codes, only `[a-zA-Z]+` is accepted.
{"type": "string", "pattern": "[a-zA-Z]+", "examples": ["authorization"]}
anywork-ac-1.1.json
disable
Disables all actions over this schema.
{"type": "boolean", "default": true}
anywork-ac-1.1.json
actions
Determines the actions should be applied over this schema.
{"type": "array", "uniqueItems": true, "items": {"anyOf": [{"type": "object", "additionalProperties": false, "required": ["type", "sourceUrl", "id"], "properties": {"type": {"type": "string", "const": "download"}, "sourceUrl": {"type": "string", "examples": ["http://somewhere/path/to/swagger.json"], "pattern": "http[s]?:\\/\\/.*\\/swagger\\.json"}, "id": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": true, "required": ["type", "ngVersion", "id", "downloadId"], "properties": {"type": {"type": "string", "const": "generate"}, "ngVersion": {"default": "12.2.14"}, "id": {"type": "number", "default": 0}, "downloadId": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "generateId"], "properties": {"type": {"type": "string", "const": "correction"}, "generateId": {}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "typescriptVersion", "id", "generateId"], "properties": {"type": {"type": "string", "const": "build"}, "typescriptVersion": {"default": "4.3.5"}, "id": {"type": "number"}, "generateId": {}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "registryUrl", "token", "id"], "properties": {"type": {"type": "string", "const": "publish"}, "registryUrl": {"type": "string", "pattern": "http[s]?://.*", "default": "http://verdaccio.anywork.local:4873"}, "token": {"type": "string", "default": "bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w=", "examples": ["bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w="]}, "buildId": {}, "id": {"type": "number", "default": 0}, "disable": {}}}, {"type": "object", "additionalProperties": false, "required": ["type", "targetPath", "publishId"], "properties": {"type": {"type": "string", "const": "install"}, "publishId": {"type": "number", "default": 0}, "targetPath": {"type": "string"}, "disable": {}}}]}}
anywork-ac-1.1.json
items
Defines a download schema task.
{"type": "object", "additionalProperties": false, "required": ["type", "sourceUrl", "id"], "properties": {"type": {"type": "string", "const": "download"}, "sourceUrl": {"type": "string", "examples": ["http://somewhere/path/to/swagger.json"], "pattern": "http[s]?:\\/\\/.*\\/swagger\\.json"}, "id": {"type": "number", "default": 0}, "disable": {}}}
anywork-ac-1.1.json
type
Type of action to apply.
{"type": "string", "const": "download"}
anywork-ac-1.1.json
sourceUrl
Source of `swagger.json` schema to download
{"type": "string", "examples": ["http://somewhere/path/to/swagger.json"], "pattern": "http[s]?:\\/\\/.*\\/swagger\\.json"}
anywork-ac-1.1.json
id
A unique specific ID of this download to be referenced (`DOWNLOAD_ID`).
{"type": "number", "default": 0}
anywork-ac-1.1.json
items
Defines a TS code generator task.
{"type": "object", "additionalProperties": true, "required": ["type", "ngVersion", "id", "downloadId"], "properties": {"type": {"type": "string", "const": "generate"}, "ngVersion": {"default": "12.2.14"}, "id": {"type": "number", "default": 0}, "downloadId": {"type": "number", "default": 0}, "disable": {}}}
anywork-ac-1.1.json
type
Type of action to apply.
{"type": "string", "const": "generate"}
anywork-ac-1.1.json
ngVersion
Specifies Angular version which codes will be generated for.
{"default": "12.2.14"}
anywork-ac-1.1.json
id
A unique specific ID of this generation to be referenced (`GENERATE_ID`).
{"type": "number", "default": 0}
anywork-ac-1.1.json
downloadId
The `DOWNLOAD_ID` of downloaded schema to generate codes based on.
{"type": "number", "default": 0}
anywork-ac-1.1.json
items
Defines a code correction task.
{"type": "object", "additionalProperties": false, "required": ["type", "generateId"], "properties": {"type": {"type": "string", "const": "correction"}, "generateId": {}, "disable": {}}}
anywork-ac-1.1.json
type
Type of action to apply.
{"type": "string", "const": "correction"}
anywork-ac-1.1.json
items
Defines a TS code builder task.
{"type": "object", "additionalProperties": false, "required": ["type", "typescriptVersion", "id", "generateId"], "properties": {"type": {"type": "string", "const": "build"}, "typescriptVersion": {"default": "4.3.5"}, "id": {"type": "number"}, "generateId": {}, "disable": {}}}
anywork-ac-1.1.json
type
Type of action to apply.
{"type": "string", "const": "build"}
anywork-ac-1.1.json
typescriptVersion
Specifies TypeScript version to install before build.
{"default": "4.3.5"}
anywork-ac-1.1.json
id
A unique specific ID of this build to be referenced (`BUILD_ID`).
{"type": "number"}
anywork-ac-1.1.json
items
Defines a `npm publish` task.
{"type": "object", "additionalProperties": false, "required": ["type", "registryUrl", "token", "id"], "properties": {"type": {"type": "string", "const": "publish"}, "registryUrl": {"type": "string", "pattern": "http[s]?://.*", "default": "http://verdaccio.anywork.local:4873"}, "token": {"type": "string", "default": "bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w=", "examples": ["bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w="]}, "buildId": {}, "id": {"type": "number", "default": 0}, "disable": {}}}
anywork-ac-1.1.json
type
Type of action to apply.
{"type": "string", "const": "publish"}
anywork-ac-1.1.json
registryUrl
The Url of registry accepting this respository.
{"type": "string", "pattern": "http[s]?://.*", "default": "http://verdaccio.anywork.local:4873"}
anywork-ac-1.1.json
token
Token to use access registry.
{"type": "string", "default": "bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w=", "examples": ["bzKaK7hK2OAoCK9d72S0UevXGZEjj8rZpv8AFoaZ+/w="]}
anywork-ac-1.1.json
id
A unique specific ID of this publish to be referenced (`PUBLISH_ID`).
{"type": "number", "default": 0}
anywork-ac-1.1.json
items
Defines a Api install task.
{"type": "object", "additionalProperties": false, "required": ["type", "targetPath", "publishId"], "properties": {"type": {"type": "string", "const": "install"}, "publishId": {"type": "number", "default": 0}, "targetPath": {"type": "string"}, "disable": {}}}
anywork-ac-1.1.json
type
Type of action to apply.
{"type": "string", "const": "install"}