schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
config.json
name
name specifies the resource name
{"type": "string"}
config.json
transformers
transformers defines how the default input value need to be transformed
{"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
Transformer holds a transformer rule
{"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
addprefix
AddPrefix adds a prefix to the transformer input value
{"type": "string"}
config.json
addsuffix
AddSuffix adds a suffix to the transformer input value
{"type": "string"}
config.json
trimprefix
TrimPrefix removes a prefix to the transformer input value
{"type": "string"}
config.json
trimsuffix
TrimSuffix removes the suffix from the transformer input value
{"type": "string"}
config.json
replacers
Replacers specifies a list of replacer instruction
{"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}
config.json
items
Replacer is struct used to feed strings.Replacer
{"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}
config.json
from
From defines the source value which need to be replaced
{"type": "string"}
config.json
to
To defines the "to what" a "from" value needs to be replaced
{"type": "string"}
config.json
replacer
Replacer specifies what value needs to be changed and how
{"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}
config.json
from
From defines the source value which need to be replaced
{"type": "string"}
config.json
to
To defines the "to what" a "from" value needs to be replaced
{"type": "string"}
config.json
find
Find searches for a specific value if it exists and return false if it doesn't
{"type": "string"}
config.json
findsubmatch
Find searches for a specific value if it exists then return the value using regular expression
{"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}
config.json
pattern
Pattern defines regular expression to use for retrieving a submatch
{"type": "string"}
config.json
captureindex
CaptureIndex defines which substring occurrence to retrieve. Note also that a value of `0` for `captureIndex` returns all submatches, and individual submatch indexes start at `1`.
{"type": "integer"}
config.json
semverinc
SemvVerInc specifies a comma separated list semantic versioning component that needs to be upgraded.
{"type": "string"}
config.json
spec
Spec defines a specification for a "dockerimage" resource parsed from an updatecli manifest file
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"registry": {"properties": {"auth": {"properties": {"token": {"type": "string"}, "headerformat": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "url": {"type": "string"}, "rootdir": {"type": "string"}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "package": {"type": "string"}, "version": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object", "required": ["package"]}
config.json
registry
[S][C] Registry specifies the registry to use
{"properties": {"auth": {"properties": {"token": {"type": "string"}, "headerformat": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "url": {"type": "string"}, "rootdir": {"type": "string"}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
auth
[A][S][C] Auth specifies the cargo registry auth to use for authentication.
{"properties": {"token": {"type": "string"}, "headerformat": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
token
[A][S][C] Token specifies the cargo registry token to use for authentication.
{"type": "string"}
config.json
headerformat
[A][S][C] HeaderFormat specifies the cargo registry header format to use for authentication (defaults to `Bearer`).
{"type": "string"}
config.json
url
[A][S][C] URL specifies the cargo registry URL to use for authentication.
{"type": "string"}
config.json
rootdir
[A][S][C] RootDir specifies the cargo registry root directory to use as FS index.
{"type": "string"}
config.json
scmid
[A] SCMID specifies the cargo registry scmId to use as FS index.
{"type": "string"}
config.json
package
[S][C] Package specifies the name of the package
{"type": "string"}
config.json
version
[C] Defines a specific package version
{"type": "string"}
config.json
versionfilter
[S] VersionFilter provides parameters to specify version pattern and its type like regex, semver, or just latest.
{"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}
config.json
kind
specifies the version kind such as semver, regex, or latest
{"type": "string"}
config.json
pattern
specifies the version pattern according the version kind
{"type": "string"}
config.json
strict
strict enforce strict versioning rule. Only used for semantic versioning at this time
{"type": "boolean"}
config.json
scmid
scmid specifies the scm configuration key associated to the current resource
{"type": "string"}
config.json
conditions
Conditions defines the list of condition configuration
{"patternProperties": {".*": {"oneOf": [{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["dockerfile"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "instruction": {}, "value": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["maven"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "repository": {"type": "string"}, "repositories": {"items": {"type": "string"}, "type": "array"}, "groupid": {"type": "string"}, "artifactid": {"type": "string"}, "version": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["shell"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"command": {"type": "string"}, "environments": {"items": {"properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["name"]}, "type": "array"}, "changedif": {"oneOf": [{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["console/output"]}, "spec": true}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["exitcode"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"warning": {"type": "integer"}, "success": {"type": "integer"}, "failure": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["warning", "success", "failure"]}}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["file/checksum"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"files": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object", "required": ["files"]}}, "additionalProperties": false, "type": "object"}]}, "shell": {"type": "string"}, "workdir": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["command"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["golang"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"version": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["yaml"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "files": {"items": {"type": "string"}, "type": "array"}, "key": {"type": "string"}, "value": {"type": "string"}, "keyonly": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["golang/module"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"proxy": {"type": "string"}, "module": {"type": "string"}, "version": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object", "required": ["module"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["stash/tag"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "password": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "tag": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["dockerdigest"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"architecture": {"type": "string"}, "image": {"type": "string"}, "tag": {"type": "string"}, "digest": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}, "hidetag": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["dockerimage"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"architectures": {"items": {"type": "string"}, "type": "array"}, "architecture": {"type": "string"}, "image": {"type": "string"}, "tag": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "tagfilter": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["file"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "files": {"items": {"type": "string"}, "type": "array"}, "line": {"type": "integer"}, "content": {"type": "string"}, "forcecreate": {"type": "boolean"}, "matchpattern": {"type": "string"}, "replacepattern": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["gittag"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"path": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "message": {"type": "string"}, "key": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["gitea/release"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "tag": {"type": "string"}, "commitish": {"type": "string"}, "draft": {"type": "boolean"}, "prerelease": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["toml"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "files": {"items": {"type": "string"}, "type": "array"}, "query": {"type": "string"}, "key": {"type": "string"}, "value": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "createmissingkey": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["json"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "files": {"items": {"type": "string"}, "type": "array"}, "key": {"type": "string"}, "value": {"type": "string"}, "query": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["gitbranch"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"path": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "branch": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["githubrelease"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"owner": {"type": "string"}, "repository": {"type": "string"}, "token": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "typefilter": {"properties": {"draft": {"type": "boolean"}, "prerelease": {"type": "boolean"}, "release": {"type": "boolean"}, "latest": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "tag": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["owner", "repository", "token"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["helmchart"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "key": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "value": {"type": "string"}, "version": {"type": "string"}, "versionincrement": {"type": "string"}, "appversion": {"type": "boolean"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["gitea/tag"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "tag": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["gitlab/release"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "tag": {"type": "string"}, "commitish": {"type": "string"}, "draft": {"type": "boolean"}, "prerelease": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["golang/gomod"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "module": {"type": "string"}, "indirect": {"type": "boolean"}, "version": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["jenkins"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"release": {"type": "string"}, "version": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["aws/ami"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"accesskey": {"type": "string"}, "secretkey": {"type": "string"}, "filters": {"items": {"properties": {"name": {"type": "string"}, "values": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "region": {"type": "string"}, "endpoint": {"type": "string"}, "dryrun": {"type": "boolean"}, "sortby": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["csv"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "files": {"items": {"type": "string"}, "type": "array"}, "key": {"type": "string"}, "query": {"type": "string"}, "value": {"type": "string"}, "comma": {"type": "integer"}, "comment": {"type": "integer"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["gitea/branch"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "branch": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["cargopackage"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"registry": {"properties": {"auth": {"properties": {"token": {"type": "string"}, "headerformat": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "url": {"type": "string"}, "rootdir": {"type": "string"}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "package": {"type": "string"}, "version": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object", "required": ["package"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["gitlab/tag"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "tag": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["npm"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "url": {"type": "string"}, "registrytoken": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "npmrcpath": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["xml"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "path": {"type": "string"}, "value": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["gitlab/branch"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "branch": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["hcl"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "files": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "value": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"dependson": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "kind": {"enum": ["stash/branch"]}, "transformers": {"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "password": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "branch": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}, "sourceid": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "failwhen": {"type": "boolean"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}]}}, "type": "object"}
config.json
dependson
dependson specifies which resources must be executed before the current one
{"items": {"type": "string"}, "type": "array"}
config.json
name
name specifies the resource name
{"type": "string"}
config.json
transformers
transformers defines how the default input value need to be transformed
{"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
Transformer holds a transformer rule
{"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
addprefix
AddPrefix adds a prefix to the transformer input value
{"type": "string"}
config.json
addsuffix
AddSuffix adds a suffix to the transformer input value
{"type": "string"}
config.json
trimprefix
TrimPrefix removes a prefix to the transformer input value
{"type": "string"}
config.json
trimsuffix
TrimSuffix removes the suffix from the transformer input value
{"type": "string"}
config.json
replacers
Replacers specifies a list of replacer instruction
{"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}
config.json
items
Replacer is struct used to feed strings.Replacer
{"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}
config.json
from
From defines the source value which need to be replaced
{"type": "string"}
config.json
to
To defines the "to what" a "from" value needs to be replaced
{"type": "string"}
config.json
replacer
Replacer specifies what value needs to be changed and how
{"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}
config.json
from
From defines the source value which need to be replaced
{"type": "string"}
config.json
to
To defines the "to what" a "from" value needs to be replaced
{"type": "string"}
config.json
find
Find searches for a specific value if it exists and return false if it doesn't
{"type": "string"}
config.json
findsubmatch
Find searches for a specific value if it exists then return the value using regular expression
{"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}
config.json
pattern
Pattern defines regular expression to use for retrieving a submatch
{"type": "string"}
config.json
captureindex
CaptureIndex defines which substring occurrence to retrieve. Note also that a value of `0` for `captureIndex` returns all submatches, and individual submatch indexes start at `1`.
{"type": "integer"}
config.json
semverinc
SemvVerInc specifies a comma separated list semantic versioning component that needs to be upgraded.
{"type": "string"}
config.json
spec
Spec defines a specification for a "dockerfile" resource parsed from an updatecli manifest file
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"file": {"type": "string"}, "instruction": {}, "value": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
file
File specifies the dockerimage file such as Dockerfile
{"type": "string"}
config.json
instruction
Instruction specifies a DockerImage instruction such as ENV
{}
config.json
value
Value specifies the value for a specified Dockerfile instruction.
{"type": "string"}
config.json
scmid
scmid specifies the scm configuration key associated to the current resource
{"type": "string"}
config.json
dependson
dependson specifies which resources must be executed before the current one
{"items": {"type": "string"}, "type": "array"}
config.json
name
name specifies the resource name
{"type": "string"}
config.json
transformers
transformers defines how the default input value need to be transformed
{"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
Transformer holds a transformer rule
{"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
addprefix
AddPrefix adds a prefix to the transformer input value
{"type": "string"}
config.json
addsuffix
AddSuffix adds a suffix to the transformer input value
{"type": "string"}
config.json
trimprefix
TrimPrefix removes a prefix to the transformer input value
{"type": "string"}
config.json
trimsuffix
TrimSuffix removes the suffix from the transformer input value
{"type": "string"}
config.json
replacers
Replacers specifies a list of replacer instruction
{"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}
config.json
items
Replacer is struct used to feed strings.Replacer
{"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}
config.json
from
From defines the source value which need to be replaced
{"type": "string"}
config.json
to
To defines the "to what" a "from" value needs to be replaced
{"type": "string"}
config.json
replacer
Replacer specifies what value needs to be changed and how
{"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}
config.json
from
From defines the source value which need to be replaced
{"type": "string"}
config.json
to
To defines the "to what" a "from" value needs to be replaced
{"type": "string"}
config.json
find
Find searches for a specific value if it exists and return false if it doesn't
{"type": "string"}
config.json
findsubmatch
Find searches for a specific value if it exists then return the value using regular expression
{"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}
config.json
pattern
Pattern defines regular expression to use for retrieving a submatch
{"type": "string"}
config.json
captureindex
CaptureIndex defines which substring occurrence to retrieve. Note also that a value of `0` for `captureIndex` returns all submatches, and individual submatch indexes start at `1`.
{"type": "integer"}
config.json
semverinc
SemvVerInc specifies a comma separated list semantic versioning component that needs to be upgraded.
{"type": "string"}
config.json
spec
Spec defines a specification for a "maven" resource parsed from an updatecli manifest file
{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "repository": {"type": "string"}, "repositories": {"items": {"type": "string"}, "type": "array"}, "groupid": {"type": "string"}, "artifactid": {"type": "string"}, "version": {"type": "string"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}
config.json
url
Deprecated, please specify the Maven url in the repository
{"type": "string"}
config.json
repository
Specifies the maven repository url + name
{"type": "string"}
config.json
repositories
Repositories specifies a list of Maven repository where to look for version. Order matter, version is retrieve from the first repository with the last one being Maven Central.
{"items": {"type": "string"}, "type": "array"}
config.json
groupid
Specifies the maven artifact groupID
{"type": "string"}
config.json
artifactid
Specifies the maven artifact artifactID
{"type": "string"}
config.json
version
Specifies the maven artifact version
{"type": "string"}
config.json
versionfilter
[S] VersionFilter provides parameters to specify version pattern and its type like regex, semver, or just latest.
{"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}
config.json
kind
specifies the version kind such as semver, regex, or latest
{"type": "string"}
config.json
pattern
specifies the version pattern according the version kind
{"type": "string"}
config.json
strict
strict enforce strict versioning rule. Only used for semantic versioning at this time
{"type": "boolean"}
config.json
scmid
scmid specifies the scm configuration key associated to the current resource
{"type": "string"}
config.json
dependson
dependson specifies which resources must be executed before the current one
{"items": {"type": "string"}, "type": "array"}
config.json
name
name specifies the resource name
{"type": "string"}
config.json
transformers
transformers defines how the default input value need to be transformed
{"items": {"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}
config.json
items
Transformer holds a transformer rule
{"properties": {"addprefix": {"type": "string"}, "addsuffix": {"type": "string"}, "trimprefix": {"type": "string"}, "trimsuffix": {"type": "string"}, "replacers": {"items": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "type": "array"}, "replacer": {"properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["from", "to"]}, "find": {"type": "string"}, "findsubmatch": {"properties": {"pattern": {"type": "string"}, "captureindex": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["pattern"]}, "semverinc": {"type": "string"}}, "additionalProperties": false, "type": "object"}
config.json
addprefix
AddPrefix adds a prefix to the transformer input value
{"type": "string"}
config.json
addsuffix
AddSuffix adds a suffix to the transformer input value
{"type": "string"}
config.json
trimprefix
TrimPrefix removes a prefix to the transformer input value
{"type": "string"}
config.json
trimsuffix
TrimSuffix removes the suffix from the transformer input value
{"type": "string"}