schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
cargo.json | example | Files located under the [examples directory](https://doc.rust-lang.org/cargo/guide/project-layout.html) are example uses of the functionality provided by the library. When compiled, they are placed in the[ target/debug/examples directory](https://doc.rust-lang.org/cargo/guide/build-cache.html).
Examples can use the public API of the package's library. They are also linked with the [dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) and [dev-dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) defined in Cargo.toml.
By default, examples are executable binaries (with a `main()` function). You
can specify the [`crate-type` field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-crate-type-field) to make an example
be compiled as a library:
```toml
[[example]]
name = "foo"
crate-type = ["staticlib"]
```
You can run individual executable examples with the [`cargo run`](https://doc.rust-lang.org/cargo/commands/cargo-run.html) command with
the `--example <example-name>` option. Library examples can be built with
[`cargo build`](https://doc.rust-lang.org/cargo/commands/cargo-build.html) with the `--example <example-name>` option. [`cargo install`](https://doc.rust-lang.org/cargo/commands/cargo-install.html)
with the `--example <example-name>` option can be used to copy executable
binaries to a common location. Examples are compiled by [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) by
default to protect them from bit-rotting. Set [the `test`
field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-test-field) to `true` if you have `#[test]` functions in the
example that you want to run with [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html).
| {"type": "array", "items": {"x-taplo": {"links": {"key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#examples"}}}, "x-taplo": {"links": {"key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#examples"}}} |
cargo.json | items | Files located under the [examples directory](https://doc.rust-lang.org/cargo/guide/project-layout.html) are example uses of the functionality provided by the library. When compiled, they are placed in the[ target/debug/examples directory](https://doc.rust-lang.org/cargo/guide/build-cache.html).
Examples can use the public API of the package's library. They are also linked with the [dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) and [dev-dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) defined in Cargo.toml.
By default, examples are executable binaries (with a `main()` function). You
can specify the [`crate-type` field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-crate-type-field) to make an example
be compiled as a library:
```toml
[[example]]
name = "foo"
crate-type = ["staticlib"]
```
You can run individual executable examples with the [`cargo run`](https://doc.rust-lang.org/cargo/commands/cargo-run.html) command with
the `--example <example-name>` option. Library examples can be built with
[`cargo build`](https://doc.rust-lang.org/cargo/commands/cargo-build.html) with the `--example <example-name>` option. [`cargo install`](https://doc.rust-lang.org/cargo/commands/cargo-install.html)
with the `--example <example-name>` option can be used to copy executable
binaries to a common location. Examples are compiled by [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) by
default to protect them from bit-rotting. Set [the `test`
field](https://doc.rust-lang.org/cargo/reference/cargo-targets.html#the-test-field) to `true` if you have `#[test]` functions in the
example that you want to run with [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html).
| {"x-taplo": {"links": {"key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#examples"}}} |
cargo.json | features | Cargo supports features to allow expression of:
* conditional compilation options (usable through `cfg` attributes);
* optional dependencies, which enhance a package, but are not required; and
* clusters of optional dependencies, such as `postgres-all`, that would include the
`postgres` package, the `postgres-macros` package, and possibly other packages
(such as development-time mocking libraries, debugging tools, etc.).
A feature of a package is either an optional dependency, or a set of other
features.
| {"type": "object", "additionalProperties": {"type": "array", "items": {"type": "string"}}, "x-taplo": {"links": {"key": "https://doc.rust-lang.org/cargo/reference/features.html"}}} |
cargo.json | patch | The `[patch]` section of `Cargo.toml` can be used to override dependencies
with other copies. The syntax is similar to the
[`[dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) section.
| {"type": "object", "additionalProperties": {"type": "object", "additionalProperties": {}}, "x-taplo": {"links": {"key": "https://doc.rust-lang.org/cargo/reference/overriding-dependencies.html#the-patch-section"}}} |
cargo.json | test | Files located under the [`tests` directory](https://doc.rust-lang.org/cargo/guide/project-layout.html) are integration
tests. When you run [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html), Cargo will compile each of these files as
a separate crate, and execute them.
Integration tests can use the public API of the package's library. They are
also linked with the [`[dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) and
[`[dev-dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) defined in `Cargo.toml`.
If you want to share code among multiple integration tests, you can place it
in a separate module such as `tests/common/mod.rs` and then put `mod common;`
in each test to import it.
Each integration test results in a separate executable binary, and [`cargo
test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) will run them serially. In some cases this can be inefficient, as it
can take longer to compile, and may not make full use of multiple CPUs when
running the tests. If you have a lot of integration tests, you may want to
consider creating a single integration test, and split the tests into multiple
modules. The libtest harness will automatically find all of the `#[test]`
annotated functions and run them in parallel. You can pass module names to
[`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) to only run the tests within that module.
Binary targets are automatically built if there is an integration test. This
allows an integration test to execute the binary to exercise and test its
behavior. The `CARGO_BIN_EXE_<name>` [environment variable](https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates) is set when the
integration test is built so that it can use the [`env` macro](https://doc.rust-lang.org/std/macro.env.html) to locate the
executable. | {"type": "array", "items": {"x-taplo": {"links": {"key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#integration-tests"}}}, "x-taplo": {"links": {"key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#integration-tests"}}} |
cargo.json | items | Files located under the [`tests` directory](https://doc.rust-lang.org/cargo/guide/project-layout.html) are integration
tests. When you run [`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html), Cargo will compile each of these files as
a separate crate, and execute them.
Integration tests can use the public API of the package's library. They are
also linked with the [`[dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html) and
[`[dev-dependencies]`](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#development-dependencies) defined in `Cargo.toml`.
If you want to share code among multiple integration tests, you can place it
in a separate module such as `tests/common/mod.rs` and then put `mod common;`
in each test to import it.
Each integration test results in a separate executable binary, and [`cargo
test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) will run them serially. In some cases this can be inefficient, as it
can take longer to compile, and may not make full use of multiple CPUs when
running the tests. If you have a lot of integration tests, you may want to
consider creating a single integration test, and split the tests into multiple
modules. The libtest harness will automatically find all of the `#[test]`
annotated functions and run them in parallel. You can pass module names to
[`cargo test`](https://doc.rust-lang.org/cargo/commands/cargo-test.html) to only run the tests within that module.
Binary targets are automatically built if there is an integration test. This
allows an integration test to execute the binary to exercise and test its
behavior. The `CARGO_BIN_EXE_<name>` [environment variable](https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates) is set when the
integration test is built so that it can use the [`env` macro](https://doc.rust-lang.org/std/macro.env.html) to locate the
executable. | {"x-taplo": {"links": {"key": "https://doc.rust-lang.org/cargo/reference/cargo-targets.html#integration-tests"}}} |
datalogic-scan2deploy-android.json | Schema to validate Android JSON files given as input to DL-Config to generate Scan2Deploy barcodes | {"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {}, "properties": {"layout": {"type": "object", "properties": {"enroll": {"type": "boolean", "default": false, "examples": [true]}}}, "padlock": {"type": "object", "properties": {"valid-until": {"type": "string", "default": "20991231235959", "examples": ["20991231235959"]}, "key": {"type": "string", "default": "", "examples": ["ihavenomouthandimustscream"]}, "state": {"type": "string", "enum": ["locked", "unlocked"], "default": "undefined", "examples": ["locked"]}, "hide-from-launcher": {"type": "boolean", "default": false, "examples": [false]}}}, "global": {"type": "object", "properties": {"target-path": {"type": "string", "examples": ["/mnt/sdcard/airwatch"]}, "install-path": {"type": "string", "examples": ["/mnt/sdcard/airwatch"]}, "update-path": {"type": "string", "examples": ["/mnt/sdcard/airwatch"]}, "purge-target-path": {"type": "boolean", "default": true, "examples": [true]}, "auto-scan": {"type": "boolean", "default": false, "examples": [true]}, "download-preinstalled": {"type": "boolean", "default": false, "examples": [false]}, "script": {"type": ["string", "array"], "items": {"type": "string", "default": "", "examples": ["[Install]", "INSTALL /sdcard/Download/fa.apk", "[Post-Install]", "SHELL am start -a android.intent.action.MAIN -n com.example.mchew.fakeapp/.MainActivity"]}, "default": "", "examples": ["setup.s"]}, "action": {"type": "string", "enum": ["none", "close", "enterprise-reset", "factory-reset", "reset"], "default": "none", "examples": ["close"]}, "backup-to-enterprise": {"type": "boolean", "default": false, "examples": [true]}}}, "settings": {"type": "object", "properties": {"date-time": {"type": "string", "default": "null", "examples": ["Thu, 19 Apr 2018 07:51:37 GMT"]}, "auto-time": {"type": "boolean", "default": true, "examples": [false]}, "auto-time-zone": {"type": "boolean", "default": true, "examples": [false]}, "auto-time-server": {"type": "string", "default": "null", "examples": ["pool.ntp.org"]}, "debug-bridge": {"type": "boolean", "default": true, "examples": [false]}, "lock-screen": {"type": "boolean", "default": true, "examples": [false]}, "status-bar": {"type": "boolean", "default": true, "examples": [false]}, "navigation-bar": {"type": "boolean", "default": true, "examples": [true]}, "charge-threshold": {"type": "integer", "default": 5, "examples": [0], "minimum": 0, "maximum": 100}, "usb-profile": {"type": "string", "enum": ["NONE", "BOTH", "DATA", "CHARGE"], "default": "BOTH", "examples": ["NONE"]}, "usb-function": {"type": "string", "enum": ["MTP", "PTP", "CHARGING"], "default": "CHARGING", "examples": ["CHARGING"]}}}, "network": {"type": "object", "properties": {"essid": {"type": "string", "default": "tsunami", "examples": ["TESTTKIP"]}, "hidden": {"type": "boolean", "default": false, "examples": [false]}, "mode": {"type": "string", "enum": ["open", "wep-40", "wep-104", "wpa-psk", "wpa2-psk", "wpa-eap", "wpa2-eap"], "default": "open", "examples": ["wpa-psk"]}, "mode-key": {"type": "string", "default": "", "examples": ["datalogic"]}, "mode-key-encrypted": {"type": "boolean", "default": false, "examples": [false]}, "eap-method": {"type": "string", "enum": ["none", "peap", "tls", "ttls", "pwd", "sim", "aka", "aka-prime"], "default": "none", "examples": ["none"]}, "eap-phase2": {"type": "string", "enum": ["none", "pap", "mschap", "mschapv2", "gtc"], "default": "none", "examples": ["none"]}, "eap-identity": {"type": "string", "default": "", "examples": [""]}, "eap-anonymous-identity": {"type": "string", "default": "", "examples": [""]}, "eap-password": {"type": "string", "default": "", "examples": [""]}, "eap-password-encrypted": {"type": "boolean", "default": false, "examples": [false]}, "eap-certificate": {"type": "string", "default": "", "examples": [""]}, "proxy-host": {"type": "string", "default": "", "examples": [""]}, "proxy-port": {"type": "integer", "default": 0, "examples": [0], "minimum": 0, "maximum": 65535}, "purge": {"type": "boolean", "default": true, "examples": [true]}, "reconfigure": {"type": "boolean", "default": true, "examples": [false]}, "sleep-policy": {"type": "integer", "default": 2, "examples": [2], "minimum": 0, "maximum": 2}, "frequency-band": {"type": "string", "enum": ["auto", "5ghz", "2ghz"], "default": "auto", "examples": ["auto"]}, "save-to-file": {"type": "string", "default": "", "examples": [""]}, "ephemeral": {"type": "boolean", "default": true, "examples": [false]}, "wait-for-connection": {"type": "boolean", "default": true, "examples": [true]}}, "if": {"properties": {"mode": {"enum": ["wpa-psk", "wpa2-psk", "wep-40", "wep-104"]}}}, "then": {"required": ["mode-key"]}}, "deployment": {"type": "object", "properties": {"scheme": {"type": "string", "enum": ["http", "https"], "default": "http", "examples": ["http"]}, "host": {"type": "string", "examples": ["172.19.0.77"]}, "port": {"type": "integer", "default": 80, "examples": [8080], "minimum": 0, "maximum": 65535}, "path": {"type": "string", "default": "", "examples": ["/airwatch.zip"]}, "fetch-timeout": {"type": "integer", "default": 60000, "examples": [60000]}, "check-timeout": {"type": "integer", "default": 1000, "examples": [1000]}, "working-archive": {"type": "string", "default": "/mnt/sdcard/scan2deploy.archive", "examples": ["/mnt/sdcard/target.zip"]}, "skip-inflation": {"type": "boolean", "default": false, "examples": [true]}}, "required": ["host"]}, "blobs": {"type": "array", "items": {"type": "object", "required": ["file", "content"], "properties": {"file": {"type": "string", "examples": ["/mnt/sdcard/airwatch/credentials.bin"]}, "content": {"type": "string", "examples": ["fd09B1iL/k4jRWrjrP0/sO44teY+B3UafBLsMsCEqd1KOv6b6JYBXLVv70FmHdZhIVoEOQvHu7O4PUJStpZQ+4PYjPqCO+NQr81M7GOF421Ke8L2u4EYyqDE5qXfLy2shEgaRwRpr2f35/38WZkh6edyiWZQJjyLeZcuI7WiaJPpw7Jcw7ye7mb7Rl+ePNFmfvUrpeRFtN+5kUsx/SbB1v0gDyOOuoep"]}}}}}, "type": "object"} | |
datalogic-scan2deploy-android.json | padlock | Section used to configure the staging locking feature | {"type": "object", "properties": {"valid-until": {"type": "string", "default": "20991231235959", "examples": ["20991231235959"]}, "key": {"type": "string", "default": "", "examples": ["ihavenomouthandimustscream"]}, "state": {"type": "string", "enum": ["locked", "unlocked"], "default": "undefined", "examples": ["locked"]}, "hide-from-launcher": {"type": "boolean", "default": false, "examples": [false]}}} |
datalogic-scan2deploy-android.json | valid-until | Specifies the expiration date of the barcode sequence. Device date must be synchronized/configured for expiration date to work properly. | {"type": "string", "default": "20991231235959", "examples": ["20991231235959"]} |
datalogic-scan2deploy-android.json | key | Padlock key to be used. If value doesn't match the device, the barcode is rejected. Empty string means no key. | {"type": "string", "default": "", "examples": ["ihavenomouthandimustscream"]} |
datalogic-scan2deploy-android.json | state | Configures the padlock state | {"type": "string", "enum": ["locked", "unlocked"], "default": "undefined", "examples": ["locked"]} |
datalogic-scan2deploy-android.json | hide-from-launcher | Indicates if Scan2Deploy should be disabled after staging is complete. Once disabled, factory reset required to reenable. | {"type": "boolean", "default": false, "examples": [false]} |
datalogic-scan2deploy-android.json | global | Section used to configure application scoped settings | {"type": "object", "properties": {"target-path": {"type": "string", "examples": ["/mnt/sdcard/airwatch"]}, "install-path": {"type": "string", "examples": ["/mnt/sdcard/airwatch"]}, "update-path": {"type": "string", "examples": ["/mnt/sdcard/airwatch"]}, "purge-target-path": {"type": "boolean", "default": true, "examples": [true]}, "auto-scan": {"type": "boolean", "default": false, "examples": [true]}, "download-preinstalled": {"type": "boolean", "default": false, "examples": [false]}, "script": {"type": ["string", "array"], "items": {"type": "string", "default": "", "examples": ["[Install]", "INSTALL /sdcard/Download/fa.apk", "[Post-Install]", "SHELL am start -a android.intent.action.MAIN -n com.example.mchew.fakeapp/.MainActivity"]}, "default": "", "examples": ["setup.s"]}, "action": {"type": "string", "enum": ["none", "close", "enterprise-reset", "factory-reset", "reset"], "default": "none", "examples": ["close"]}, "backup-to-enterprise": {"type": "boolean", "default": false, "examples": [true]}}} |
datalogic-scan2deploy-android.json | target-path | Base destination folder where any archive/fill will be inflated/written. Default is device internal SD-card root | {"type": "string", "examples": ["/mnt/sdcard/airwatch"]} |
datalogic-scan2deploy-android.json | install-path | Folder where the application expects auto-installed/auto-updated APKs to be found. Default is value specified in 'target path'. | {"type": "string", "examples": ["/mnt/sdcard/airwatch"]} |
datalogic-scan2deploy-android.json | update-path | Folder where the application expects auto-updated OTA packages to be found. Default is value specified in 'target path'. | {"type": "string", "examples": ["/mnt/sdcard/airwatch"]} |
datalogic-scan2deploy-android.json | purge-target-path | Indicates if target specified in 'target-path' needs to be purged (deleted) prior to inflation of the deployment archive | {"type": "boolean", "default": true, "examples": [true]} |
datalogic-scan2deploy-android.json | auto-scan | Enables/Disables the auto-update of APKs and OTA packages | {"type": "boolean", "default": false, "examples": [true]} |
datalogic-scan2deploy-android.json | download-preinstalled | Used to force the downgrade of pre-installed application (even System app), if required | {"type": "boolean", "default": false, "examples": [false]} |
datalogic-scan2deploy-android.json | script | A string specifying the absolute/relative path of a file, or a JSON array of strings describing the file content line-by-line. The script file will be interpreted last in staging process. | {"type": ["string", "array"], "items": {"type": "string", "default": "", "examples": ["[Install]", "INSTALL /sdcard/Download/fa.apk", "[Post-Install]", "SHELL am start -a android.intent.action.MAIN -n com.example.mchew.fakeapp/.MainActivity"]}, "default": "", "examples": ["setup.s"]} |
datalogic-scan2deploy-android.json | action | Specifies the final action performed by the application at the end of the staging process. | {"type": "string", "enum": ["none", "close", "enterprise-reset", "factory-reset", "reset"], "default": "none", "examples": ["close"]} |
datalogic-scan2deploy-android.json | backup-to-enterprise | Activates the enterprise backup persistence for the staging data, resulting in both the staging script and archive being copied to the enterprise partition | {"type": "boolean", "default": false, "examples": [true]} |
datalogic-scan2deploy-android.json | settings | Section used to control inner device settings that typically need to be changed from the Android defaults | {"type": "object", "properties": {"date-time": {"type": "string", "default": "null", "examples": ["Thu, 19 Apr 2018 07:51:37 GMT"]}, "auto-time": {"type": "boolean", "default": true, "examples": [false]}, "auto-time-zone": {"type": "boolean", "default": true, "examples": [false]}, "auto-time-server": {"type": "string", "default": "null", "examples": ["pool.ntp.org"]}, "debug-bridge": {"type": "boolean", "default": true, "examples": [false]}, "lock-screen": {"type": "boolean", "default": true, "examples": [false]}, "status-bar": {"type": "boolean", "default": true, "examples": [false]}, "navigation-bar": {"type": "boolean", "default": true, "examples": [true]}, "charge-threshold": {"type": "integer", "default": 5, "examples": [0], "minimum": 0, "maximum": 100}, "usb-profile": {"type": "string", "enum": ["NONE", "BOTH", "DATA", "CHARGE"], "default": "BOTH", "examples": ["NONE"]}, "usb-function": {"type": "string", "enum": ["MTP", "PTP", "CHARGING"], "default": "CHARGING", "examples": ["CHARGING"]}}} |
datalogic-scan2deploy-android.json | date-time | String representation in RFC-1123 format of the date to be set | {"type": "string", "default": "null", "examples": ["Thu, 19 Apr 2018 07:51:37 GMT"]} |
datalogic-scan2deploy-android.json | auto-time | Controls the 'Date & Time' automatic date-time adjustment setting | {"type": "boolean", "default": true, "examples": [false]} |
datalogic-scan2deploy-android.json | auto-time-zone | Controls the 'Date & Time' automatic time-zone adjustment setting | {"type": "boolean", "default": true, "examples": [false]} |
datalogic-scan2deploy-android.json | auto-time-server | Address of the NTP server to be used for date-time synchronization | {"type": "string", "default": "null", "examples": ["pool.ntp.org"]} |
datalogic-scan2deploy-android.json | debug-bridge | Controls the state of 'Android Debug Bridge' | {"type": "boolean", "default": true, "examples": [false]} |
datalogic-scan2deploy-android.json | lock-screen | Controls the state of Android's lock-screen, requiring the user to swipe the display to unlock the device | {"type": "boolean", "default": true, "examples": [false]} |
datalogic-scan2deploy-android.json | status-bar | Controls the display of the top status-bar. Note: hiding the status-bar will make notification disappear. | {"type": "boolean", "default": true, "examples": [false]} |
datalogic-scan2deploy-android.json | navigation-bar | Controls the display of the bottom navigation-bar | {"type": "boolean", "default": true, "examples": [true]} |
datalogic-scan2deploy-android.json | charge-threshold | Indicates the charge threshold a battery exhausted device needs to reach to automatically boot when recharging | {"type": "integer", "default": 5, "examples": [0], "minimum": 0, "maximum": 100} |
datalogic-scan2deploy-android.json | usb-profile | USB communication profile in use | {"type": "string", "enum": ["NONE", "BOTH", "DATA", "CHARGE"], "default": "BOTH", "examples": ["NONE"]} |
datalogic-scan2deploy-android.json | usb-function | USB communication function in use | {"type": "string", "enum": ["MTP", "PTP", "CHARGING"], "default": "CHARGING", "examples": ["CHARGING"]} |
datalogic-scan2deploy-android.json | network | Section used to configure the device Wi-Fi network | {"type": "object", "properties": {"essid": {"type": "string", "default": "tsunami", "examples": ["TESTTKIP"]}, "hidden": {"type": "boolean", "default": false, "examples": [false]}, "mode": {"type": "string", "enum": ["open", "wep-40", "wep-104", "wpa-psk", "wpa2-psk", "wpa-eap", "wpa2-eap"], "default": "open", "examples": ["wpa-psk"]}, "mode-key": {"type": "string", "default": "", "examples": ["datalogic"]}, "mode-key-encrypted": {"type": "boolean", "default": false, "examples": [false]}, "eap-method": {"type": "string", "enum": ["none", "peap", "tls", "ttls", "pwd", "sim", "aka", "aka-prime"], "default": "none", "examples": ["none"]}, "eap-phase2": {"type": "string", "enum": ["none", "pap", "mschap", "mschapv2", "gtc"], "default": "none", "examples": ["none"]}, "eap-identity": {"type": "string", "default": "", "examples": [""]}, "eap-anonymous-identity": {"type": "string", "default": "", "examples": [""]}, "eap-password": {"type": "string", "default": "", "examples": [""]}, "eap-password-encrypted": {"type": "boolean", "default": false, "examples": [false]}, "eap-certificate": {"type": "string", "default": "", "examples": [""]}, "proxy-host": {"type": "string", "default": "", "examples": [""]}, "proxy-port": {"type": "integer", "default": 0, "examples": [0], "minimum": 0, "maximum": 65535}, "purge": {"type": "boolean", "default": true, "examples": [true]}, "reconfigure": {"type": "boolean", "default": true, "examples": [false]}, "sleep-policy": {"type": "integer", "default": 2, "examples": [2], "minimum": 0, "maximum": 2}, "frequency-band": {"type": "string", "enum": ["auto", "5ghz", "2ghz"], "default": "auto", "examples": ["auto"]}, "save-to-file": {"type": "string", "default": "", "examples": [""]}, "ephemeral": {"type": "boolean", "default": true, "examples": [false]}, "wait-for-connection": {"type": "boolean", "default": true, "examples": [true]}}, "if": {"properties": {"mode": {"enum": ["wpa-psk", "wpa2-psk", "wep-40", "wep-104"]}}}, "then": {"required": ["mode-key"]}} |
datalogic-scan2deploy-android.json | essid | Wireless network ESSID | {"type": "string", "default": "tsunami", "examples": ["TESTTKIP"]} |
datalogic-scan2deploy-android.json | hidden | Indicates if the wireless network is using a hidden ESSID | {"type": "boolean", "default": false, "examples": [false]} |
datalogic-scan2deploy-android.json | mode | Wireless connection mode | {"type": "string", "enum": ["open", "wep-40", "wep-104", "wpa-psk", "wpa2-psk", "wpa-eap", "wpa2-eap"], "default": "open", "examples": ["wpa-psk"]} |
datalogic-scan2deploy-android.json | mode-key | Wireless network key, if needed | {"type": "string", "default": "", "examples": ["datalogic"]} |
datalogic-scan2deploy-android.json | mode-key-encrypted | Indicates if 'mode-key' is written in plain-text or encrypted with a custom encryption algorithm | {"type": "boolean", "default": false, "examples": [false]} |
datalogic-scan2deploy-android.json | eap-method | Configures the EAP authentication method | {"type": "string", "enum": ["none", "peap", "tls", "ttls", "pwd", "sim", "aka", "aka-prime"], "default": "none", "examples": ["none"]} |
datalogic-scan2deploy-android.json | eap-phase2 | Configures the EAP phase 2 authentication method | {"type": "string", "enum": ["none", "pap", "mschap", "mschapv2", "gtc"], "default": "none", "examples": ["none"]} |
datalogic-scan2deploy-android.json | eap-identity | Indicates the EAP identity | {"type": "string", "default": "", "examples": [""]} |
datalogic-scan2deploy-android.json | eap-anonymous-identity | Indicates the EAP anonymous identity, used as the unencrypted identity with certain EAP types | {"type": "string", "default": "", "examples": [""]} |
datalogic-scan2deploy-android.json | eap-password | EAP password, if needed | {"type": "string", "default": "", "examples": [""]} |
datalogic-scan2deploy-android.json | eap-password-encrypted | Indicates if the 'eap-password' is encrypted with a custom encryption algorithm | {"type": "boolean", "default": false, "examples": [false]} |
datalogic-scan2deploy-android.json | eap-certificate | Base64 representation of the EAP certificate to use | {"type": "string", "default": "", "examples": [""]} |
datalogic-scan2deploy-android.json | proxy-host | Server name or IP address of the proxy to be used for HTTP/HTTPS communications | {"type": "string", "default": "", "examples": [""]} |
datalogic-scan2deploy-android.json | proxy-port | Server IP port of the proxy for HTTP/HTTPS communications | {"type": "integer", "default": 0, "examples": [0], "minimum": 0, "maximum": 65535} |
datalogic-scan2deploy-android.json | purge | Indicates if any currently configured wireless network needs to be removed. Can be useful to avoid profile roaming. | {"type": "boolean", "default": true, "examples": [true]} |
datalogic-scan2deploy-android.json | reconfigure | If true, will reconfigure any existing and matching network. If false, will leave existing network untouched. Setting used when 'purge' is set to false. | {"type": "boolean", "default": true, "examples": [false]} |
datalogic-scan2deploy-android.json | sleep-policy | Wireless sleep policy for Android's Settings.Global parameter (0-WIFI_SLEEP_POLICY_DEFAULT, 1-WIFI_SLEEP_POLICY_NEVER_WHILE_PLUGGED, 2-WIFI_SLEEP_POLICY_NEVER) | {"type": "integer", "default": 2, "examples": [2], "minimum": 0, "maximum": 2} |
datalogic-scan2deploy-android.json | frequency-band | Controls the frequency bands supported by the device | {"type": "string", "enum": ["auto", "5ghz", "2ghz"], "default": "auto", "examples": ["auto"]} |
datalogic-scan2deploy-android.json | save-to-file | Absolute path to the file where the current network configuration will be saved, empty string indicates network configuration won't be serialized to a file | {"type": "string", "default": "", "examples": [""]} |
datalogic-scan2deploy-android.json | ephemeral | If true, wireless connection profile will be used during staging process, then deleted after staging. If false, wireless connection profile will still be present after staging process. | {"type": "boolean", "default": true, "examples": [false]} |
datalogic-scan2deploy-android.json | wait-for-connection | Indicates whether a valid Wi-Fi connection has to be waited once the network configuration is complete. Can be useful when device needs to be configured but a valid Wi-Fi connection is not ready yet. | {"type": "boolean", "default": true, "examples": [true]} |
datalogic-scan2deploy-android.json | deployment | Section can be used to download a ZIP archive from a server and inflate it to the 'target-path' folder | {"type": "object", "properties": {"scheme": {"type": "string", "enum": ["http", "https"], "default": "http", "examples": ["http"]}, "host": {"type": "string", "examples": ["172.19.0.77"]}, "port": {"type": "integer", "default": 80, "examples": [8080], "minimum": 0, "maximum": 65535}, "path": {"type": "string", "default": "", "examples": ["/airwatch.zip"]}, "fetch-timeout": {"type": "integer", "default": 60000, "examples": [60000]}, "check-timeout": {"type": "integer", "default": 1000, "examples": [1000]}, "working-archive": {"type": "string", "default": "/mnt/sdcard/scan2deploy.archive", "examples": ["/mnt/sdcard/target.zip"]}, "skip-inflation": {"type": "boolean", "default": false, "examples": [true]}}, "required": ["host"]} |
datalogic-scan2deploy-android.json | scheme | Deployment download scheme to use | {"type": "string", "enum": ["http", "https"], "default": "http", "examples": ["http"]} |
datalogic-scan2deploy-android.json | host | Host-name or internet-protocol address of the server from which the resource is to be fetched | {"type": "string", "examples": ["172.19.0.77"]} |
datalogic-scan2deploy-android.json | port | TCP/IP port to be used to contact the server | {"type": "integer", "default": 80, "examples": [8080], "minimum": 0, "maximum": 65535} |
datalogic-scan2deploy-android.json | path | Path to the server resource to download, complete with query string if needed | {"type": "string", "default": "", "examples": ["/airwatch.zip"]} |
datalogic-scan2deploy-android.json | fetch-timeout | The timeout value used when fetching resource from host | {"type": "integer", "default": 60000, "examples": [60000]} |
datalogic-scan2deploy-android.json | check-timeout | The timeout value used when attempting to reach the host server | {"type": "integer", "default": 1000, "examples": [1000]} |
datalogic-scan2deploy-android.json | working-archive | String representation of the archive path-file name, once downloaded | {"type": "string", "default": "/mnt/sdcard/scan2deploy.archive", "examples": ["/mnt/sdcard/target.zip"]} |
datalogic-scan2deploy-android.json | skip-inflation | Instructs the application not to inflate the deployment archive once downloaded, can be useful to speed the OTA update process up | {"type": "boolean", "default": false, "examples": [true]} |
datalogic-scan2deploy-android.json | blobs | Section used to transfer binary data to newly created file on device | {"type": "array", "items": {"type": "object", "required": ["file", "content"], "properties": {"file": {"type": "string", "examples": ["/mnt/sdcard/airwatch/credentials.bin"]}, "content": {"type": "string", "examples": ["fd09B1iL/k4jRWrjrP0/sO44teY+B3UafBLsMsCEqd1KOv6b6JYBXLVv70FmHdZhIVoEOQvHu7O4PUJStpZQ+4PYjPqCO+NQr81M7GOF421Ke8L2u4EYyqDE5qXfLy2shEgaRwRpr2f35/38WZkh6edyiWZQJjyLeZcuI7WiaJPpw7Jcw7ye7mb7Rl+ePNFmfvUrpeRFtN+5kUsx/SbB1v0gDyOOuoep"]}}}} |
datalogic-scan2deploy-android.json | file | Path to the file to be created. Can be either absolute or relative to the global/target-path parameter value. During file de-serialization, any required (parent) path is automatically created. | {"type": "string", "examples": ["/mnt/sdcard/airwatch/credentials.bin"]} |
datalogic-scan2deploy-android.json | content | Base64 representation of the actual file content | {"type": "string", "examples": ["fd09B1iL/k4jRWrjrP0/sO44teY+B3UafBLsMsCEqd1KOv6b6JYBXLVv70FmHdZhIVoEOQvHu7O4PUJStpZQ+4PYjPqCO+NQr81M7GOF421Ke8L2u4EYyqDE5qXfLy2shEgaRwRpr2f35/38WZkh6edyiWZQJjyLeZcuI7WiaJPpw7Jcw7ye7mb7Rl+ePNFmfvUrpeRFtN+5kUsx/SbB1v0gDyOOuoep"]} |
vs-nesting.json | addedExtension | If this exist, files with an additional extension should nest under file without additional extension. Example: file.html.css nest under file.html | {"type": "object", "maxProperties": 0} |
vs-nesting.json | pathSegment | If this exists, files with "extra" extension part in the file name should nest under files without it, but having same name and last extension. Example: file.min.js nest under file.js. | {"type": "object", "additionalProperties": false, "properties": {"add": {"properties": {".*": {"type": "array", "uniqueItems": true, "items": {}}}}, "remove": {"oneOf": [{"type": "object", "additionalProperties": {"type": "array", "uniqueItems": true, "items": {}}}, {"enum": ["*"]}]}}} |
vs-nesting.json | add | Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'. | {"properties": {".*": {"type": "array", "uniqueItems": true, "items": {}}}} |
vs-nesting.json | remove | Remove specified nesting rules if they are merged from higher level nesting settings. | {"oneOf": [{"type": "object", "additionalProperties": {"type": "array", "uniqueItems": true, "items": {}}}, {"enum": ["*"]}]} |
vs-nesting.json | extensionToExtension | Nest files with specific extensions under other specific extensions | {"additionalProperties": false, "properties": {"add": {"allOf": [{}]}, "remove": {"oneOf": [{}, {"enum": ["*"]}]}}} |
vs-nesting.json | add | Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'. | {"allOf": [{}]} |
vs-nesting.json | remove | Remove specified nesting rules if they are merged from higher level nesting settings. | {"oneOf": [{}, {"enum": ["*"]}]} |
vs-nesting.json | fileToFile | Nest specific file names under other specific file names | {"additionalProperties": false, "properties": {"add": {"allOf": [{}]}, "remove": {"oneOf": [{}, {"enum": ["*"]}]}}} |
vs-nesting.json | add | Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'. | {"allOf": [{}]} |
vs-nesting.json | remove | Remove specified nesting rules if they are merged from higher level nesting settings. | {"oneOf": [{}, {"enum": ["*"]}]} |
vs-nesting.json | fileSuffixToExtension | Nest files with specified suffixes under files with specified extensions. | {"additionalProperties": false, "properties": {"add": {"allOf": [{}]}, "remove": {"oneOf": [{}, {"enum": ["*"]}]}}} |
vs-nesting.json | add | Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'. | {"allOf": [{}]} |
vs-nesting.json | remove | Remove specified nesting rules if they are merged from higher level nesting settings. | {"oneOf": [{}, {"enum": ["*"]}]} |
vs-nesting.json | allExtensions | A greedy version of 'extensionToExtension' and has * as the only child key | {"type": "object", "additionalProperties": false, "properties": {"add": {"properties": {".*": {"type": "array", "uniqueItems": true, "items": {}}}}, "remove": {"oneOf": [{"type": "object", "properties": {".*": {"type": "array", "items": {}}}}, {"type": "string", "enum": ["*"]}]}}} |
vs-nesting.json | add | Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'. | {"properties": {".*": {"type": "array", "uniqueItems": true, "items": {}}}} |
vs-nesting.json | remove | Remove specified nesting rules if they are merged from higher level nesting settings. | {"oneOf": [{"type": "object", "properties": {".*": {"type": "array", "items": {}}}}, {"type": "string", "enum": ["*"]}]} |
vs-nesting.json | root | Determines if this is the root nesting config file and no further inheritance is required. | {"type": "boolean", "default": false} |
vs-nesting.json | dependentFileProviders | Contains a collection of nesting rule providers specified in the order to be applied. | {"type": "object", "properties": {"add": {"allOf": [{}]}, "remove": {"oneOf": [{}, {"enum": ["*"]}]}}} |
vs-nesting.json | add | Add nesting rules in the order to be applied by corresponding provider, where each rule entry has a form 'child: collection of potential parents'. | {"allOf": [{}]} |
vs-nesting.json | remove | Remove specified nesting rules if they are merged from higher level nesting settings. | {"oneOf": [{}, {"enum": ["*"]}]} |
minecraft-biome.json | Configuration file defining a biome for a data pack for Minecraft | {"$schema": "http://json-schema.org/draft-07/schema#", "definitions": {"spawner-options": {"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"type": {"type": "string"}, "weight": {"type": "integer", "minimum": 0}, "minCount": {"type": "integer", "minimum": 0}, "maxCount": {"type": "integer", "minimum": 0}}, "additionalProperties": false}}}, "properties": {"depth": {"type": "number"}, "scale": {"type": "number"}, "has_precipitation": {"type": "boolean"}, "category": {"type": "string", "enum": ["none", "taiga", "extreme_hills", "jungle", "mesa", "plains", "savanna", "icy", "the_end", "beach", "forest", "ocean", "desert", "river", "swamp", "mushroom", "nether"]}, "temperature": {"type": "number"}, "temperature_modifier": {"type": "string", "enum": ["none", "frozen"], "default": "none"}, "downfall": {"type": "number", "minimum": 0, "maximum": 1}, "player_spawn_friendly": {"type": "boolean"}, "creature_spawn_friendly": {"type": "number", "minimum": 0, "maximum": 1}, "effects": {"type": "object", "properties": {"fog_color": {"type": "integer"}, "foliage_color": {"type": "integer"}, "grass_color": {"type": "integer"}, "sky_color": {"type": "integer"}, "water_color": {"type": "integer"}, "water_fog_color": {"type": "integer"}, "grass_color_modifier": {"type": "string", "enum": ["none", "dark_forest", "swamp"], "default": "none"}, "particle": {"type": "object", "properties": {"probability": {"type": "number", "minimum": 0, "maximum": 1}, "options": {"type": "object", "properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"Name": {"type": "string", "minLength": 1}}, "additionalProperties": {}}}, "allOf": [{"if": {"properties": {"type": {"const": "item"}}}, "then": {"properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"Name": {"type": "string", "minLength": 1}}, "additionalProperties": {}}, "id": {"type": "string", "minLength": 1}, "Count": {"type": "integer", "minimum": 0}, "tag": {"type": "string", "minLength": 1}}, "additionalProperties": false}}, {"if": {"properties": {"type": {"const": "dust"}}}, "then": {"properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"Name": {"type": "string", "minLength": 1}}, "additionalProperties": {}}, "color": {"type": "array", "items": {"type": "number", "minimum": 0, "maximum": 1}, "minItems": 3, "maxItems": 3}, "scale": {"type": "number"}}, "additionalProperties": false}}, {"if": {"properties": {"type": {"const": "dust_color_transition"}}}, "then": {"properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"Name": {"type": "string", "minLength": 1}}, "additionalProperties": {}}, "fromColor": {"type": "array", "items": {"type": "number", "minimum": 0, "maximum": 1}, "minItems": 3, "maxItems": 3}, "toColor": {"type": "array", "items": {"type": "number", "minimum": 0, "maximum": 1}, "minItems": 3, "maxItems": 3}, "scale": {"type": "number"}}, "additionalProperties": false}}, {"if": {"properties": {"type": {"const": "sculk_charge"}}}, "then": {"properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"Name": {"type": "string", "minLength": 1}}, "additionalProperties": {}}, "roll": {"type": "number"}}, "additionalProperties": false}}, {"if": {"properties": {"type": {"const": "vibration"}}}, "then": {"properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"Name": {"type": "string", "minLength": 1}}, "additionalProperties": {}}, "destination": {"properties": {"type": {}, "y_offset": {"type": "number", "default": 0}}, "allOf": [{"if": {"properties": {"type": {"const": "block"}}}, "then": {"properties": {"type": {}, "y_offset": {"type": "number", "default": 0}, "pos": {"type": "array", "items": {"type": "integer"}, "minItems": 3, "maxItems": 3}}, "additionalProperties": false}}, {"if": {"properties": {"type": {"const": "entity"}}}, "then": {"properties": {"type": {}, "y_offset": {"type": "number", "default": 0}, "source_entity": {"type": "array", "items": {"type": "integer"}, "minItems": 4, "maxItems": 4}}, "additionalProperties": false}}]}, "arrival_in_ticks": {"type": "integer", "minimum": 0}}, "additionalProperties": false}}, {"if": {"properties": {"type": {"const": "shriek"}}}, "then": {"properties": {"type": {"type": "string"}, "value": {"type": "object", "properties": {"Name": {"type": "string", "minLength": 1}}, "additionalProperties": {}}, "delay": {"type": "integer"}}, "additionalProperties": false}}]}}, "additionalProperties": false}, "ambient_sound": {"type": "string"}, "mood_sound": {"type": "object", "properties": {"sound": {"type": "string"}, "tick_delay": {"type": "integer"}, "block_search_context": {"type": "integer"}, "offset": {"type": "integer"}}}, "additions_sound": {"type": "object", "properties": {"sound": {"type": "string"}, "tick_chance": {"type": "integer"}}}, "music": {"type": "object", "properties": {"sound": {"type": "string"}, "min_delay": {"type": "integer"}, "max_delay": {"type": "integer"}, "replace_current_music": {"type": "boolean"}}}}, "additionalProperties": false}, "surface_builder": {"type": "string"}, "carvers": {"type": "object", "properties": {"air": {"type": "array", "uniqueItems": true, "items": {"type": "string", "minLength": 1}}, "liquid": {"type": "array", "uniqueItems": true, "items": {"type": "string", "minLength": 1}}}, "additionalProperties": false}, "features": {"type": "array", "uniqueItems": true, "items": {"type": ["string", "array"]}}, "creature_spawn_probability": {"type": "number", "minimum": 0, "exclusiveMaximum": 1}, "starts": {"type": "array", "items": {"type": "string"}}, "spawners": {"type": "object", "properties": {"monster": {}, "creature": {}, "ambient": {}, "water_creature": {}, "underground_water_creature": {}, "water_ambient": {}, "misc": {}, "axolotls": {}}, "additionalProperties": false}, "spawn_costs": {"type": "object", "additionalProperties": {"type": "object", "properties": {"energy_budget": {"type": "number", "minimum": 0}, "charge": {"type": "number", "minimum": 0}}, "additionalProperties": false}}}, "type": "object"} | |
minecraft-biome.json | spawner-options | Spawner options for the current biome
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "array", "uniqueItems": true, "items": {"type": "object", "properties": {"type": {"type": "string"}, "weight": {"type": "integer", "minimum": 0}, "minCount": {"type": "integer", "minimum": 0}, "maxCount": {"type": "integer", "minimum": 0}}, "additionalProperties": false}} |
minecraft-biome.json | items | A spawner for the current biome
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "object", "properties": {"type": {"type": "string"}, "weight": {"type": "integer", "minimum": 0}, "minCount": {"type": "integer", "minimum": 0}, "maxCount": {"type": "integer", "minimum": 0}}, "additionalProperties": false} |
minecraft-biome.json | type | A mob namespaced entity for the current biome
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "string"} |
minecraft-biome.json | weight | A mod spawn factor for the current biome
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "integer", "minimum": 0} |
minecraft-biome.json | minCount | A minimum mob spawn in a pack for the current biome
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "integer", "minimum": 0} |
minecraft-biome.json | maxCount | A maximum mob spawn in a pack for the current biome
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "integer", "minimum": 0} |
minecraft-biome.json | depth | Used for terrain noise generation. Biomes with positive depth are considered land, biomes with negative depth are oceans
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "number"} |
minecraft-biome.json | scale | Used for terrain noise generation. Vertically stretches the terrain. Lower values produce flatter terrain
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "number"} |
minecraft-biome.json | has_precipitation | Controls if the current biome has precipitation | {"type": "boolean"} |
minecraft-biome.json | temperature | A temperature for the current biome
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "number"} |
minecraft-biome.json | temperature_modifier | A temperature modifier for the current biome
https://minecraft.fandom.com/wiki/Custom_biome | {"type": "string", "enum": ["none", "frozen"], "default": "none"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.