schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
saucectl.schema.json | simulators | Defines details for running this suite on virtual devices using a simulator. | {"type": "array", "items": {"properties": {"name": {"type": "string"}, "orientation": {}, "platformVersions": {"type": "array", "minItems": 1}}, "required": ["name", "platformVersions"], "additionalProperties": false}} |
saucectl.schema.json | name | The name of the simulator. To ensure name accuracy, check the list of supported virtual devices (https://app.saucelabs.com/live/web-testing/virtual). | {"type": "string"} |
saucectl.schema.json | platformVersions | The set of one or more versions of the device platform on which to run the test suite. | {"type": "array", "minItems": 1} |
saucectl.schema.json | devices | Define details for running this suite on real devices. | {"type": "array", "items": {"properties": {"id": {"type": "string", "examples": ["iPhone_12_Pro_14_real", "iPhone_12_Pro_real_us"]}, "name": {"type": "string", "examples": ["iPad .*", "iPhone .*"]}, "platformVersion": {"type": "string"}, "options": {"type": "object", "properties": {"carrierConnectivity": {"type": "boolean"}, "deviceType": {"enum": ["ANY", "PHONE", "TABLET"]}, "private": {"type": "boolean"}}, "additionalProperties": false}}, "oneOf": [{"required": ["id"]}, {"required": ["name"]}], "additionalProperties": false}} |
saucectl.schema.json | id | Request a specific device for this test suite by its ID. You can look up device IDs in the Sauce Labs app or using our Devices API (https://docs.saucelabs.com/dev/api/rdc#get-devices). | {"type": "string", "examples": ["iPhone_12_Pro_14_real", "iPhone_12_Pro_real_us"]} |
saucectl.schema.json | name | Match the device name in full or partially (regex), which may provide a larger pool of available devices of the type you want. | {"type": "string", "examples": ["iPad .*", "iPhone .*"]} |
saucectl.schema.json | platformVersion | The version of the iOS operating system. | {"type": "string"} |
saucectl.schema.json | options | Further specify desired device attributes within the pool of devices that match the name and version criteria. | {"type": "object", "properties": {"carrierConnectivity": {"type": "boolean"}, "deviceType": {"enum": ["ANY", "PHONE", "TABLET"]}, "private": {"type": "boolean"}}, "additionalProperties": false} |
saucectl.schema.json | carrierConnectivity | Limit the device selection to those that are connected to a cellular network. | {"type": "boolean"} |
saucectl.schema.json | deviceType | Limit the device selection to a specific type of device. | {"enum": ["ANY", "PHONE", "TABLET"]} |
saucectl.schema.json | private | Limit the device selection to only match from your organization's private pool. | {"type": "boolean"} |
saucectl.schema.json | shard | When shard is configured as concurrency, saucectl automatically splits the tests by concurrency so that they can easily run in parallel. | {"enum": ["", "concurrency"]} |
saucectl.schema.json | testListFile | This file containing tests will be used in sharding by concurrency. | {"type": "string"} |
saucectl.schema.json | then | Configuration file for api testing using saucectl | {"$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "allOf": [{}], "properties": {"apiVersion": {"const": "v1alpha"}, "kind": {"const": "apitest"}, "suites": {"type": "array", "minItems": 1, "items": {"type": "object", "properties": {"name": {"type": "string"}, "projectName": {"type": "string"}, "testMatch": {"type": "array"}, "tests": {"type": "array"}, "tags": {"type": "array"}, "useRemoteTests": {"type": "boolean"}}, "required": ["projectName", "name"], "additionalProperties": false}}}, "required": ["apiVersion", "kind", "suites"], "additionalProperties": true} |
saucectl.schema.json | suites | The set of properties providing details about the test suites to run. | {"type": "array", "minItems": 1, "items": {"type": "object", "properties": {"name": {"type": "string"}, "projectName": {"type": "string"}, "testMatch": {"type": "array"}, "tests": {"type": "array"}, "tags": {"type": "array"}, "useRemoteTests": {"type": "boolean"}}, "required": ["projectName", "name"], "additionalProperties": false}} |
saucectl.schema.json | name | The name of the test suite, which will be reflected in the test results in Sauce Labs. | {"type": "string"} |
saucectl.schema.json | projectName | Your project's name. | {"type": "string"} |
saucectl.schema.json | testMatch | {"type": "array"} |
|
saucectl.schema.json | tests | A list of test IDs to run for the project defined by hookId. | {"type": "array"} |
saucectl.schema.json | tags | A test tag to run for the project defined by hookId. | {"type": "array"} |
saucectl.schema.json | useRemoteTests | Use tests stored in the cloud instead of the local ones. | {"type": "boolean"} |
saucectl.schema.json | then | Configuration file for cucumber using saucectl | {"$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "allOf": [{}, {}, {}, {}], "properties": {"apiVersion": {"const": "v1alpha"}, "kind": {"const": "playwright-cucumberjs"}, "showConsoleLog": {}, "defaults": {"type": "object", "properties": {"timeout": {}}, "additionalProperties": false}, "rootDir": {}, "playwright": {"type": "object", "properties": {"version": {}}, "required": ["version"], "additionalProperties": false}, "env": {}, "suites": {"type": "array", "minItems": 1, "items": {"type": "object", "properties": {"name": {"type": "string"}, "browserName": {}, "browserVersion": {}, "platformName": {"enum": ["macOS 11.00", "macOS 12", "macOS 13", "Windows 10", "Windows 11"]}, "screenResolution": {}, "env": {}, "options": {"type": "object", "properties": {"config": {"type": "string"}, "name": {"type": "string"}, "paths": {"type": "array"}, "excludedTestFiles": {}, "backtrace": {"type": "boolean"}, "require": {"type": "array"}, "import": {"type": "array"}, "tags": {"type": "array"}, "format": {"type": "array"}, "formatOptions": {"type": "array"}, "parallel": {"type": "integer"}}, "required": ["paths"]}, "shard": {"enum": ["", "concurrency", "spec"]}, "timeout": {}, "preExec": {}, "timeZone": {}, "passThreshold": {}, "smartRetry": {}}, "required": ["name"], "additionalProperties": false}}}, "required": ["apiVersion", "kind", "playwright", "suites"], "additionalProperties": true} |
saucectl.schema.json | defaults | Settings that are applied onto every suite by default, if no value is set on a suite explicitly. | {"type": "object", "properties": {"timeout": {}}, "additionalProperties": false} |
saucectl.schema.json | playwright | Contains details specific to the playwright. | {"type": "object", "properties": {"version": {}}, "required": ["version"], "additionalProperties": false} |
saucectl.schema.json | version | Which framework version to use. | {} |
saucectl.schema.json | suites | The set of properties providing details about the test suites to run. | {"type": "array", "minItems": 1, "items": {"type": "object", "properties": {"name": {"type": "string"}, "browserName": {}, "browserVersion": {}, "platformName": {"enum": ["macOS 11.00", "macOS 12", "macOS 13", "Windows 10", "Windows 11"]}, "screenResolution": {}, "env": {}, "options": {"type": "object", "properties": {"config": {"type": "string"}, "name": {"type": "string"}, "paths": {"type": "array"}, "excludedTestFiles": {}, "backtrace": {"type": "boolean"}, "require": {"type": "array"}, "import": {"type": "array"}, "tags": {"type": "array"}, "format": {"type": "array"}, "formatOptions": {"type": "array"}, "parallel": {"type": "integer"}}, "required": ["paths"]}, "shard": {"enum": ["", "concurrency", "spec"]}, "timeout": {}, "preExec": {}, "timeZone": {}, "passThreshold": {}, "smartRetry": {}}, "required": ["name"], "additionalProperties": false}} |
saucectl.schema.json | name | The name of the test suite, which will be reflected in the test results in Sauce Labs. | {"type": "string"} |
saucectl.schema.json | browserName | The name of the browser in which to run the tests. | {} |
saucectl.schema.json | options | Provides details related to the Cucumberjs test configuration. | {"type": "object", "properties": {"config": {"type": "string"}, "name": {"type": "string"}, "paths": {"type": "array"}, "excludedTestFiles": {}, "backtrace": {"type": "boolean"}, "require": {"type": "array"}, "import": {"type": "array"}, "tags": {"type": "array"}, "format": {"type": "array"}, "formatOptions": {"type": "array"}, "parallel": {"type": "integer"}}, "required": ["paths"]} |
saucectl.schema.json | config | Provides the location of the configuration file. | {"type": "string"} |
saucectl.schema.json | name | Regular expressions of which cucumber scenario names should match one of to be run. | {"type": "string"} |
saucectl.schema.json | paths | Paths to where your feature files are. | {"type": "array"} |
saucectl.schema.json | backtrace | Show the full backtrace for errors. | {"type": "boolean"} |
saucectl.schema.json | require | Paths to where your support code is, for CommonJS. | {"type": "array"} |
saucectl.schema.json | import | Paths to where your support code is, for ESM. | {"type": "array"} |
saucectl.schema.json | tags | Tag expression to filter which scenarios should be run. | {"type": "array"} |
saucectl.schema.json | format | Name/path and (optionally) output file path of each formatter to use. | {"type": "array"} |
saucectl.schema.json | formatOptions | Options to be provided to cucumber formatters. | {"type": "array"} |
saucectl.schema.json | parallel | Run tests in parallel with the given number of worker processes. | {"type": "integer"} |
saucectl.schema.json | shard | When sharding is configured, saucectl automatically splits the tests (e.g. by spec or concurrency) so that they can easily run in parallel. | {"enum": ["", "concurrency", "spec"]} |
saucectl.schema.json | then | Configuration file for running container images using saucectl | {"$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "allOf": [{}], "definitions": {"sauce": {"type": "object", "properties": {"region": {"enum": ["us-west-1", "eu-central-1"]}, "tunnel": {"properties": {"name": {"type": "string"}, "owner": {"type": "string"}}, "required": ["name"], "additionalProperties": false}}}, "suite": {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "imagePullAuth": {"type": "object", "properties": {"user": {"type": "string"}, "token": {"type": "string"}}}, "entrypoint": {"type": "string"}, "files": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dst": {"type": "string"}}}}, "artifacts": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object"}, "timeout": {"type": "string", "pattern": "^(?:\\d+h)?(?:\\d+m)?(?:\\d+s)?(?:\\d+ms)?$", "examples": ["1h", "10m", "90s"]}, "workload": {"enum": ["webdriver", "other"]}, "resourceProfile": {"pattern": "^c(\\d+)m(\\d+)$", "examples": ["c1m1", "c2m2", "c3m3"]}, "metadata": {"type": "object"}}, "required": ["name", "workload"]}}, "properties": {"apiVersion": {"const": "v1alpha"}, "kind": {"const": "imagerunner"}, "sauce": {}, "defaults": {}, "suites": {"type": "array", "minItems": 1, "items": {}}}, "required": ["apiVersion", "kind", "suites"], "additionalProperties": true} |
saucectl.schema.json | sauce | All settings related to how tests are run and identified in the Sauce Labs platform. | {"type": "object", "properties": {"region": {"enum": ["us-west-1", "eu-central-1"]}, "tunnel": {"properties": {"name": {"type": "string"}, "owner": {"type": "string"}}, "required": ["name"], "additionalProperties": false}}} |
saucectl.schema.json | region | Which Sauce Labs data center to target. | {"enum": ["us-west-1", "eu-central-1"]} |
saucectl.schema.json | tunnel | SauceCTL supports using Sauce Connect to establish a secure connection when running your tests on Sauce Labs. To do so, launch a tunnel; then provide the identifier in this property. | {"properties": {"name": {"type": "string"}, "owner": {"type": "string"}}, "required": ["name"], "additionalProperties": false} |
saucectl.schema.json | name | The tunnel name. | {"type": "string"} |
saucectl.schema.json | owner | The owner (username) of the tunnel. Must be specified if the user that created the tunnel differs from the user that is running the tests. | {"type": "string"} |
saucectl.schema.json | suite | The set of properties providing details about how to run the container. | {"type": "object", "properties": {"name": {"type": "string"}, "image": {"type": "string"}, "imagePullAuth": {"type": "object", "properties": {"user": {"type": "string"}, "token": {"type": "string"}}}, "entrypoint": {"type": "string"}, "files": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dst": {"type": "string"}}}}, "artifacts": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object"}, "timeout": {"type": "string", "pattern": "^(?:\\d+h)?(?:\\d+m)?(?:\\d+s)?(?:\\d+ms)?$", "examples": ["1h", "10m", "90s"]}, "workload": {"enum": ["webdriver", "other"]}, "resourceProfile": {"pattern": "^c(\\d+)m(\\d+)$", "examples": ["c1m1", "c2m2", "c3m3"]}, "metadata": {"type": "object"}}, "required": ["name", "workload"]} |
saucectl.schema.json | name | The name of the test suite. | {"type": "string"} |
saucectl.schema.json | image | The name of the container image. | {"type": "string"} |
saucectl.schema.json | imagePullAuth | Container registry credentials for accessing the image. | {"type": "object", "properties": {"user": {"type": "string"}, "token": {"type": "string"}}} |
saucectl.schema.json | user | The username. | {"type": "string"} |
saucectl.schema.json | token | The access token. | {"type": "string"} |
saucectl.schema.json | entrypoint | The command line arguments to launch the image with. | {"type": "string"} |
saucectl.schema.json | files | List of files that you'd like saucectl to upload and mount within the container. | {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "dst": {"type": "string"}}}} |
saucectl.schema.json | src | Path to the local file. | {"type": "string"} |
saucectl.schema.json | dst | Path within the container that the file should be mounted at. | {"type": "string"} |
saucectl.schema.json | artifacts | List of file paths within the container to be made available as downloadable artifacts. | {"type": "array", "items": {"type": "string"}} |
saucectl.schema.json | env | Set one or more environment variables. | {"type": "object"} |
saucectl.schema.json | timeout | Instructs how long (in ms, s, m, or h) saucectl should wait for a suite to complete. | {"type": "string", "pattern": "^(?:\\d+h)?(?:\\d+m)?(?:\\d+s)?(?:\\d+ms)?$", "examples": ["1h", "10m", "90s"]} |
saucectl.schema.json | workload | Sets the kind of workload that is being executed | {"enum": ["webdriver", "other"]} |
saucectl.schema.json | resourceProfile | Sets the CPU/memory limits of the container. Format is <CPU><level><mem><level>. Default to c1m1. | {"pattern": "^c(\\d+)m(\\d+)$", "examples": ["c1m1", "c2m2", "c3m3"]} |
saucectl.schema.json | metadata | Supply additional metadata to your runner. | {"type": "object"} |
saucectl.schema.json | defaults | Settings that are applied onto every suite as a default value. | {} |
saucectl.schema.json | suites | List of suites | {"type": "array", "minItems": 1, "items": {}} |
config.json | Spec contains pipeline configuration | {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"name": {"type": "string"}, "pipelineid": {"type": "string"}, "autodiscovery": {"properties": {"crawlers": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"golang/gomod": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "helm": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "ignorecontainer": {"type": "boolean"}, "ignorechartdependency": {"type": "boolean"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "rootdir": {"type": "string"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "versionincrement": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "helmfile": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "cargo": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "registries": {"patternProperties": {".*": {"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"}}, "type": "object"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "dockercompose": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "filematch": {"items": {"type": "string"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "dockerfile": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "filematch": {"items": {"type": "string"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "maven": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "npm": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "rancher/fleet": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "scmid": {"type": "string"}, "actionid": {"type": "string"}, "groupby": {"type": "string"}, "pullrequestid": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "actions": {"patternProperties": {".*": {"oneOf": [{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["github/pullrequest"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"automerge": {"type": "boolean"}, "labels": {"items": {"type": "string"}, "type": "array"}, "draft": {"type": "boolean"}, "maintainercannotmodify": {"type": "boolean"}, "mergemethod": {"type": "string"}, "usetitleforautomerge": {"type": "boolean"}, "parent": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["gitea/pullrequest"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "sourcebranch": {"type": "string"}, "targetbranch": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "body": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["stash/pullrequest"]}, "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"}, "sourcebranch": {"type": "string"}, "targetbranch": {"type": "string"}, "body": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["gitlab/mergerequest"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "sourcebranch": {"type": "string"}, "targetbranch": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "body": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "scmid": {"type": "string"}}, "additionalProperties": false, "type": "object"}]}}, "type": "object"}, "scms": {"patternProperties": {".*": {"oneOf": [{"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["stash"]}, "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"}, "commitmessage": {"properties": {"type": {"type": "string"}, "scope": {"type": "string"}, "footers": {"type": "string"}, "body": {"type": "string"}, "hidecredit": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "directory": {"type": "string"}, "email": {"type": "string"}, "force": {"type": "boolean"}, "gpg": {"properties": {"signingkey": {"type": "string"}, "passphrase": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "user": {"type": "string"}, "branch": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "disabled": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["git"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "branch": {"type": "string"}, "user": {"type": "string"}, "email": {"type": "string"}, "directory": {"type": "string"}, "force": {"type": "boolean"}, "commitmessage": {"properties": {"type": {"type": "string"}, "scope": {"type": "string"}, "footers": {"type": "string"}, "body": {"type": "string"}, "hidecredit": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "gpg": {"properties": {"signingkey": {"type": "string"}, "passphrase": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object", "required": ["url"]}, "disabled": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["gitea"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "commitmessage": {"properties": {"type": {"type": "string"}, "scope": {"type": "string"}, "footers": {"type": "string"}, "body": {"type": "string"}, "hidecredit": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "directory": {"type": "string"}, "email": {"type": "string"}, "force": {"type": "boolean"}, "gpg": {"properties": {"signingkey": {"type": "string"}, "passphrase": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "user": {"type": "string"}, "branch": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "disabled": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["github"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"branch": {"type": "string"}, "directory": {"type": "string"}, "email": {"type": "string"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "token": {"type": "string"}, "url": {"type": "string"}, "username": {"type": "string"}, "user": {"type": "string"}, "gpg": {"properties": {"signingkey": {"type": "string"}, "passphrase": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "force": {"type": "boolean"}, "commitmessage": {"properties": {"type": {"type": "string"}, "scope": {"type": "string"}, "footers": {"type": "string"}, "body": {"type": "string"}, "hidecredit": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object", "required": ["owner", "repository", "token"]}, "disabled": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"kind": {"enum": ["gitlab"]}, "spec": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"url": {"type": "string"}, "username": {"type": "string"}, "token": {"type": "string"}, "commitmessage": {"properties": {"type": {"type": "string"}, "scope": {"type": "string"}, "footers": {"type": "string"}, "body": {"type": "string"}, "hidecredit": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "directory": {"type": "string"}, "email": {"type": "string"}, "force": {"type": "boolean"}, "gpg": {"properties": {"signingkey": {"type": "string"}, "passphrase": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "owner": {"type": "string"}, "repository": {"type": "string"}, "user": {"type": "string"}, "branch": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["url", "owner", "repository"]}, "disabled": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}]}}, "type": "object"}, "sources": {"patternProperties": {".*": {"oneOf": [{"$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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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": ["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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "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"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}]}}, "type": "object"}, "conditions": {"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"}, "targets": {"patternProperties": {".*": {"oneOf": [{"$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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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": ["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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "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"}, "reporttitle": {"type": "string"}, "reportbody": {"type": "string"}, "disablesourceinput": {"type": "boolean"}, "sourceid": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["kind"]}]}}, "type": "object"}, "version": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["name"]} |
|
config.json | name | Name defines a pipeline name | {"type": "string"} |
config.json | pipelineid | PipelineID allows to identify a full pipeline run, this value is propagated into each target if not defined at that level | {"type": "string"} |
config.json | autodiscovery | AutoDiscovery defines parameters to the autodiscovery feature | {"properties": {"crawlers": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"golang/gomod": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "helm": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "ignorecontainer": {"type": "boolean"}, "ignorechartdependency": {"type": "boolean"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "rootdir": {"type": "string"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "versionincrement": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "helmfile": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "cargo": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "registries": {"patternProperties": {".*": {"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"}}, "type": "object"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "dockercompose": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "filematch": {"items": {"type": "string"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "dockerfile": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "filematch": {"items": {"type": "string"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "maven": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "npm": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "rancher/fleet": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "scmid": {"type": "string"}, "actionid": {"type": "string"}, "groupby": {"type": "string"}, "pullrequestid": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
config.json | crawlers | Crawlers defines a map of crawler configuration where the key represent the crawler type | {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"golang/gomod": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "helm": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "ignorecontainer": {"type": "boolean"}, "ignorechartdependency": {"type": "boolean"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "rootdir": {"type": "string"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "versionincrement": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "helmfile": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "cargo": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "registries": {"patternProperties": {".*": {"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"}}, "type": "object"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "dockercompose": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "services": {"items": {"type": "string"}, "type": "array"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "filematch": {"items": {"type": "string"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "dockerfile": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"archs": {"items": {"type": "string"}, "type": "array"}, "path": {"type": "string"}, "images": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "filematch": {"items": {"type": "string"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "maven": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "npm": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}, "rancher/fleet": {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"}}, "type": "object"} |
config.json | golang/gomod | Spec defines the parameters which can be provided to the Golang autodiscovery builder. | {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"rootdir": {"type": "string"}, "ignore": {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "only": {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}}, "additionalProperties": false, "type": "object"} |
config.json | rootdir | rootDir defines the root directory used to recursively search for golang go.mod | {"type": "string"} |
config.json | ignore | ignore allows to specify "rule" to ignore autodiscovery a specific go.mod rule | {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"} |
config.json | items | MatchingRule allows to specifies rules to identify manifest | {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
config.json | path | Path specifies a go.mod path pattern, the pattern requires to match all of name, not just a substring. | {"type": "string"} |
config.json | modules | Modules specifies a list of module pattern. | {"patternProperties": {".*": {"type": "string"}}, "type": "object"} |
config.json | goversion | GoVersions specifies a list of version pattern. | {"type": "string"} |
config.json | only | `only` allows to specify rule to "only" autodiscover manifest for a specific golang rule | {"items": {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"} |
config.json | items | MatchingRule allows to specifies rules to identify manifest | {"properties": {"path": {"type": "string"}, "modules": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "goversion": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
config.json | path | Path specifies a go.mod path pattern, the pattern requires to match all of name, not just a substring. | {"type": "string"} |
config.json | modules | Modules specifies a list of module pattern. | {"patternProperties": {".*": {"type": "string"}}, "type": "object"} |
config.json | goversion | GoVersions specifies a list of version pattern. | {"type": "string"} |
config.json | versionfilter | `versionfilter` provides parameters to specify the version pattern to use when generating manifest.
kind - semver
versionfilter of kind `semver` uses semantic versioning as version filtering
pattern accepts one of:
`patch` - patch only update patch version
`minor` - minor only update minor version
`major` - major only update major versions
`a version constraint` such as `>= 1.0.0`
kind - regex
versionfilter of kind `regex` uses regular expression as version filtering
pattern accepts a valid regular expression
example:
```
versionfilter:
kind: semver
pattern: minor
```
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 | helm | Spec defines the Helm parameters. | {"$schema": "http://json-schema.org/draft-04/schema", "properties": {"auths": {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"}, "ignorecontainer": {"type": "boolean"}, "ignorechartdependency": {"type": "boolean"}, "ignore": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "rootdir": {"type": "string"}, "only": {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"}, "versionfilter": {"properties": {"kind": {"type": "string"}, "pattern": {"type": "string"}, "strict": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "versionincrement": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
config.json | auths | auths provides a map of registry credentials where the key is the registry URL without scheme
if empty, updatecli relies on OCI credentials such as the one used by Docker. | {"patternProperties": {".*": {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "type": "object"} |
config.json | .* | InlineKeyChain defines a keychain with OCI registry credentials | {"properties": {"username": {"type": "string"}, "password": {"type": "string"}, "token": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
config.json | username | username specifies the container registry username to use for authentication.
compatible:
* source
* condition
* target
default:
by default credentials are fetch from the local environment such as `~/.docker/config.json`.
remark:
Not compatible with token | {"type": "string"} |
config.json | password | password specifies the container registry password to use for authentication. Not compatible with token
compatible:
* source
* condition
* target
default:
by default credentials are fetch from the local environment such as `~/.docker/config.json`.
remark:
Not compatible with token | {"type": "string"} |
config.json | token | token specifies the container registry token to use for authentication.
compatible:
* source
* condition
* target
default:
by default credentials are fetch from the local environment such as `~/.docker/config.json`.
remark:
Not compatible with username/password | {"type": "string"} |
config.json | ignorecontainer | ignorecontainer disables OCI container tag update when set to true | {"type": "boolean"} |
config.json | ignorechartdependency | ignorechartdependency disables Helm chart dependencies update when set to true | {"type": "boolean"} |
config.json | ignore | Ignore specifies rule to ignore Helm chart update. | {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"} |
config.json | items | MatchingRule allows to specifies rules to identify manifest | {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
config.json | path | Path specifies a Helm chart path pattern, the pattern requires to match all of name, not just a subpart of the path. | {"type": "string"} |
config.json | rootdir | rootdir defines the root directory used to recursively search for Helm Chart | {"type": "string"} |
config.json | only | only specify required rule(s) to restrict Helm chart update. | {"items": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "type": "array"} |
config.json | items | MatchingRule allows to specifies rules to identify manifest | {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"} |
config.json | path | Path specifies a Helm chart path pattern, the pattern requires to match all of name, not just a subpart of the path. | {"type": "string"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.