schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
rustfmt.json
|
reorder_imports
|
Reorder import and extern crate statements alphabetically
[Documentation](https://rust-lang.github.io/rustfmt/#reorder_imports)
|
{"type": "boolean", "default": true, "enum": [true, false]}
|
rustfmt.json
|
reorder_modules
|
Reorder module statements alphabetically in group
[Documentation](https://rust-lang.github.io/rustfmt/#reorder_modules)
|
{"type": "boolean", "default": true, "enum": [true, false]}
|
rustfmt.json
|
report_fixme
|
Report all, none or unnumbered occurrences of FIXME in source file comments
[Documentation](https://rust-lang.github.io/rustfmt/#report_fixme)
### Unstable
This option requires Nightly Rust.
|
{"type": "string", "default": "Never", "enum": ["Always", "Unnumbered", "Never"]}
|
rustfmt.json
|
report_todo
|
Report all, none or unnumbered occurrences of TODO in source file comments
[Documentation](https://rust-lang.github.io/rustfmt/#report_todo)
### Unstable
This option requires Nightly Rust.
|
{"type": "string", "default": "Never", "enum": ["Always", "Unnumbered", "Never"]}
|
rustfmt.json
|
required_version
|
Require a specific version of rustfmt
[Documentation](https://rust-lang.github.io/rustfmt/#required_version)
### Unstable
This option requires Nightly Rust.
|
{"type": "string", "default": "1.4.38"}
|
rustfmt.json
|
single_line_if_else_max_width
|
Maximum line length for single line if-else expressions. A value of zero means always break if-else expressions.
[Documentation](https://rust-lang.github.io/rustfmt/#single_line_if_else_max_width)
|
{"type": "integer", "default": 50}
|
rustfmt.json
|
skip_children
|
Don't reformat out of line modules
[Documentation](https://rust-lang.github.io/rustfmt/#skip_children)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": false, "enum": [true, false]}
|
rustfmt.json
|
space_after_colon
|
Leave a space after the colon
[Documentation](https://rust-lang.github.io/rustfmt/#space_after_colon)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": true, "enum": [true, false]}
|
rustfmt.json
|
space_before_colon
|
Leave a space before the colon
[Documentation](https://rust-lang.github.io/rustfmt/#space_before_colon)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": false, "enum": [true, false]}
|
rustfmt.json
|
spaces_around_ranges
|
Put spaces around the .. and ..= range operators
[Documentation](https://rust-lang.github.io/rustfmt/#spaces_around_ranges)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": false, "enum": [true, false]}
|
rustfmt.json
|
struct_field_align_threshold
|
Align struct fields if their diffs fits within threshold
[Documentation](https://rust-lang.github.io/rustfmt/#struct_field_align_threshold)
### Unstable
This option requires Nightly Rust.
|
{"type": "integer", "default": 0}
|
rustfmt.json
|
struct_lit_single_line
|
Put small struct literals on a single line
[Documentation](https://rust-lang.github.io/rustfmt/#struct_lit_single_line)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": true, "enum": [true, false]}
|
rustfmt.json
|
struct_lit_width
|
Maximum width in the body of a struct lit before falling back to vertical formatting.
[Documentation](https://rust-lang.github.io/rustfmt/#struct_lit_width)
|
{"type": "integer", "default": 18}
|
rustfmt.json
|
struct_variant_width
|
Maximum width in the body of a struct variant before falling back to vertical formatting.
[Documentation](https://rust-lang.github.io/rustfmt/#struct_variant_width)
|
{"type": "integer", "default": 35}
|
rustfmt.json
|
tab_spaces
|
Number of spaces per tab
[Documentation](https://rust-lang.github.io/rustfmt/#tab_spaces)
|
{"type": "integer", "default": 4}
|
rustfmt.json
|
trailing_comma
|
How to handle trailing commas for lists
[Documentation](https://rust-lang.github.io/rustfmt/#trailing_comma)
### Unstable
This option requires Nightly Rust.
|
{"type": "string", "default": "Vertical", "enum": ["Always", "Never", "Vertical"]}
|
rustfmt.json
|
trailing_semicolon
|
Add trailing semicolon after break, continue and return
[Documentation](https://rust-lang.github.io/rustfmt/#trailing_semicolon)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": true, "enum": [true, false]}
|
rustfmt.json
|
type_punctuation_density
|
Determines if '+' or '=' are wrapped in spaces in the punctuation of types
[Documentation](https://rust-lang.github.io/rustfmt/#type_punctuation_density)
### Unstable
This option requires Nightly Rust.
|
{"type": "string", "default": "Wide", "enum": ["Compressed", "Wide"]}
|
rustfmt.json
|
unstable_features
|
Enables unstable features. Only available on nightly channel
[Documentation](https://rust-lang.github.io/rustfmt/#unstable_features)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": false, "enum": [true, false]}
|
rustfmt.json
|
use_field_init_shorthand
|
Use field initialization shorthand if possible
[Documentation](https://rust-lang.github.io/rustfmt/#use_field_init_shorthand)
|
{"type": "boolean", "default": false, "enum": [true, false]}
|
rustfmt.json
|
use_small_heuristics
|
Whether to use different formatting for items and expressions if they satisfy a heuristic notion of 'small'
[Documentation](https://rust-lang.github.io/rustfmt/#use_small_heuristics)
|
{"type": "string", "default": "Default", "enum": ["Off", "Max", "Default"]}
|
rustfmt.json
|
use_try_shorthand
|
Replace uses of the try! macro by the ? shorthand
[Documentation](https://rust-lang.github.io/rustfmt/#use_try_shorthand)
|
{"type": "boolean", "default": false, "enum": [true, false]}
|
rustfmt.json
|
version
|
Version of formatting rules
[Documentation](https://rust-lang.github.io/rustfmt/#version)
### Unstable
This option requires Nightly Rust.
|
{"type": "string", "default": "One", "enum": ["One", "Two"]}
|
rustfmt.json
|
where_single_line
|
Force where-clauses to be on a single line
[Documentation](https://rust-lang.github.io/rustfmt/#where_single_line)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": false, "enum": [true, false]}
|
rustfmt.json
|
wrap_comments
|
Break comments to fit on the line
[Documentation](https://rust-lang.github.io/rustfmt/#wrap_comments)
### Unstable
This option requires Nightly Rust.
|
{"type": "boolean", "default": false, "enum": [true, false]}
|
flagd-definitions.json
|
Defines flags for use in flagd, including typed variants and rules
|
{"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"flags": {"type": "object", "additionalProperties": false, "patternProperties": {"^.{1,}$": {"oneOf": [{}, {}, {}, {}]}}}}, "$defs": {"flag": {"type": "object", "properties": {"state": {"type": "string", "enum": ["ENABLED", "DISABLED"]}, "defaultVariant": {"type": "string"}, "targeting": {"type": "object"}}, "required": ["state", "defaultVariant"]}, "booleanVariants": {"type": "object", "properties": {"variants": {"type": "object", "additionalProperties": false, "patternProperties": {"^.{1,}$": {"type": "boolean"}}, "default": {"on": true, "off": false}}}}, "stringVariants": {"type": "object", "properties": {"variants": {"type": "object", "additionalProperties": false, "patternProperties": {"^.{1,}$": {"type": "string"}}}}}, "numberVariants": {"type": "object", "properties": {"variants": {"type": "object", "additionalProperties": false, "patternProperties": {"^.{1,}$": {"type": "number"}}}}}, "objectVariants": {"type": "object", "properties": {"variants": {"type": "object", "additionalProperties": false, "patternProperties": {"^.{1,}$": {"type": "object"}}}}}, "booleanFlag": {"allOf": [{}, {}]}, "stringFlag": {"allOf": [{}, {}]}, "numberFlag": {"allOf": [{}, {}]}, "objectFlag": {"allOf": [{}, {}]}}}
|
|
flagd-definitions.json
|
^.{1,}$
|
A flag associated with boolean values
|
{}
|
flagd-definitions.json
|
^.{1,}$
|
A flag associated with string values
|
{}
|
flagd-definitions.json
|
^.{1,}$
|
A flag associated with numeric values
|
{}
|
flagd-definitions.json
|
^.{1,}$
|
A flag associated with arbitrary object values
|
{}
|
flagd-definitions.json
|
flag
|
Base object for all flags
|
{"type": "object", "properties": {"state": {"type": "string", "enum": ["ENABLED", "DISABLED"]}, "defaultVariant": {"type": "string"}, "targeting": {"type": "object"}}, "required": ["state", "defaultVariant"]}
|
flagd-definitions.json
|
state
|
Indicates whether the flag is functional. Disabled flags are treated as if they don't exist
|
{"type": "string", "enum": ["ENABLED", "DISABLED"]}
|
flagd-definitions.json
|
defaultVariant
|
The variant to serve if no dynamic targeting applies
|
{"type": "string"}
|
flagd-definitions.json
|
targeting
|
JsonLogic expressions to be used for dynamic evaluation. The "context" is passed as the data. Rules must resolve one of the defined variants, or the "defaultVariant" will be used.
|
{"type": "object"}
|
kode-ci-build-1.0.0.json
|
name
|
ํ๊ฒฝ๋ณ์ ์ด๋ฆ
|
{"type": "string", "pattern": "[a-zA-Z_][a-zA-Z_0-9]*"}
|
kode-ci-build-1.0.0.json
|
value
|
ํ๊ฒฝ๋ณ์ ๊ฐ
|
{"type": "string"}
|
kode-ci-build-1.0.0.json
|
branch
|
ํ๊ฒฝ๋ณ์๋ฅผ ์ ์ฉํ ๋ธ๋์น
|
{"type": "string"}
|
kode-ci-build-1.0.0.json
|
build-condition
|
๋น๋ ์คํ ์กฐ๊ฑด
|
{"type": "object", "additionalProperties": true, "properties": {"push": {"type": "object", "properties": {"branches": {"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}, "tags": {"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}, "commit": {"type": "object", "properties": {"message-contain": {"type": "string"}}}}, "additionalProperties": false}, "pull-request": {"type": "object", "properties": {"branches": {"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}, "types": {"type": "array", "items": {"type": "string", "enum": ["assigned", "unassigned", "labeled", "unlabeled", "opened", "edited", "closed", "reopened", "synchronize", "converted_to_draft", "ready_for_review", "locked", "unlocked", "review_requested", "review_request_removed", "auto_merge_enabled", "auto_merge_disabled"]}, "default": ["opened", "synchronize", "reopened"], "minItems": 1}, "commit": {"type": "object", "properties": {"message-contain": {"type": "string"}}}}, "additionalProperties": false}}}
|
kode-ci-build-1.0.0.json
|
push
|
Push ์ด๋ฒคํธ์ ์ํ ์กฐ๊ฑด
|
{"type": "object", "properties": {"branches": {"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}, "tags": {"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}, "commit": {"type": "object", "properties": {"message-contain": {"type": "string"}}}}, "additionalProperties": false}
|
kode-ci-build-1.0.0.json
|
branches
|
Push ๋น๋์ branch ์กฐ๊ฑด
|
{"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}
|
kode-ci-build-1.0.0.json
|
tags
|
Push ๋น๋์ tag ์กฐ๊ฑด
|
{"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}
|
kode-ci-build-1.0.0.json
|
message-contain
|
commit message์ ์ฃผ์ด์ง ๋ฌธ์์ด์ ํฌํจํ ๊ฒฝ์ฐ๋ง ๋น๋
|
{"type": "string"}
|
kode-ci-build-1.0.0.json
|
pull-request
|
PullRequest ์ด๋ฒคํธ์ ์ํ ์กฐ๊ฑด
|
{"type": "object", "properties": {"branches": {"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}, "types": {"type": "array", "items": {"type": "string", "enum": ["assigned", "unassigned", "labeled", "unlabeled", "opened", "edited", "closed", "reopened", "synchronize", "converted_to_draft", "ready_for_review", "locked", "unlocked", "review_requested", "review_request_removed", "auto_merge_enabled", "auto_merge_disabled"]}, "default": ["opened", "synchronize", "reopened"], "minItems": 1}, "commit": {"type": "object", "properties": {"message-contain": {"type": "string"}}}}, "additionalProperties": false}
|
kode-ci-build-1.0.0.json
|
branches
|
PR๋น๋์ target ๋ธ๋์น ์กฐ๊ฑด
|
{"type": "array", "items": {"type": "string"}, "default": ["*"], "minItems": 1}
|
kode-ci-build-1.0.0.json
|
types
|
PR ์ด๋ฒคํธ ํ์
|
{"type": "array", "items": {"type": "string", "enum": ["assigned", "unassigned", "labeled", "unlabeled", "opened", "edited", "closed", "reopened", "synchronize", "converted_to_draft", "ready_for_review", "locked", "unlocked", "review_requested", "review_request_removed", "auto_merge_enabled", "auto_merge_disabled"]}, "default": ["opened", "synchronize", "reopened"], "minItems": 1}
|
kode-ci-build-1.0.0.json
|
commit
|
Commit ์กฐ๊ฑด
|
{"type": "object", "properties": {"message-contain": {"type": "string"}}}
|
kode-ci-build-1.0.0.json
|
message-contain
|
์ปค๋ฐ ๋ฉ์์ง๊ฐ ์ง์ ๋ ๋ฌธ์์ด์ ํฌํจํ๋ฉด ๋น๋๋ฅผ ์คํ
|
{"type": "string"}
|
kode-ci-build-1.0.0.json
|
name
|
์์
์ด๋ฆ
|
{"type": "string", "pattern": "[a-zA-Z0-9_-]{1,40}"}
|
kode-ci-build-1.0.0.json
|
execute
|
์คํํ ๋ช
๋ น ๋ชฉ๋ก(์์ฐจ์คํ)
|
{"type": "array", "items": {"type": "string", "default": "echo \"hello world\""}, "minItems": 1}
|
kode-ci-build-1.0.0.json
|
set-proxy
|
์ฌ๋ด Proxy ์ค์
|
{"type": "array", "default": ["shell"], "items": {"type": "string", "enum": ["shell", "gradle", "npm", "docker", "yarn", "maven"]}}
|
kode-ci-build-1.0.0.json
|
no-proxy-hosts
|
proxy ์์ธํ host ๋ชฉ๋ก (ip, ip/mask, domain)
|
{"type": "array", "default": [], "items": {"type": "string"}}
|
kode-ci-build-1.0.0.json
|
artifacts
|
artifact๋ก ์ง์ ํ ํ์ผ ํน์ ๋๋ ํ ๋ฆฌ ๊ฒฝ๋ก
|
{"type": "array", "default": [], "items": {"type": "string"}}
|
kode-ci-build-1.0.0.json
|
caches
|
๋ค์ ๋น๋์ ์๋ ํฅ์์ ์ํ ์บ์ ์ค์
|
{"type": "array", "default": [], "items": {"type": "object", "additionalProperties": false, "properties": {"key": {"type": "string", "pattern": "^[a-zA-Z0-9_-]{1,40}$"}, "path": {"type": "string"}}}}
|
kode-ci-build-1.0.0.json
|
key
|
์บ์ ์๋ณํค (repo scope)
|
{"type": "string", "pattern": "^[a-zA-Z0-9_-]{1,40}$"}
|
kode-ci-build-1.0.0.json
|
path
|
์บ์ํ ํ์ผ ํน์ ๋๋ ํ ๋ฆฌ ๊ฒฝ๋ก
|
{"type": "string"}
|
kode-ci-build-1.0.0.json
|
max-execution-time
|
์ต๋ ์คํ์๊ฐ (e.g. '1h', '100m')
|
{"type": "string", "default": "1h", "pattern": "^([0-9]+)(h|m)$"}
|
kode-ci-build-1.0.0.json
|
post-process
|
๋น๋ ํ์ฒ๋ฆฌ๊ธฐ ์ค์
|
{"type": "object", "additionalProperties": true, "properties": {"app-center-release": {}, "git-ops": {}}}
|
kode-ci-build-1.0.0.json
|
run-on
|
์คํํ๊ฒฝ ์ค์
|
{"type": "object", "additionalProperties": false, "properties": {"image": {"type": "string", "default": "+@basebox", "pattern": "^(\\+@[a-z0-9-]+|\\+\\/[a-z0-9-]+|[a-z0-9/.-]+)(:[a-z0-9\\-]+)?$"}, "resources": {"anyOf": [{"type": "string", "default": "small", "enum": ["small", "medium", "large", "xlarge", "xxlarge", "xxxlarge"]}, {"type": "object", "required": ["cpu", "memory"], "properties": {"cpu": {"anyOf": [{"type": "string", "default": "1.0", "pattern": "^[0-9]+(\\.[0-9]+)?$"}, {"type": "number", "default": 1}], "default": "1.0"}, "memory": {"type": "string", "default": "1Gi", "pattern": "^([0-9]+)(Mi|Gi)$"}}}]}, "use": {"type": "array", "default": [], "items": {"type": "string", "enum": ["docker", "mobil-keystore"]}}, "platform": {"type": "string", "default": "k8s", "enum": ["k8s", "macos"]}}}
|
kode-ci-build-1.0.0.json
|
image
|
docker image
|
{"type": "string", "default": "+@basebox", "pattern": "^(\\+@[a-z0-9-]+|\\+\\/[a-z0-9-]+|[a-z0-9/.-]+)(:[a-z0-9\\-]+)?$"}
|
kode-ci-build-1.0.0.json
|
resources
|
์คํ์ ์ฌ์ฉํ ๋ฆฌ์์ค ํฌ๊ธฐ ์ค์
|
{"anyOf": [{"type": "string", "default": "small", "enum": ["small", "medium", "large", "xlarge", "xxlarge", "xxxlarge"]}, {"type": "object", "required": ["cpu", "memory"], "properties": {"cpu": {"anyOf": [{"type": "string", "default": "1.0", "pattern": "^[0-9]+(\\.[0-9]+)?$"}, {"type": "number", "default": 1}], "default": "1.0"}, "memory": {"type": "string", "default": "1Gi", "pattern": "^([0-9]+)(Mi|Gi)$"}}}]}
|
kode-ci-build-1.0.0.json
|
cpu
|
cpu (e.g. '1.0')
|
{"anyOf": [{"type": "string", "default": "1.0", "pattern": "^[0-9]+(\\.[0-9]+)?$"}, {"type": "number", "default": 1}], "default": "1.0"}
|
kode-ci-build-1.0.0.json
|
memory
|
memory (e.g. '500Mi', '2Gi').
|
{"type": "string", "default": "1Gi", "pattern": "^([0-9]+)(Mi|Gi)$"}
|
kode-ci-build-1.0.0.json
|
use
|
์คํํ๊ฒฝ์์ ์ฌ์ฉํ ๊ธฐ๋ฅ ์ค์
|
{"type": "array", "default": [], "items": {"type": "string", "enum": ["docker", "mobil-keystore"]}}
|
kode-ci-build-1.0.0.json
|
platform
|
์คํํ๊ฒฝ ํ๋ซํผ
|
{"type": "string", "default": "k8s", "enum": ["k8s", "macos"]}
|
kode-ci-build-1.0.0.json
|
app-center-release
|
artifact๋ก ์ง์ ๋ .apk/.ipa ํ์ผ์ appcenter๋ก ๋ฆด๋ฆฌ์ฆ
|
{"type": "object", "required": ["app-id", "release-group-tag"], "additionalProperties": true, "properties": {"app-id": {"type": "string", "pattern": "[a-zA-Z0-9_-]+"}, "release-group-tag": {"type": "string", "pattern": "[a-zA-Z0-9_-]+"}, "testers": {"type": "array", "items": {"type": "string", "pattern": "^(@[.a-zA-Z0-9_-]+|@@[.a-zA-Z0-9_-]+|corp@@[.a-zA-Z0-9_-]+)$"}}}}
|
kode-ci-build-1.0.0.json
|
app-id
|
App ID
|
{"type": "string", "pattern": "[a-zA-Z0-9_-]+"}
|
kode-ci-build-1.0.0.json
|
release-group-tag
|
๋ฆด๋ฆฌ์ฆ ๊ทธ๋ฃน์ ๋ํ Tag ์ง์
|
{"type": "string", "pattern": "[a-zA-Z0-9_-]+"}
|
kode-ci-build-1.0.0.json
|
testers
|
ํ
์คํฐ ์ง์ (@<user>, @@<group>, corp@@<corpcode>)
|
{"type": "array", "items": {"type": "string", "pattern": "^(@[.a-zA-Z0-9_-]+|@@[.a-zA-Z0-9_-]+|corp@@[.a-zA-Z0-9_-]+)$"}}
|
kode-ci-build-1.0.0.json
|
items
|
@<user>, @@<group>, corp@@<corpcode>
|
{"type": "string", "pattern": "^(@[.a-zA-Z0-9_-]+|@@[.a-zA-Z0-9_-]+|corp@@[.a-zA-Z0-9_-]+)$"}
|
kode-ci-build-1.0.0.json
|
git-ops
|
GitOps ๋ฐฉ์์ K8S Deploy๋ฅผ ์ํ manifest repo ์
๋ฐ์ดํธ
|
{"type": "object", "required": ["manifest", "update"], "additionalProperties": false, "properties": {"manifest": {"type": "object", "required": ["repo", "branch"], "additionalProperties": false, "properties": {"repo": {"type": "string", "pattern": "[.a-zA-Z0-9_-]+/[.a-zA-Z0-9_-]+"}, "branch": {"type": "string", "pattern": "[a-zA-Z0-9/_.@-]+"}}}, "update": {"type": "array", "items": {"type": "string"}, "minItems": 1}, "with-artifacts": {"type": "array", "items": {"type": "string"}}}}
|
kode-ci-build-1.0.0.json
|
manifest
|
K8S manifest repo ์ ๋ณด
|
{"type": "object", "required": ["repo", "branch"], "additionalProperties": false, "properties": {"repo": {"type": "string", "pattern": "[.a-zA-Z0-9_-]+/[.a-zA-Z0-9_-]+"}, "branch": {"type": "string", "pattern": "[a-zA-Z0-9/_.@-]+"}}}
|
kode-ci-build-1.0.0.json
|
repo
|
repo('owner/repo')
|
{"type": "string", "pattern": "[.a-zA-Z0-9_-]+/[.a-zA-Z0-9_-]+"}
|
kode-ci-build-1.0.0.json
|
branch
|
branch
|
{"type": "string", "pattern": "[a-zA-Z0-9/_.@-]+"}
|
kode-ci-build-1.0.0.json
|
update
|
manifest repo๋ฅผ ์
๋ฐ์ดํธํ๊ธฐ ์ํ ๋ช
๋ น
|
{"type": "array", "items": {"type": "string"}, "minItems": 1}
|
kode-ci-build-1.0.0.json
|
with-artifacts
|
๋น๋ ์์
์์ manifest reop๋ก ์ ๋ฌํ artifacts
|
{"type": "array", "items": {"type": "string"}}
|
kode-ci-build-1.0.0.json
|
on
|
์คํ ์กฐ๊ฑด
|
{}
|
kode-ci-build-1.0.0.json
|
jobs
|
์คํํ ์์
๋ค: ๋
๋ฆฝ์ ์ผ๋ก ๋ณ๋ ฌ ์คํ๋จ
|
{"type": "array", "items": {}}
|
kode-ci-build-1.0.0.json
|
environment
|
ํ๊ฒฝ๋ณ์
|
{"type": "array", "items": {}}
|
mboats-config-0.2.json
|
appId
|
5-7 letter capitalized abbreviated word representing the application
|
{"type": "string", "default": "MBOAPPL", "pattern": "^[\\w]{5,7}$"}
|
mboats-config-0.2.json
|
appName
|
Application Name
|
{"type": "string", "default": "MBO Application"}
|
mboats-config-0.2.json
|
mode
|
The mode of test execution.
|
{"type": "string", "default": "local", "enum": ["local", "remote"]}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.