diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c92d6b121..e92edc701 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -10,6 +10,8 @@ Unreleased .. vendor-insert-here +- Update vendored schemas: compose-spec, meltano, renovate (2025-07-06) + 0.33.2 ------ diff --git a/src/check_jsonschema/builtin_schemas/vendor/compose-spec.json b/src/check_jsonschema/builtin_schemas/vendor/compose-spec.json index 9aed30391..9aeb151c4 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/compose-spec.json +++ b/src/check_jsonschema/builtin_schemas/vendor/compose-spec.json @@ -36,6 +36,17 @@ "description": "The services that will be used by your application." }, + "models": { + "type": "object", + "patternProperties": { + "^[a-zA-Z0-9._-]+$": { + "$ref": "#/definitions/model" + } + }, + "description": "Language models that will be used by your application." + }, + + "networks": { "type": "object", "patternProperties": { @@ -392,6 +403,7 @@ "provider": { "type": "object", "description": "Specify a service which will not be manage by Compose directly, and delegate its management to an external provider.", + "required": ["type"], "properties": { "type": { "type": "string", @@ -401,7 +413,10 @@ "type": "object", "description": "Provider-specific options.", "patternProperties": { - "^.+$": {"type": ["string", "number", "null"]} + "^.+$": {"oneOf": [ + { "type": ["string", "number", "boolean"] }, + { "type": "array", "items": {"type": ["string", "number", "boolean"]}} + ]} } } }, @@ -507,6 +522,27 @@ "type": "string", "description": "Network mode. Values can be 'bridge', 'host', 'none', 'service:[service name]', or 'container:[container name]'." }, + "models": { + "oneOf": [ + {"$ref": "#/definitions/list_of_strings"}, + {"type": "object", + "patternProperties": { + "^[a-zA-Z0-9._-]+$": { + "type": "object", + "properties": { + "endpoint_var": { + "type": "string", + "description": "Environment variable set to AI model endpoint." + } + }, + "additionalProperties": false, + "patternProperties": {"^x-": {}} + } + } + } + ], + "description": "AI Models to use, referencing entries under the top-level models key." + }, "networks": { "oneOf": [ {"$ref": "#/definitions/list_of_strings"}, @@ -728,6 +764,10 @@ "$ref": "#/definitions/ulimits", "description": "Override the default ulimits for a container." }, + "use_api_socket": { + "type": "boolean", + "description": "Bind mount Docker API socket and required auth." + }, "user": { "type": "string", "description": "Username or UID to run the container process as." @@ -1522,6 +1562,32 @@ "patternProperties": {"^x-": {}} }, + "model": { + "type": "object", + "description": "Language Model for the Compose application.", + "properties": { + "name": { + "type": "string", + "description": "Custom name for this model." + }, + "model": { + "type": "string", + "description": "Language Model to run." + }, + "context_size": { + "type": "integer" + }, + "runtime_flags": { + "type": "array", + "items": {"type": "string"}, + "description": "Raw runtime flags to pass to the inference engine." + } + }, + "required": ["model"], + "additionalProperties": false, + "patternProperties": {"^x-": {}} + }, + "command": { "oneOf": [ { diff --git a/src/check_jsonschema/builtin_schemas/vendor/meltano.json b/src/check_jsonschema/builtin_schemas/vendor/meltano.json index 96ec5305e..e4cb862fe 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/meltano.json +++ b/src/check_jsonschema/builtin_schemas/vendor/meltano.json @@ -32,11 +32,12 @@ }, "python": { "type": "string", - "description": "The python version to use for plugins, specified as a path, or as the name of an executable to find within a directory in $PATH. If not specified, the python executable that was used to run Meltano will be used (within a separate virtual environment). This can be overridden on a per-plugin basis by setting the `python` property for the plugin.", + "description": "The python version to use for plugins, specified as a path, as the name of an executable to find within a directory in $PATH, or as a version number (e.g. '3.11'). If not specified, the python executable that was used to run Meltano will be used (within a separate virtual environment). This can be overridden on a per-plugin basis by setting the `python` property for the plugin.", "examples": [ "/usr/bin/python3.10", "python", - "python3.11" + "python3.11", + "3.11" ] }, "state_backend": { @@ -404,11 +405,12 @@ }, "python": { "type": "string", - "description": "The python version to use for this plugin, specified as a path, or as the name of an executable to find within a directory in $PATH. If not specified, the top-level `python` setting will be used, or if it is not set, the python executable that was used to run Meltano will be used (within a separate virtual environment).", + "description": "The python version to use for this plugin, specified as a path, as the name of an executable to find within a directory in $PATH, or as a version number (e.g. '3.11'). If not specified, the top-level `python` setting will be used, or if it is not set, the python executable that was used to run Meltano will be used (within a separate virtual environment).", "examples": [ "/usr/bin/python3.10", "python", - "python3.11" + "python3.11", + "3.11" ] }, "executable": { @@ -518,19 +520,7 @@ } }, "env": { - "type": "object", - "description": "Mapping to environment variable to set inside the container. These take precedence over Meltano own runtime environment variables.", - "propertyNames": { - "type": "string" - }, - "additionalProperties": { - "type": "string" - }, - "examples": [ - { - "DBT_PROFILES_DIR": "/usr/app/profile/" - } - ] + "$ref": "#/$defs/env" } } } @@ -874,7 +864,7 @@ }, "env": { "type": "string", - "description": "An alternative environment variable name to populate with this settings value in the plugin environment.", + "description": "An alternative environment variable name to populate with this settings value in the plugin environment. Meltano takes the value of the setting and injects it into the plugin's runtime environment as this environment variable, in addition to the default environment variable (of the form `_`, etc.).", "examples": [ "GITLAB_API_TOKEN", "FACEBOOK_ADS_ACCESS_TOKEN" @@ -1231,6 +1221,7 @@ }, "examples": [ { + "DBT_PROFILES_DIR": "/usr/app/profile/", "SNOWFLAKE_ACCOUNT": "my.snowflake.account.com" } ] diff --git a/src/check_jsonschema/builtin_schemas/vendor/renovate.json b/src/check_jsonschema/builtin_schemas/vendor/renovate.json index 4c1bb9fe7..41148a8e5 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/renovate.json +++ b/src/check_jsonschema/builtin_schemas/vendor/renovate.json @@ -100,6 +100,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -148,6 +153,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -194,6 +204,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -242,6 +257,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -460,6 +480,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -524,6 +549,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -573,6 +603,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -623,6 +658,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -671,6 +711,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -721,6 +766,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -784,6 +834,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -843,6 +898,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -891,6 +951,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -975,6 +1040,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1025,6 +1095,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1143,6 +1218,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1192,6 +1272,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1241,6 +1326,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1309,6 +1399,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1359,6 +1454,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1406,6 +1506,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1462,6 +1567,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1525,6 +1635,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1574,6 +1689,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1669,6 +1789,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1728,6 +1853,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1813,6 +1943,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1861,6 +1996,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -1907,6 +2047,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2206,6 +2351,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2278,6 +2428,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2327,6 +2482,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2354,7 +2514,36 @@ "commitMessageExtra": "to {{newDigestShort}}", "commitMessageTopic": "{{{depName}}} digest" }, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "docker-compose": { "description": "Configuration object for the docker-compose manager", @@ -2385,6 +2574,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2457,6 +2651,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2510,6 +2709,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2543,7 +2747,7 @@ "default": null }, "enabled": { - "description": "Enable or disable Renovate bot.", + "description": "Enable or disable corresponding functionality.", "type": "boolean", "default": true }, @@ -2667,6 +2871,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2715,6 +2924,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2807,6 +3021,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2857,6 +3076,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -2967,6 +3191,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3020,6 +3249,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3068,6 +3302,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3114,6 +3353,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3163,6 +3407,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3229,6 +3478,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3285,6 +3539,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3334,6 +3593,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3416,6 +3680,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3468,6 +3737,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3518,6 +3792,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3570,6 +3849,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3616,6 +3900,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3668,6 +3957,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3720,6 +4014,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3769,6 +4068,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -3860,6 +4164,11 @@ "type": "boolean", "default": false }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "headers": { "description": "Put fields to be forwarded to the HTTP request headers in the headers config option.", "type": "object", @@ -3964,6 +4273,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4134,6 +4448,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4191,6 +4510,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4243,6 +4567,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4289,6 +4618,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4338,6 +4672,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4394,6 +4733,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4432,7 +4776,36 @@ "Change": "All locks refreshed" } }, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "logContext": { "description": "Add a global or per-repo log context to each log entry.", @@ -4490,7 +4863,36 @@ "description": "Configuration to apply when an update type is `major`.", "type": "object", "default": {}, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "maven": { "description": "Configuration object for the maven manager", @@ -4523,6 +4925,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4572,6 +4979,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4650,6 +5062,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4698,7 +5115,36 @@ "description": "Configuration to apply when an update type is `minor`.", "type": "object", "default": {}, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "mint": { "description": "Configuration object for the mint manager", @@ -4729,6 +5175,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4778,6 +5229,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4826,6 +5282,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4886,6 +5347,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4935,6 +5401,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -4992,6 +5463,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5056,6 +5532,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5106,6 +5587,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5152,6 +5638,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5255,6 +5746,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5310,6 +5806,11 @@ "description": "Set a custom URL for the changelog. Renovate will put this URL in the PR body text.", "type": "string" }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "matchBaseBranches": { "description": "List of strings containing exact matches (e.g. `[\"main\"]`) and/or regex expressions (e.g. `[\"/^release/.*/\"]`). Valid only within a `packageRules` object.", "oneOf": [ @@ -5585,7 +6086,36 @@ "description": "Configuration to apply when an update type is `patch`.", "type": "object", "default": {}, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "pep621": { "description": "Configuration object for the pep621 manager", @@ -5616,6 +6146,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5662,6 +6197,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5699,7 +6239,36 @@ "commitMessageExtra": "" } }, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "pinDigest": { "description": "Configuration to apply when pinning a digest (no change in tag/version).", @@ -5713,7 +6282,36 @@ "commitMessageExtra": "" } }, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "pinDigests": { "description": "Whether to add digests to Dockerfile source images.", @@ -5752,6 +6350,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5800,6 +6403,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5848,6 +6456,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5896,6 +6509,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -5945,6 +6563,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6024,6 +6647,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6272,6 +6900,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6380,6 +7013,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6428,6 +7066,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6478,6 +7121,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6611,6 +7259,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6641,7 +7294,36 @@ "This is a special PR that replaces `{{{depName}}}` with the community suggested minimal stable replacement version." ] }, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "replacementApproach": { "description": "Select whether to perform a direct replacement or alias replacement.", @@ -6738,7 +7420,36 @@ "commitMessageAction": "Roll back", "semanticCommitType": "fix" }, - "$ref": "#" + "$ref": "#", + "items": { + "allOf": [ + { + "type": "object", + "properties": { + "description": { + "oneOf": [ + { + "type": "array", + "items": { + "type": "string", + "description": "A custom description for this configuration object" + } + }, + { + "type": "string", + "description": "A custom description for this configuration object" + } + ] + }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + } + } + } + ] + } }, "rollbackPrs": { "description": "Create PRs to roll back versions if the current version is not found in the registry.", @@ -6775,6 +7486,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6824,6 +7540,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6885,6 +7606,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -6933,6 +7659,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7048,6 +7779,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7137,6 +7873,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7187,6 +7928,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7233,6 +7979,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7283,6 +8034,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7333,6 +8089,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7382,6 +8143,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7432,6 +8198,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7482,6 +8253,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7542,6 +8318,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7595,6 +8376,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7699,6 +8485,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7748,6 +8539,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ @@ -7910,6 +8706,11 @@ } ] }, + "enabled": { + "description": "Enable or disable corresponding functionality.", + "type": "boolean", + "default": true + }, "managerFilePatterns": { "description": "RegEx (`re2`) and glob patterns for matching manager files.", "oneOf": [ diff --git a/src/check_jsonschema/builtin_schemas/vendor/sha256/compose-spec.sha256 b/src/check_jsonschema/builtin_schemas/vendor/sha256/compose-spec.sha256 index c04dc18e4..f68f37799 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/sha256/compose-spec.sha256 +++ b/src/check_jsonschema/builtin_schemas/vendor/sha256/compose-spec.sha256 @@ -1 +1 @@ -211cb0f6633d057a28f26c73f01c182a6833ea7b7f80a1a428a6c2bff63e3932 \ No newline at end of file +bc50c2d79102aed8df21b3a13e56c9396c7a06da6cff5ce37629f2ee7eb41735 \ No newline at end of file diff --git a/src/check_jsonschema/builtin_schemas/vendor/sha256/meltano.sha256 b/src/check_jsonschema/builtin_schemas/vendor/sha256/meltano.sha256 index df087f1ee..e5efb42f7 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/sha256/meltano.sha256 +++ b/src/check_jsonschema/builtin_schemas/vendor/sha256/meltano.sha256 @@ -1 +1 @@ -4c0239109ae72a02005fc5c8aef74b3b0298cc98684a00de87b600f45484d7b3 \ No newline at end of file +0a92bd465b669b8efc0dd7880bce82831db89df04c593fa9eed12453c6c6f283 \ No newline at end of file diff --git a/src/check_jsonschema/builtin_schemas/vendor/sha256/renovate.sha256 b/src/check_jsonschema/builtin_schemas/vendor/sha256/renovate.sha256 index 79b679e54..054af352f 100644 --- a/src/check_jsonschema/builtin_schemas/vendor/sha256/renovate.sha256 +++ b/src/check_jsonschema/builtin_schemas/vendor/sha256/renovate.sha256 @@ -1 +1 @@ -9e10dc362af292cd614bd4d2ad0545f8769ec3a9e3cd8d323d5ea9d2ec3e00e4 \ No newline at end of file +11988fc6297c4f2fc752cf87e311f4b8baf23ed5d38288332eb8e2c6af14f010 \ No newline at end of file