schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
traefik-v2-file-provider.json
country
Set the country option to true to add the country information into the subject.
{"type": "boolean"}
traefik-v2-file-provider.json
province
Set the province option to true to add the province information into the subject.
{"type": "boolean"}
traefik-v2-file-provider.json
locality
Set the locality option to true to add the locality information into the subject.
{"type": "boolean"}
traefik-v2-file-provider.json
organization
Set the organization option to true to add the organization information into the subject.
{"type": "boolean"}
traefik-v2-file-provider.json
commonName
Set the commonName option to true to add the commonName information into the subject.
{"type": "boolean"}
traefik-v2-file-provider.json
serialNumber
Set the serialNumber option to true to add the serialNumber information into the subject.
{"type": "boolean"}
traefik-v2-file-provider.json
domainComponent
Set the domainComponent option to true to add the domainComponent information into the subject.
{"type": "boolean"}
traefik-v2-file-provider.json
issuer
The issuer select the specific client certificate issuer details you want to add to the X-Forwarded-Tls-Client-Cert-Info header.
{"type": "object", "properties": {"country": {"type": "boolean"}, "province": {"type": "boolean"}, "locality": {"type": "boolean"}, "organization": {"type": "boolean"}, "commonName": {"type": "boolean"}, "serialNumber": {"type": "boolean"}, "domainComponent": {"type": "boolean"}}}
traefik-v2-file-provider.json
country
Set the country option to true to add the country information into the issuer.
{"type": "boolean"}
traefik-v2-file-provider.json
province
Set the province option to true to add the province information into the issuer.
{"type": "boolean"}
traefik-v2-file-provider.json
locality
Set the locality option to true to add the locality information into the issuer.
{"type": "boolean"}
traefik-v2-file-provider.json
organization
Set the organization option to true to add the organization information into the issuer.
{"type": "boolean"}
traefik-v2-file-provider.json
commonName
Set the commonName option to true to add the commonName information into the issuer.
{"type": "boolean"}
traefik-v2-file-provider.json
serialNumber
Set the serialNumber option to true to add the serialNumber information into the issuer.
{"type": "boolean"}
traefik-v2-file-provider.json
domainComponent
Set the domainComponent option to true to add the domainComponent information into the issuer.
{"type": "boolean"}
traefik-v2-file-provider.json
pluginMiddleware
Some plugins will need to be configured by adding a dynamic configuration.
{"type": "object", "additionalProperties": {"type": "object"}}
traefik-v2-file-provider.json
rateLimitMiddleware
The RateLimit middleware ensures that services will receive a fair number of requests, and allows one to define what fair is.
{"type": "object", "properties": {"average": {"oneOf": [{"type": "string"}, {"type": "number"}]}, "period": {"oneOf": [{"type": "string"}, {"type": "number", "default": 1}]}, "burst": {"type": "number", "default": 1}, "sourceCriterion": {}}, "additionalProperties": false}
traefik-v2-file-provider.json
average
average is the maximum rate, by default in requests by second, allowed for the given source. It defaults to 0, which means no rate limiting. The rate is actually defined by dividing average by period. So for a rate below 1 req/s, one needs to define a period larger than a second.
{"oneOf": [{"type": "string"}, {"type": "number"}]}
traefik-v2-file-provider.json
period
period, in combination with average, defines the actual maximum rate. It defaults to 1 second.
{"oneOf": [{"type": "string"}, {"type": "number", "default": 1}]}
traefik-v2-file-provider.json
burst
burst is the maximum number of requests allowed to go through in the same arbitrarily small period of time. It defaults to 1.
{"type": "number", "default": 1}
traefik-v2-file-provider.json
redirectRegexMiddleware
RegexRedirect redirect a request from an url to another with regex matching and replacement.
{"type": "object", "properties": {"permanent": {"type": "boolean"}, "regex": {"type": "string"}, "replacement": {"type": "string"}}, "additionalProperties": false}
traefik-v2-file-provider.json
permanent
Set the permanent option to true to apply a permanent redirection.
{"type": "boolean"}
traefik-v2-file-provider.json
regex
The regex option is the regular expression to match and capture elements from the request URL.
{"type": "string"}
traefik-v2-file-provider.json
replacement
The replacement option defines how to modify the URL to have the new target URL. Care should be taken when defining replacement expand variables: $1x is equivalent to ${1x}, not ${1}x (see Regexp.Expand), so use ${1} syntax.
{"type": "string"}
traefik-v2-file-provider.json
redirectSchemeMiddleware
RedirectScheme redirect request from a scheme to another.
{"type": "object", "properties": {"permanent": {"type": "boolean"}, "scheme": {"type": "string"}, "port": {"type": "string"}}, "additionalProperties": false}
traefik-v2-file-provider.json
permanent
Set the permanent option to true to apply a permanent redirection.
{"type": "boolean"}
traefik-v2-file-provider.json
scheme
The scheme option defines the scheme of the new url.
{"type": "string"}
traefik-v2-file-provider.json
port
The port option defines the port of the new url. Port in this configuration is a string, not a numeric value.
{"type": "string"}
traefik-v2-file-provider.json
replacePathMiddleware
Replace the path of the request url. It will replace the actual path by the specified one and will store the original path in a X-Replaced-Path header.
{"type": "object", "properties": {"path": {"type": "string"}}, "additionalProperties": false}
traefik-v2-file-provider.json
path
The path option defines the path to use as replacement in the request url.
{"type": "string"}
traefik-v2-file-provider.json
replacePathRegexMiddleware
The ReplaceRegex replace a path from an url to another with regex matching and replacement. It will replace the actual path by the specified one and store the original path in a X-Replaced-Path header.
{"type": "object", "properties": {"regex": {"type": "string"}, "replacement": {"type": "string"}}, "additionalProperties": false}
traefik-v2-file-provider.json
regex
The regex option is the regular expression to match and capture the path from the request URL.
{"type": "string"}
traefik-v2-file-provider.json
replacement
The replacement option defines how to modify the path to have the new target path. Care should be taken when defining replacement expand variables: $1x is equivalent to ${1x}, not ${1}x (see Regexp.Expand), so use ${1} syntax.
{"type": "string"}
traefik-v2-file-provider.json
retryMiddleware
The Retry middleware is in charge of reissuing a request a given number of times to a backend server if that server does not reply. To be clear, as soon as the server answers, the middleware stops retrying, regardless of the response status.
{"type": "object", "properties": {"attempts": {"type": "integer"}, "initialInterval": {"type": "string"}}, "additionalProperties": false, "required": ["attempts"]}
traefik-v2-file-provider.json
attempts
The attempts option defines how many times the request should be retried.
{"type": "integer"}
traefik-v2-file-provider.json
initialInterval
The initialInterval option defines the first wait time in the exponential backoff series.
{"type": "string"}
traefik-v2-file-provider.json
stripPrefixMiddleware
Remove the specified prefixes from the URL path. It will strip the matching path prefix and will store the matching path prefix in a X-Forwarded-Prefix header.
{"type": "object", "properties": {"prefixes": {"type": "array", "items": {"type": "string"}}, "forceSlash": {"type": "boolean"}}, "additionalProperties": false}
traefik-v2-file-provider.json
prefixes
The prefixes option defines the prefixes to strip from the request URL
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
forceSlash
The forceSlash option makes sure that the resulting stripped path is not the empty string, by replacing it with / when necessary. This option was added to keep the initial (non-intuitive) behavior of this middleware, in order to avoid introducing a breaking change. It's recommended to explicitly set forceSlash to false.
{"type": "boolean"}
traefik-v2-file-provider.json
stripPrefixRegexMiddleware
Remove the matching prefixes from the URL path. It will strip the matching path prefix and will store the matching path prefix in a X-Forwarded-Prefix header.
{"type": "object", "properties": {"regex": {"type": "array", "items": {"type": "string"}}}, "additionalProperties": false}
traefik-v2-file-provider.json
regex
The regex option is the regular expression to match the path prefix from the request URL.
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
tcpRouter
If both HTTP routers and TCP routers listen to the same entry points, the TCP routers will apply before the HTTP routers. If no matching route is found for the TCP routers, then the HTTP routers will take over.
{"type": "object", "properties": {"entryPoints": {"type": "array", "items": {"type": "string"}}, "middlewares": {"type": "array", "items": {"type": "string"}}, "rule": {"type": "string"}, "service": {"type": "string"}, "priority": {"type": "integer", "default": 0, "minimum": 0}, "tls": {"type": "object", "properties": {"passthrough": {"type": "boolean", "default": false}, "options": {"type": "string"}, "certResolver": {"type": "string"}, "domains": {"type": "array", "items": {"type": "object", "properties": {"main": {"type": "string"}, "sans": {"type": "array", "items": {"type": "string"}}}}}}}}, "additionalProperties": false, "required": ["rule", "service"]}
traefik-v2-file-provider.json
entryPoints
If not specified, TCP routers will accept requests from all defined entry points. If you want to limit the router scope to a set of entry points, set the entry points option.
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
rule
It is important to note that the Server Name Indication is an extension of the TLS protocol. Hence, only TLS routers will be able to specify a domain name with that rule. However, non-TLS routers will have to explicitly use that rule with * (every domain) to state that every non-TLS request will be handled by the router.
{"type": "string"}
traefik-v2-file-provider.json
service
You must attach a TCP service per TCP router. Services are the target for the router. TCP routers can only target TCP services (not HTTP services).
{"type": "string"}
traefik-v2-file-provider.json
priority
To avoid path overlap, routes are sorted, by default, in descending order using rules length. The priority is directly equal to the length of the rule, and so the longest length has the highest priority. A value of 0 for the priority is ignored: priority = 0 means that the default rules length sorting is used.
{"type": "integer", "default": 0, "minimum": 0}
traefik-v2-file-provider.json
tls
When a TLS section is specified, it instructs Traefik that the current router is dedicated to TLS requests only (and that the router should ignore non-TLS requests). By default, a router with a TLS section will terminate the TLS connections, meaning that it will send decrypted data to the services.
{"type": "object", "properties": {"passthrough": {"type": "boolean", "default": false}, "options": {"type": "string"}, "certResolver": {"type": "string"}, "domains": {"type": "array", "items": {"type": "object", "properties": {"main": {"type": "string"}, "sans": {"type": "array", "items": {"type": "string"}}}}}}}
traefik-v2-file-provider.json
passthrough
A TLS router will terminate the TLS connection by default. However, the passthrough option can be specified to set whether the requests should be forwarded "as is", keeping all data encrypted.
{"type": "boolean", "default": false}
traefik-v2-file-provider.json
options
The options field enables fine-grained control of the TLS parameters. It refers to a TLS Options and will be applied only if a Host rule is defined.
{"type": "string"}
traefik-v2-file-provider.json
certResolver
If certResolver is defined, Traefik will try to generate certificates based on routers Host & HostSNI rules.
{"type": "string"}
traefik-v2-file-provider.json
domains
You can set SANs (alternative domains) for each main domain. Every domain must have A/AAAA records pointing to Traefik. Each domain & SAN will lead to a certificate request.
{"type": "array", "items": {"type": "object", "properties": {"main": {"type": "string"}, "sans": {"type": "array", "items": {"type": "string"}}}}}
traefik-v2-file-provider.json
main
Main defines the main domain name.
{"type": "string"}
traefik-v2-file-provider.json
sans
SANs defines the subject alternative domain names.
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
servers
Servers declare a single instance of your program.
{"type": "array", "minItems": 1, "items": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}
traefik-v2-file-provider.json
address
The address option (IP:Port) point to a specific instance.
{"type": "string"}
traefik-v2-file-provider.json
terminationDelay
As a proxy between a client and a server, it can happen that either side (e.g. client side) decides to terminate its writing capability on the connection (i.e. issuance of a FIN packet). The proxy needs to propagate that intent to the other side, and so when that happens, it also does the same on its connection with the other side (e.g. backend side). However, if for some reason (bad implementation, or malicious intent) the other side does not eventually do the same as well, the connection would stay half-open, which would lock resources for however long. To that end, as soon as the proxy enters this termination sequence, it sets a deadline on fully terminating the connections on both sides. The termination delay controls that deadline. It is a duration in milliseconds, defaulting to 100. A negative value means an infinite deadline (i.e. the connection is never fully terminated by the proxy itself).
{"type": "number", "default": 100}
traefik-v2-file-provider.json
entryPoints
If not specified, UDP routers will accept packets from all defined (UDP) entry points. If one wants to limit the router scope to a set of entry points, one should set the entry points option.
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
service
There must be one (and only one) UDP service referenced per UDP router. Services are the target for the router.
{"type": "string"}
traefik-v2-file-provider.json
udpLoadBalancerService
The servers load balancer is in charge of balancing the requests between the servers of the same service.
{"type": "object", "properties": {"servers": {"type": "array", "minItems": 1, "items": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}}, "additionalProperties": false, "required": ["servers"]}
traefik-v2-file-provider.json
servers
The servers field defines all the servers that are part of this load-balancing group, i.e. each address (IP:Port) on which an instance of the service's program is deployed.
{"type": "array", "minItems": 1, "items": {"type": "object", "properties": {"address": {"type": "string"}}, "required": ["address"]}}
traefik-v2-file-provider.json
middlewares
Attached to the routers, pieces of middleware are a means of tweaking the requests before they are sent to your service (or before the answer from the services are sent to the clients). There are several available middleware in Traefik, some can modify the request, the headers, some are in charge of redirections, some add authentication, and so on. Pieces of middleware can be combined in chains to fit every scenario.
{"type": "object", "additionalProperties": {}}
traefik-v2-file-provider.json
services
Each of the fields of the service section represents a kind of service. Which means, that for each specified service, one of the fields, and only one, has to be enabled to define what kind of service is created. Currently, the two available kinds are LoadBalancer, and Weighted.
{"type": "object", "additionalProperties": {}}
traefik-v2-file-provider.json
routers
Similarly to TCP, as UDP is the transport layer, there is no concept of a request, so there is no notion of an URL path prefix to match an incoming UDP packet with. Furthermore, as there is no good TLS support at the moment for multiple hosts, there is no Host SNI notion to match against either. Therefore, there is no criterion that could be used as a rule to match incoming packets in order to route them. So UDP "routers" at this time are pretty much only load-balancers in one form or another.
{"type": "object", "additionalProperties": {}}
traefik-v2-file-provider.json
services
Each of the fields of the service section represents a kind of service. Which means, that for each specified service, one of the fields, and only one, has to be enabled to define what kind of service is created. Currently, the two available kinds are LoadBalancer, and Weighted.
{"type": "object", "additionalProperties": {}}
traefik-v2-file-provider.json
tls
Configures the TLS connection, TLS options, and certificate stores.
{"type": "object", "additionalProperties": false, "properties": {"certificates": {"type": "array", "items": {"type": "object", "properties": {"certFile": {"type": "string"}, "keyFile": {"type": "string"}, "stores": {"type": "array", "items": {"type": "string"}}}}}, "options": {"type": "object", "additionalProperties": false, "patternProperties": {"[a-zA-Z0-9-_]+": {"type": "object", "properties": {"minVersion": {"type": "string"}, "maxVersion": {"type": "string"}, "cipherSuites": {"type": "array", "items": {"type": "string"}}, "curvePreferences": {"type": "array", "items": {"type": "string"}}, "sniStrict": {"type": "boolean"}, "preferServerCipherSuites": {"type": "boolean"}, "clientAuth": {"type": "object", "properties": {"caFiles": {"type": "array", "items": {"type": "string"}}, "clientAuthType": {"type": "string"}}}}}}}, "stores": {"type": "object", "patternProperties": {"[a-zA-Z0-9-_]+": {"type": "object", "additionalProperties": false, "properties": {"defaultCertificate": {"type": "object", "additionalProperties": false, "properties": {"certFile": {"type": "string"}, "keyFile": {"type": "string"}}}, "defaultGeneratedCert": {"type": "object", "additionalProperties": false, "properties": {"resolver": {"type": "string"}, "domain": {"type": "object", "properties": {"main": {"type": "string"}, "sans": {"type": "array", "items": {"type": "string"}}}}}}}}}}}}
traefik-v2-file-provider.json
stores
A list of stores can be specified here to indicate where the certificates should be stored. Although the stores list will actually be ignored and automatically set to ["default"].
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
options
The TLS options allow one to configure some parameters of the TLS connection.
{"type": "object", "additionalProperties": false, "patternProperties": {"[a-zA-Z0-9-_]+": {"type": "object", "properties": {"minVersion": {"type": "string"}, "maxVersion": {"type": "string"}, "cipherSuites": {"type": "array", "items": {"type": "string"}}, "curvePreferences": {"type": "array", "items": {"type": "string"}}, "sniStrict": {"type": "boolean"}, "preferServerCipherSuites": {"type": "boolean"}, "clientAuth": {"type": "object", "properties": {"caFiles": {"type": "array", "items": {"type": "string"}}, "clientAuthType": {"type": "string"}}}}}}}
traefik-v2-file-provider.json
minVersion
Minimum TLS Version
{"type": "string"}
traefik-v2-file-provider.json
maxVersion
Maximum TLS Version. It is discouraged to use of this setting to disable TLS1.3. The recommended approach is to update the clients to support TLS1.3.
{"type": "string"}
traefik-v2-file-provider.json
cipherSuites
Cipher suites defined for TLS 1.2 and below cannot be used in TLS 1.3, and vice versa. With TLS 1.3, the cipher suites are not configurable (all supported cipher suites are safe in this case).
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
curvePreferences
This option allows to set the preferred elliptic curves in a specific order. The names of the curves defined by crypto (e.g. CurveP521) and the RFC defined names (e.g. secp521r1) can be used.
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
sniStrict
With strict SNI checking enabled, Traefik won't allow connections from clients that do not specify a server_name extension or don't match any certificate configured on the tlsOption.
{"type": "boolean"}
traefik-v2-file-provider.json
preferServerCipherSuites
This option allows the server to choose its most preferred cipher suite instead of the client's. Please note that this is enabled automatically when minVersion or maxVersion are set.
{"type": "boolean"}
traefik-v2-file-provider.json
clientAuth
Traefik supports mutual authentication, through the clientAuth section.
{"type": "object", "properties": {"caFiles": {"type": "array", "items": {"type": "string"}}, "clientAuthType": {"type": "string"}}}
traefik-v2-file-provider.json
caFiles
For authentication policies that require verification of the client certificate, the certificate authority for the certificate should be set here.
{"type": "array", "items": {"type": "string"}}
traefik-v2-file-provider.json
stores
Any store definition other than the default one (named default) will be ignored, and there is therefore only one globally available TLS store.
{"type": "object", "patternProperties": {"[a-zA-Z0-9-_]+": {"type": "object", "additionalProperties": false, "properties": {"defaultCertificate": {"type": "object", "additionalProperties": false, "properties": {"certFile": {"type": "string"}, "keyFile": {"type": "string"}}}, "defaultGeneratedCert": {"type": "object", "additionalProperties": false, "properties": {"resolver": {"type": "string"}, "domain": {"type": "object", "properties": {"main": {"type": "string"}, "sans": {"type": "array", "items": {"type": "string"}}}}}}}}}}
traefik-v2-file-provider.json
defaultCertificate
Traefik can use a default certificate for connections without a SNI, or without a matching domain. If no default certificate is provided, Traefik generates and uses a self-signed certificate.
{"type": "object", "additionalProperties": false, "properties": {"certFile": {"type": "string"}, "keyFile": {"type": "string"}}}
traefik-v2-file-provider.json
defaultGeneratedCert
GeneratedCert defines the default generated certificate configuration.
{"type": "object", "additionalProperties": false, "properties": {"resolver": {"type": "string"}, "domain": {"type": "object", "properties": {"main": {"type": "string"}, "sans": {"type": "array", "items": {"type": "string"}}}}}}
traefik-v2-file-provider.json
resolver
Resolver is the name of the resolver that will be used to issue the DefaultCertificate.
{"type": "string"}
traefik-v2-file-provider.json
domain
Domain is the domain definition for the DefaultCertificate.
{"type": "object", "properties": {"main": {"type": "string"}, "sans": {"type": "array", "items": {"type": "string"}}}}
traefik-v2-file-provider.json
main
Main defines the main domain name.
{"type": "string"}
traefik-v2-file-provider.json
sans
SANs defines the subject alternative domain names.
{"type": "array", "items": {"type": "string"}}
schema-pro.json
goreleaser configuration definition file
{"$schema": "https://json-schema.org/draft/2020-12/schema", "$defs": {"AUR": {"properties": {"name": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "commit_author": {}, "commit_msg_template": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "skip_upload": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "url_template": {"type": "string"}, "maintainers": {"items": {"type": "string"}, "type": "array"}, "contributors": {"items": {"type": "string"}, "type": "array"}, "provides": {"items": {"type": "string"}, "type": "array"}, "conflicts": {"items": {"type": "string"}, "type": "array"}, "depends": {"items": {"type": "string"}, "type": "array"}, "optdepends": {"items": {"type": "string"}, "type": "array"}, "backup": {"items": {"type": "string"}, "type": "array"}, "rel": {"type": "string"}, "package": {"type": "string"}, "git_url": {"type": "string"}, "git_ssh_command": {"type": "string"}, "private_key": {"type": "string"}, "goamd64": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "After": {"properties": {"hooks": {}}, "additionalProperties": false, "type": "object"}, "Announce": {"properties": {"skip": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "twitter": {}, "mastodon": {}, "reddit": {}, "slack": {}, "discord": {}, "teams": {}, "smtp": {}, "mattermost": {}, "linkedin": {}, "telegram": {}, "webhook": {}, "opencolletive": {}}, "additionalProperties": false, "type": "object"}, "Archive": {"properties": {"id": {"type": "string"}, "builds": {"items": {"type": "string"}, "type": "array"}, "builds_info": {}, "name_template": {"type": "string"}, "format": {"type": "string", "enum": ["tar", "tgz", "tar.gz", "zip", "gz", "tar.xz", "txz", "binary"], "default": "tar.gz"}, "format_overrides": {"items": {}, "type": "array"}, "wrap_in_directory": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "strip_parent_binary_folder": {"type": "boolean"}, "files": {"items": {}, "type": "array"}, "meta": {"type": "boolean"}, "allow_different_binary_count": {"type": "boolean"}, "hooks": {}, "templated_files": {"items": {}, "type": "array"}, "rlcp": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}}, "additionalProperties": false, "type": "object"}, "ArchiveHooks": {"properties": {"before": {}, "after": {}}, "additionalProperties": false, "type": "object"}, "Before": {"properties": {"hooks": {}}, "additionalProperties": false, "type": "object"}, "Blob": {"properties": {"bucket": {"type": "string"}, "provider": {"type": "string"}, "region": {"type": "string"}, "disableSSL": {"type": "boolean"}, "folder": {"type": "string"}, "kmskey": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "endpoint": {"type": "string"}, "extra_files": {"items": {}, "type": "array"}, "disable": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "templated_extra_files": {"items": {}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "Build": {"properties": {"id": {"type": "string"}, "goos": {"items": {"type": "string"}, "type": "array"}, "goarch": {"items": {"type": "string"}, "type": "array"}, "goarm": {"items": {"type": "string"}, "type": "array"}, "gomips": {"items": {"type": "string"}, "type": "array"}, "goamd64": {"items": {"type": "string"}, "type": "array"}, "targets": {"items": {"type": "string"}, "type": "array"}, "ignore": {"items": {}, "type": "array"}, "dir": {"type": "string"}, "main": {"type": "string"}, "binary": {"type": "string"}, "hooks": {}, "builder": {"type": "string"}, "mod_timestamp": {"type": "string"}, "skip": {"type": "boolean"}, "gobinary": {"type": "string"}, "command": {"type": "string"}, "no_unique_dist_dir": {"type": "boolean"}, "no_main_check": {"type": "boolean"}, "buildmode": {"type": "string"}, "ldflags": {}, "tags": {}, "flags": {}, "asmflags": {}, "gcflags": {}, "env": {"items": {"type": "string"}, "type": "array"}, "overrides": {"items": {}, "type": "array"}, "prebuilt": {}}, "additionalProperties": false, "type": "object"}, "BuildDetailsOverride": {"properties": {"goos": {"type": "string"}, "goarch": {"type": "string"}, "goarm": {"oneOf": [{"type": "string"}, {"type": "integer"}]}, "gomips": {"type": "string"}, "goamd64": {"type": "string"}, "buildmode": {"type": "string"}, "ldflags": {}, "tags": {}, "flags": {}, "asmflags": {}, "gcflags": {}, "env": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "BuildHookConfig": {"properties": {"pre": {}, "post": {}}, "additionalProperties": false, "type": "object"}, "Changelog": {"properties": {"filters": {}, "sort": {"type": "string", "enum": ["asc", "desc", ""], "default": ""}, "skip": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "use": {"type": "string", "enum": ["git", "github", "github-native", "gitlab"], "default": "git"}, "groups": {"items": {}, "type": "array"}, "divider": {"type": "string"}, "abbrev": {"type": "integer"}, "paths": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "ChangelogGroup": {"properties": {"regexp": {"type": "string"}, "order": {"type": "integer"}, "groups": {"items": {}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "ChangelogSubgroup": {"properties": {"regexp": {"type": "string"}, "order": {"type": "integer"}}, "additionalProperties": false, "type": "object"}, "Checksum": {"properties": {"name_template": {"type": "string"}, "algorithm": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "disable": {"type": "boolean"}, "extra_files": {"items": {}, "type": "array"}, "templated_extra_files": {"items": {}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "Chocolatey": {"properties": {"name": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "package_source_url": {"type": "string"}, "owners": {"type": "string"}, "authors": {"type": "string"}, "project_url": {"type": "string"}, "url_template": {"type": "string"}, "icon_url": {"type": "string"}, "copyright": {"type": "string"}, "license_url": {"type": "string"}, "require_license_acceptance": {"type": "boolean"}, "project_source_url": {"type": "string"}, "docs_url": {"type": "string"}, "bug_tracker_url": {"type": "string"}, "tags": {"type": "string"}, "summary": {"type": "string"}, "release_notes": {"type": "string"}, "dependencies": {"items": {}, "type": "array"}, "skip_publish": {"type": "boolean"}, "api_key": {"type": "string"}, "source_repo": {"type": "string"}, "goamd64": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "ChocolateyDependency": {"properties": {"id": {"type": "string"}, "version": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "CommitAuthor": {"properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Content": {"properties": {"src": {"type": "string"}, "dst": {"type": "string"}, "type": {"type": "string", "enum": ["symlink", "ghost", "config", "config|noreplace", "dir", "tree", ""], "default": ""}, "packager": {"type": "string"}, "file_info": {}}, "additionalProperties": false, "type": "object", "required": ["dst"]}, "ContentFileInfo": {"properties": {"owner": {"type": "string"}, "group": {"type": "string"}, "mode": {"type": "integer"}, "mtime": {"type": "string", "format": "date-time"}}, "additionalProperties": false, "type": "object"}, "Contents": {"items": {}, "type": "array"}, "Discord": {"properties": {"enabled": {"type": "boolean"}, "message_template": {"type": "string"}, "author": {"type": "string"}, "color": {"type": "string"}, "icon_url": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Docker": {"properties": {"id": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "goos": {"type": "string"}, "goarch": {"type": "string"}, "goarm": {"oneOf": [{"type": "string"}, {"type": "integer"}]}, "goamd64": {"type": "string"}, "dockerfile": {"type": "string"}, "image_templates": {"items": {"type": "string"}, "type": "array"}, "skip_build": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "skip_push": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "extra_files": {"items": {"type": "string"}, "type": "array"}, "build_flag_templates": {"items": {"type": "string"}, "type": "array"}, "push_flags": {"items": {"type": "string"}, "type": "array"}, "use": {"type": "string"}, "templated_files": {"items": {}, "type": "array"}, "templated_dockerfile": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "DockerManifest": {"properties": {"id": {"type": "string"}, "name_template": {"type": "string"}, "skip_push": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "image_templates": {"items": {"type": "string"}, "type": "array"}, "create_flags": {"items": {"type": "string"}, "type": "array"}, "push_flags": {"items": {"type": "string"}, "type": "array"}, "use": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "EnvFiles": {"properties": {"github_token": {"type": "string"}, "gitlab_token": {"type": "string"}, "gitea_token": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "ExtraFile": {"properties": {"glob": {"type": "string"}, "name_template": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "File": {"oneOf": [{"type": "string"}, {"$schema": "https://json-schema.org/draft/2020-12/schema", "$defs": {"FileInfo": {"properties": {"owner": {"type": "string"}, "group": {"type": "string"}, "mode": {"type": "integer"}, "mtime": {"type": "string"}}, "additionalProperties": false, "type": "object"}}, "properties": {"src": {"type": "string"}, "dst": {"type": "string"}, "strip_parent": {"type": "boolean"}, "info": {}}, "additionalProperties": false, "type": "object"}]}, "FileInfo": {"$schema": "https://json-schema.org/draft/2020-12/schema", "$defs": {"FileInfo": {"properties": {"owner": {"type": "string"}, "group": {"type": "string"}, "mode": {"type": "integer"}, "mtime": {"type": "string"}}, "additionalProperties": false, "type": "object"}}}, "Filters": {"properties": {"include": {"items": {"type": "string"}, "type": "array"}, "exclude": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "FlagArray": {"oneOf": [{"type": "string"}, {"items": {"type": "string"}, "type": "array"}]}, "FormatOverride": {"properties": {"goos": {"type": "string"}, "format": {"type": "string", "enum": ["tar", "tgz", "tar.gz", "zip", "gz", "tar.xz", "txz", "binary"], "default": "tar.gz"}}, "additionalProperties": false, "type": "object"}, "Fury": {"properties": {"account": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "formats": {"items": {"type": "string"}, "type": "array"}, "secret_name": {"type": "string"}, "skip": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Git": {"properties": {"tag_sort": {"type": "string"}, "prerelease_suffix": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "GitHubURLs": {"properties": {"api": {"type": "string"}, "upload": {"type": "string"}, "download": {"type": "string"}, "skip_tls_verify": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "GitLabURLs": {"properties": {"api": {"type": "string"}, "download": {"type": "string"}, "skip_tls_verify": {"type": "boolean"}, "use_package_registry": {"type": "boolean"}, "use_job_token": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "GitRepoRef": {"properties": {"url": {"type": "string"}, "ssh_command": {"type": "string"}, "private_key": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "GiteaURLs": {"properties": {"api": {"type": "string"}, "download": {"type": "string"}, "skip_tls_verify": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "GoMod": {"properties": {"proxy": {"type": "boolean"}, "env": {"items": {"type": "string"}, "type": "array"}, "gobinary": {"type": "string"}, "mod": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Homebrew": {"properties": {"name": {"type": "string"}, "repository": {}, "commit_author": {}, "commit_msg_template": {"type": "string"}, "folder": {"type": "string"}, "caveats": {"type": "string"}, "install": {"type": "string"}, "extra_install": {"type": "string"}, "post_install": {"type": "string"}, "dependencies": {"items": {}, "type": "array"}, "test": {"type": "string"}, "conflicts": {"items": {"type": "string"}, "type": "array"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "skip_upload": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "download_strategy": {"type": "string"}, "url_template": {"type": "string"}, "custom_require": {"type": "string"}, "custom_block": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "goarm": {"oneOf": [{"type": "string"}, {"type": "integer"}]}, "goamd64": {"type": "string"}, "service": {"type": "string"}, "alternative_names": {"items": {"type": "string"}, "type": "array"}, "tap": {}, "plist": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "HomebrewDependency": {"oneOf": [{"type": "string"}, {"$schema": "https://json-schema.org/draft/2020-12/schema", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}}, "additionalProperties": false, "type": "object"}]}, "Hooks": {"oneOf": [{"type": "string"}, {"items": {"$schema": "https://json-schema.org/draft/2020-12/schema", "oneOf": [{"type": "string"}, {"$schema": "https://json-schema.org/draft/2020-12/schema", "properties": {"dir": {"type": "string"}, "cmd": {"type": "string"}, "env": {"items": {"type": "string"}, "type": "array"}, "output": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}]}, "type": "array"}]}, "IgnoredBuild": {"properties": {"goos": {"type": "string"}, "goarch": {"type": "string"}, "goarm": {"oneOf": [{"type": "string"}, {"type": "integer"}]}, "gomips": {"type": "string"}, "goamd64": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Include": {"properties": {"from_url": {}, "from_file": {}}, "additionalProperties": false, "type": "object"}, "IncludeFromFile": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["path"]}, "IncludeFromURL": {"properties": {"url": {"type": "string"}, "headers": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}}, "additionalProperties": false, "type": "object", "required": ["url"]}, "IncludedMarkdown": {"oneOf": [{"type": "string"}, {"$schema": "https://json-schema.org/draft/2020-12/schema", "$defs": {"IncludeFromFile": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["path"]}, "IncludeFromURL": {"properties": {"url": {"type": "string"}, "headers": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}}, "additionalProperties": false, "type": "object", "required": ["url"]}}, "properties": {"from_url": {}, "from_file": {}}, "additionalProperties": false, "type": "object"}]}, "Ko": {"properties": {"id": {"type": "string"}, "build": {"type": "string"}, "main": {"type": "string"}, "working_dir": {"type": "string"}, "base_image": {"type": "string"}, "labels": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "repository": {"type": "string"}, "platforms": {"items": {"type": "string"}, "type": "array"}, "tags": {"items": {"type": "string"}, "type": "array"}, "creation_time": {"type": "string"}, "ko_data_creation_time": {"type": "string"}, "sbom": {"type": "string"}, "ldflags": {"items": {"type": "string"}, "type": "array"}, "flags": {"items": {"type": "string"}, "type": "array"}, "env": {"items": {"type": "string"}, "type": "array"}, "bare": {"type": "boolean"}, "preserve_import_paths": {"type": "boolean"}, "base_import_paths": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "Krew": {"properties": {"ids": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "repository": {}, "commit_author": {}, "commit_msg_template": {"type": "string"}, "caveats": {"type": "string"}, "short_description": {"type": "string"}, "homepage": {"type": "string"}, "url_template": {"type": "string"}, "goarm": {"oneOf": [{"type": "string"}, {"type": "integer"}]}, "goamd64": {"type": "string"}, "skip_upload": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "index": {}}, "additionalProperties": false, "type": "object"}, "LinkedIn": {"properties": {"enabled": {"type": "boolean"}, "message_template": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Mastodon": {"properties": {"enabled": {"type": "boolean"}, "message_template": {"type": "string"}, "server": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["server"]}, "Matrix": {"patternProperties": {".*": {"items": {"type": "string"}, "type": "array"}}, "type": "object"}, "Mattermost": {"properties": {"enabled": {"type": "boolean"}, "message_template": {"type": "string"}, "title_template": {"type": "string"}, "color": {"type": "string"}, "channel": {"type": "string"}, "username": {"type": "string"}, "icon_emoji": {"type": "string"}, "icon_url": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Milestone": {"properties": {"repo": {}, "close": {"type": "boolean"}, "fail_on_error": {"type": "boolean"}, "name_template": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Monorepo": {"properties": {"tag_prefix": {"type": "string"}, "dir": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPM": {"properties": {"file_name_template": {"type": "string"}, "package_name": {"type": "string"}, "epoch": {"type": "string"}, "release": {"type": "string"}, "prerelease": {"type": "string"}, "version_metadata": {"type": "string"}, "dependencies": {"items": {"type": "string"}, "type": "array"}, "recommends": {"items": {"type": "string"}, "type": "array"}, "suggests": {"items": {"type": "string"}, "type": "array"}, "conflicts": {"items": {"type": "string"}, "type": "array"}, "umask": {"type": "integer"}, "replaces": {"items": {"type": "string"}, "type": "array"}, "provides": {"items": {"type": "string"}, "type": "array"}, "contents": {}, "scripts": {}, "rpm": {}, "deb": {}, "apk": {}, "archlinux": {}, "templated_contents": {}, "templated_scripts": {}, "overrides": {"patternProperties": {".*": {}}, "type": "object"}, "id": {"type": "string"}, "builds": {"items": {"type": "string"}, "type": "array"}, "formats": {"items": {"type": "string"}, "type": "array"}, "section": {"type": "string"}, "priority": {"type": "string"}, "vendor": {"type": "string"}, "homepage": {"type": "string"}, "maintainer": {"type": "string"}, "license": {"type": "string"}, "bindir": {"type": "string"}, "changelog": {"type": "string"}, "meta": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "NFPMAPK": {"properties": {"scripts": {}, "signature": {}}, "additionalProperties": false, "type": "object"}, "NFPMAPKScripts": {"properties": {"preupgrade": {"type": "string"}, "postupgrade": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPMAPKSignature": {"properties": {"key_file": {"type": "string"}, "key_name": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPMArchLinux": {"properties": {"pkgbase": {"type": "string"}, "packager": {"type": "string"}, "scripts": {}}, "additionalProperties": false, "type": "object"}, "NFPMArchLinuxScripts": {"properties": {"preupgrade": {"type": "string"}, "postupgrade": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPMDeb": {"properties": {"scripts": {}, "triggers": {}, "breaks": {"items": {"type": "string"}, "type": "array"}, "signature": {}, "lintian_overrides": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "NFPMDebScripts": {"properties": {"rules": {"type": "string"}, "templates": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPMDebSignature": {"properties": {"key_file": {"type": "string"}, "type": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPMDebTriggers": {"properties": {"interest": {"items": {"type": "string"}, "type": "array"}, "interest_await": {"items": {"type": "string"}, "type": "array"}, "interest_noawait": {"items": {"type": "string"}, "type": "array"}, "activate": {"items": {"type": "string"}, "type": "array"}, "activate_await": {"items": {"type": "string"}, "type": "array"}, "activate_noawait": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "NFPMOverridables": {"properties": {"file_name_template": {"type": "string"}, "package_name": {"type": "string"}, "epoch": {"type": "string"}, "release": {"type": "string"}, "prerelease": {"type": "string"}, "version_metadata": {"type": "string"}, "dependencies": {"items": {"type": "string"}, "type": "array"}, "recommends": {"items": {"type": "string"}, "type": "array"}, "suggests": {"items": {"type": "string"}, "type": "array"}, "conflicts": {"items": {"type": "string"}, "type": "array"}, "umask": {"type": "integer"}, "replaces": {"items": {"type": "string"}, "type": "array"}, "provides": {"items": {"type": "string"}, "type": "array"}, "contents": {}, "scripts": {}, "rpm": {}, "deb": {}, "apk": {}, "archlinux": {}, "templated_contents": {}, "templated_scripts": {}}, "additionalProperties": false, "type": "object"}, "NFPMRPM": {"properties": {"summary": {"type": "string"}, "group": {"type": "string"}, "compression": {"type": "string"}, "signature": {}, "scripts": {}, "prefixes": {"items": {"type": "string"}, "type": "array"}, "packager": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPMRPMScripts": {"properties": {"pretrans": {"type": "string"}, "posttrans": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPMRPMSignature": {"properties": {"key_file": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "NFPMScripts": {"properties": {"preinstall": {"type": "string"}, "postinstall": {"type": "string"}, "preremove": {"type": "string"}, "postremove": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Nightly": {"properties": {"name_template": {"type": "string"}, "tag_name": {"type": "string"}, "publish_release": {"type": "boolean"}, "keep_single_release": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "Nix": {"properties": {"name": {"type": "string"}, "path": {"type": "string"}, "repository": {}, "commit_author": {}, "commit_msg_template": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "goamd64": {"type": "string"}, "skip_upload": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "url_template": {"type": "string"}, "install": {"type": "string"}, "extra_install": {"type": "string"}, "post_install": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"items": {}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "NixDependency": {"oneOf": [{"type": "string"}, {"$schema": "https://json-schema.org/draft/2020-12/schema", "properties": {"name": {"type": "string"}, "os": {"type": "string", "enum": ["linux", "darwin"]}}, "additionalProperties": false, "type": "object", "required": ["name"]}]}, "OpenCollective": {"properties": {"enabled": {"type": "boolean"}, "slug": {"type": "string"}, "title_template": {"type": "string"}, "message_template": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Partial": {"properties": {"by": {"type": "string", "enum": ["goos", "target"], "default": "goos"}}, "additionalProperties": false, "type": "object"}, "PreBuiltOptions": {"properties": {"path": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Project": {"properties": {"project_name": {"type": "string"}, "env": {"items": {"type": "string"}, "type": "array"}, "release": {}, "milestones": {"items": {}, "type": "array"}, "brews": {"items": {}, "type": "array"}, "nix": {"items": {}, "type": "array"}, "winget": {"items": {}, "type": "array"}, "aurs": {"items": {}, "type": "array"}, "krews": {"items": {}, "type": "array"}, "kos": {"items": {}, "type": "array"}, "scoops": {"items": {}, "type": "array"}, "builds": {"items": {}, "type": "array"}, "archives": {"items": {}, "type": "array"}, "nfpms": {"items": {}, "type": "array"}, "snapcrafts": {"items": {}, "type": "array"}, "snapshot": {}, "checksum": {}, "dockers": {"items": {}, "type": "array"}, "docker_manifests": {"items": {}, "type": "array"}, "artifactories": {"items": {}, "type": "array"}, "uploads": {"items": {}, "type": "array"}, "blobs": {"items": {}, "type": "array"}, "publishers": {"items": {}, "type": "array"}, "changelog": {}, "dist": {"type": "string"}, "signs": {"items": {}, "type": "array"}, "docker_signs": {"items": {}, "type": "array"}, "env_files": {}, "before": {}, "after": {}, "source": {}, "gomod": {}, "announce": {}, "sboms": {"items": {}, "type": "array"}, "chocolateys": {"items": {}, "type": "array"}, "git": {}, "report_sizes": {"type": "boolean"}, "metadata": {}, "template_files": {"items": {}, "type": "array"}, "universal_binaries": {"items": {}, "type": "array"}, "upx": {"items": {}, "type": "array"}, "force_token": {"type": "string", "enum": ["github", "gitlab", "gitea", ""], "default": ""}, "github_urls": {}, "gitlab_urls": {}, "gitea_urls": {}, "includes": {"items": {}, "type": "array"}, "variables": {"type": "object"}, "monorepo": {}, "partial": {}, "nightly": {}, "furies": {"items": {}, "type": "array"}, "scoop": {}, "build": {}}, "additionalProperties": false, "type": "object"}, "ProjectMetadata": {"properties": {"mod_timestamp": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Publisher": {"properties": {"name": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "checksum": {"type": "boolean"}, "signature": {"type": "boolean"}, "dir": {"type": "string"}, "cmd": {"type": "string"}, "env": {"items": {"type": "string"}, "type": "array"}, "extra_files": {"items": {}, "type": "array"}, "disable": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "templated_extra_files": {"items": {}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "PullRequest": {"properties": {"enabled": {"type": "boolean"}, "base": {}, "draft": {"type": "boolean"}, "check_boxes": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "PullRequestBase": {"oneOf": [{"type": "string"}, {"$schema": "https://json-schema.org/draft/2020-12/schema", "properties": {"owner": {"type": "string"}, "name": {"type": "string"}, "branch": {"type": "string"}}, "additionalProperties": false, "type": "object"}]}, "Reddit": {"properties": {"enabled": {"type": "boolean"}, "application_id": {"type": "string"}, "username": {"type": "string"}, "title_template": {"type": "string"}, "url_template": {"type": "string"}, "sub": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Release": {"properties": {"github": {}, "gitlab": {}, "gitea": {}, "draft": {"type": "boolean"}, "replace_existing_draft": {"type": "boolean"}, "target_commitish": {"type": "string"}, "tag": {"type": "string"}, "disable": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "skip_upload": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "prerelease": {"type": "string"}, "make_latest": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "name_template": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "extra_files": {"items": {}, "type": "array"}, "discussion_category_name": {"type": "string"}, "mode": {"type": "string", "enum": ["keep-existing", "append", "prepend", "replace"], "default": "keep-existing"}, "templated_extra_files": {"items": {}, "type": "array"}, "header": {}, "footer": {}}, "additionalProperties": false, "type": "object"}, "Repo": {"properties": {"owner": {"type": "string"}, "name": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "RepoRef": {"properties": {"owner": {"type": "string"}, "name": {"type": "string"}, "token": {"type": "string"}, "branch": {"type": "string"}, "git": {}, "pull_request": {}}, "additionalProperties": false, "type": "object"}, "SBOM": {"properties": {"id": {"type": "string"}, "cmd": {"type": "string"}, "env": {"items": {"type": "string"}, "type": "array"}, "args": {"items": {"type": "string"}, "type": "array"}, "documents": {"items": {"type": "string"}, "type": "array"}, "artifacts": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "SMTP": {"properties": {"enabled": {"type": "boolean"}, "host": {"type": "string"}, "port": {"type": "integer"}, "username": {"type": "string"}, "from": {"type": "string"}, "to": {"items": {"type": "string"}, "type": "array"}, "subject_template": {"type": "string"}, "body_template": {"type": "string"}, "insecure_skip_verify": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "Scoop": {"properties": {"name": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "repository": {}, "folder": {"type": "string"}, "commit_author": {}, "commit_msg_template": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url_template": {"type": "string"}, "persist": {"items": {"type": "string"}, "type": "array"}, "skip_upload": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "pre_install": {"items": {"type": "string"}, "type": "array"}, "post_install": {"items": {"type": "string"}, "type": "array"}, "depends": {"items": {"type": "string"}, "type": "array"}, "shortcuts": {"items": {"items": {"type": "string"}, "type": "array"}, "type": "array"}, "goamd64": {"type": "string"}, "bucket": {}}, "additionalProperties": false, "type": "object"}, "Sign": {"properties": {"id": {"type": "string"}, "cmd": {"type": "string"}, "args": {"items": {"type": "string"}, "type": "array"}, "signature": {"type": "string"}, "artifacts": {"type": "string", "enum": ["all", "manifests", "images", "checksum", "source", "package", "archive", "binary", "sbom"]}, "ids": {"items": {"type": "string"}, "type": "array"}, "stdin": {"type": "string"}, "stdin_file": {"type": "string"}, "env": {"items": {"type": "string"}, "type": "array"}, "certificate": {"type": "string"}, "output": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "Slack": {"properties": {"enabled": {"type": "boolean"}, "message_template": {"type": "string"}, "channel": {"type": "string"}, "username": {"type": "string"}, "icon_emoji": {"type": "string"}, "icon_url": {"type": "string"}, "blocks": {"items": {}, "type": "array"}, "attachments": {"items": {}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "SlackAttachment": {"properties": {"Internal": true}, "additionalProperties": false, "type": "object", "required": ["Internal"]}, "SlackBlock": {"properties": {"Internal": true}, "additionalProperties": false, "type": "object", "required": ["Internal"]}, "Snapcraft": {"properties": {"name_template": {"type": "string"}, "publish": {"type": "boolean"}, "id": {"type": "string"}, "builds": {"items": {"type": "string"}, "type": "array"}, "name": {"type": "string"}, "summary": {"type": "string"}, "icon": {"type": "string"}, "base": {"type": "string"}, "license": {"type": "string"}, "grade": {"type": "string"}, "channel_templates": {"items": {"type": "string"}, "type": "array"}, "confinement": {"type": "string"}, "assumes": {"items": {"type": "string"}, "type": "array"}, "layout": {"patternProperties": {".*": {}}, "type": "object"}, "apps": {"patternProperties": {".*": {}}, "type": "object"}, "hooks": {"type": "object"}, "plugs": {"type": "object"}, "disable": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "extra_files": {"items": {}, "type": "array"}, "templated_extra_files": {"items": {}, "type": "array"}}, "additionalProperties": false, "type": "object"}, "SnapcraftAppMetadata": {"properties": {"command": {"type": "string"}, "args": {"type": "string"}, "adapter": {"type": "string"}, "after": {"items": {"type": "string"}, "type": "array"}, "aliases": {"items": {"type": "string"}, "type": "array"}, "autostart": {"type": "string"}, "before": {"items": {"type": "string"}, "type": "array"}, "bus_name": {"type": "string"}, "command_chain": {"items": {"type": "string"}, "type": "array"}, "common_id": {"type": "string"}, "completer": {"type": "string"}, "daemon": {"type": "string"}, "desktop": {"type": "string"}, "environment": {"type": "object"}, "extensions": {"items": {"type": "string"}, "type": "array"}, "install_mode": {"type": "string"}, "passthrough": {"type": "object"}, "plugs": {"items": {"type": "string"}, "type": "array"}, "post_stop_command": {"type": "string"}, "refresh_mode": {"type": "string"}, "reload_command": {"type": "string"}, "restart_condition": {"type": "string"}, "restart_delay": {"type": "string"}, "slots": {"items": {"type": "string"}, "type": "array"}, "sockets": {"type": "object"}, "start_timeout": {"type": "string"}, "stop_command": {"type": "string"}, "stop_mode": {"type": "string"}, "stop_timeout": {"type": "string"}, "timer": {"type": "string"}, "watchdog_timeout": {"type": "string"}}, "additionalProperties": false, "type": "object", "required": ["command"]}, "SnapcraftExtraFiles": {"properties": {"source": {"type": "string"}, "destination": {"type": "string"}, "mode": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["source"]}, "SnapcraftLayoutMetadata": {"properties": {"symlink": {"type": "string"}, "bind": {"type": "string"}, "bind_file": {"type": "string"}, "type": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Snapshot": {"properties": {"name_template": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Source": {"properties": {"name_template": {"type": "string"}, "format": {"type": "string", "enum": ["tar", "tgz", "tar.gz", "zip"], "default": "tar.gz"}, "enabled": {"type": "boolean"}, "prefix_template": {"type": "string"}, "files": {"items": {}, "type": "array"}, "templated_files": {"items": {}, "type": "array"}, "rlcp": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}}, "additionalProperties": false, "type": "object"}, "StringArray": {"oneOf": [{"type": "string"}, {"items": {"type": "string"}, "type": "array"}]}, "Teams": {"properties": {"enabled": {"type": "boolean"}, "title_template": {"type": "string"}, "message_template": {"type": "string"}, "color": {"type": "string"}, "icon_url": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Telegram": {"properties": {"enabled": {"type": "boolean"}, "message_template": {"type": "string"}, "chat_id": {"oneOf": [{"type": "string"}, {"type": "integer"}]}, "parse_mode": {"type": "string", "enum": ["MarkdownV2", "HTML"], "default": "MarkdownV2"}}, "additionalProperties": false, "type": "object"}, "TemplateFile": {"properties": {"id": {"type": "string"}, "src": {"type": "string"}, "dst": {"type": "string"}, "mode": {"type": "integer"}}, "additionalProperties": false, "type": "object", "required": ["src", "dst"]}, "TemplatedExtraFile": {"properties": {"src": {"type": "string"}, "dst": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "TemplatedExtraFileWithMode": {"properties": {"src": {"type": "string"}, "dst": {"type": "string"}, "mode": {"type": "integer"}}, "additionalProperties": false, "type": "object"}, "TemplatedFile": {"properties": {"src": {"type": "string"}, "dst": {"type": "string"}, "info": {}}, "additionalProperties": false, "type": "object"}, "Twitter": {"properties": {"enabled": {"type": "boolean"}, "message_template": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "UPX": {"properties": {"enabled": {"type": "boolean"}, "ids": {"items": {"type": "string"}, "type": "array"}, "goos": {"items": {"type": "string"}, "type": "array"}, "goarch": {"items": {"type": "string"}, "type": "array"}, "goarm": {"items": {"type": "string"}, "type": "array"}, "goamd64": {"items": {"type": "string"}, "type": "array"}, "binary": {"type": "string"}, "compress": {"type": "string", "enum": ["1", "2", "3", "4", "5", "6", "7", "8", "9", "best", ""], "default": ""}, "lzma": {"type": "boolean"}, "brute": {"type": "boolean"}}, "additionalProperties": false, "type": "object"}, "UniversalBinary": {"properties": {"id": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "name_template": {"type": "string"}, "replace": {"type": "boolean"}, "hooks": {}, "mod_timestamp": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Upload": {"properties": {"name": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "exts": {"items": {"type": "string"}, "type": "array"}, "target": {"type": "string"}, "username": {"type": "string"}, "mode": {"type": "string"}, "method": {"type": "string"}, "checksum_header": {"type": "string"}, "client_x509_cert": {"type": "string"}, "client_x509_key": {"type": "string"}, "trusted_certificates": {"type": "string"}, "checksum": {"type": "boolean"}, "signature": {"type": "boolean"}, "custom_artifact_name": {"type": "boolean"}, "custom_headers": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "matrix": {}}, "additionalProperties": false, "type": "object"}, "Webhook": {"properties": {"enabled": {"type": "boolean"}, "skip_tls_verify": {"type": "boolean"}, "message_template": {"type": "string"}, "endpoint_url": {"type": "string"}, "headers": {"patternProperties": {".*": {"type": "string"}}, "type": "object"}, "content_type": {"type": "string"}}, "additionalProperties": false, "type": "object"}, "Winget": {"properties": {"name": {"type": "string"}, "package_identifier": {"type": "string"}, "publisher": {"type": "string"}, "publisher_url": {"type": "string"}, "publisher_support_url": {"type": "string"}, "copyright": {"type": "string"}, "copyright_url": {"type": "string"}, "author": {"type": "string"}, "path": {"type": "string"}, "repository": {}, "commit_author": {}, "commit_msg_template": {"type": "string"}, "ids": {"items": {"type": "string"}, "type": "array"}, "goamd64": {"type": "string"}, "skip_upload": {"oneOf": [{"type": "string"}, {"type": "boolean"}]}, "url_template": {"type": "string"}, "short_description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "license_url": {"type": "string"}, "release_notes": {"type": "string"}, "release_notes_url": {"type": "string"}, "tags": {"items": {"type": "string"}, "type": "array"}}, "additionalProperties": false, "type": "object"}}}
schema-pro.json
rlcp
you can now remove this
{"oneOf": [{"type": "string"}, {"type": "boolean"}]}
schema-pro.json
tap
use repository instead
{}
schema-pro.json
plist
use service instead
{"type": "string"}
schema-pro.json
index
use repository instead
{}
schema-pro.json
scoop
use scoops instead
{}
schema-pro.json
build
use builds instead
{}
schema-pro.json
bucket
use repository instead
{}
schema-pro.json
rlcp
you can now remove this
{"oneOf": [{"type": "string"}, {"type": "boolean"}]}
template.json
datatype
Indicates limitations on the valid values a symbol may be assigned. When specified, the symbol value is attempted to be converted to this type. The datatype "choice" is supported only for parameter symbols and requires providing symbols.choices configuration for the symbol.
{"anyOf": [{"enum": ["choice", "bool", "float", "int", "hex", "text"]}, {"pattern": "^(integer|string)$"}]}
template.json
value
The constant value to be assigned to the symbol.
{"type": "string"}
template.json
format
This property is not maintained and may be removed in the future. Use defaultFormat instead, or use 'guids' section.
{"deprecated": true, "deprecationMessage": "This property is not maintained and may be removed in the future. Use defaultFormat instead, or use 'guids' section.", "type": "string"}
template.json
defaultFormat
The format of guid to be generated. Accepts a single value from ('n', 'd', 'b', 'p', 'x') for lowercase output or ('N', 'D', 'B', 'P', 'X') for uppercase output. The formats are defined in Guid.ToString() method documentation.
{"type": "string"}
template.json
format
The format string to use when converting the date-time to a string representation.
{"type": "string"}
template.json
utc
If true, use UTC time. If false, use local time.
{"type": "boolean"}
template.json
low
An integer value indicating the low-end of the range to generate the random number in.
{"type": "integer"}
template.json
high
An integer value indicating the high-end of the range to generate the random number in. If not explicitly provided, defaults to int.MaxValue.
{"type": "integer"}
template.json
source
The name of a different parameter in the template configuration. A copy of its value will be used by this generator's regex to generate the value for this parameter. The value of the source parameter is not modified.
{"type": "string"}