schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
3.0.schema.json | max_age | The value for the Cache-Control HTTP-header. Units: seconds | {"type": "integer", "default": 10} |
3.0.schema.json | bytes_range | Enable range requests: https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests | {"type": "boolean", "default": false} |
3.0.schema.json | BoltDB | BoltDB config section | {"type": "object", "properties": {"file": {"type": "string", "default": "rr.db"}, "permission": {"type": "integer", "default": "0777"}, "interval": {"type": "integer", "default": 60}}} |
3.0.schema.json | file | file name for the db | {"type": "string", "default": "rr.db"} |
3.0.schema.json | permission | Access permission for the DB file. | {"type": "integer", "default": "0777"} |
3.0.schema.json | interval | TTL keys check interval in seconds. It's safe to use 1 second here, but can be a little costly to performance | {"type": "integer", "default": 60} |
3.0.schema.json | Memcached | In-memory config section | {"type": "object", "properties": {"addr": {"type": "string", "default": "localhost:11211"}}} |
3.0.schema.json | addr | Address of the memcached node | {"type": "string", "default": "localhost:11211"} |
3.0.schema.json | Redis | Redis config section | {"type": "object", "properties": {"addrs": {"type": "array", "default": "localhost:6379"}, "master_name": {"type": "string", "default": null}, "username": {"type": "string", "default": null}, "password": {"type": "string", "default": null}, "db": {"type": "integer", "default": 0, "maximum": 10}, "sentinel_password": {"type": "string", "default": null}, "route_by_latency": {"type": "boolean", "default": false}, "route_randomly": {"type": "boolean", "default": false}, "dial_timeout": {}, "max_retries": {"type": "integer", "default": 1}, "min_retry_backoff": {"default": 0}, "max_retry_backoff": {"default": 0}, "pool_size": {"type": "integer", "default": 0}, "min_idle_conns": {"type": "integer", "default": 0}, "max_conn_age": {}, "read_timeout": {}, "write_timeout": {}, "pool_timeout": {}, "idle_timeout": {}, "idle_check_freq": {}, "read_only": {"type": "boolean", "default": false}}} |
3.0.schema.json | addrs | Redis server addresses | {"type": "array", "default": "localhost:6379"} |
3.0.schema.json | db | Redis db number | {"type": "integer", "default": 0, "maximum": 10} |
3.0.schema.json | dial_timeout | dial timeout | {} |
3.0.schema.json | Memory | In-memory config section | {"type": "object", "properties": {"interval": {"type": "integer", "default": 60}}} |
3.0.schema.json | interval | TTL keys check interval in seconds. It's safe to use 1 second here, but can be a little costly to performance | {"type": "integer", "default": 60} |
3.0.schema.json | Service | User defined service | {"type": "object", "properties": {"command": {"type": "string"}, "env": {"type": "object"}, "timeout_stop_sec": {"type": "integer", "default": 5}, "process_num": {"type": "integer", "default": 1}, "exec_timeout": {"type": "string"}, "remain_after_exit": {"type": "boolean", "default": false}, "restart_sec": {"type": "integer", "default": 30}}, "required": ["command"]} |
3.0.schema.json | command | Command to execute. Can be any command here which can be executed. | {"type": "string"} |
3.0.schema.json | env | Environment variables for the process | {"type": "object"} |
3.0.schema.json | timeout_stop_sec | Timeout for the process stop operation | {"type": "integer", "default": 5} |
3.0.schema.json | process_num | Number of copies (processes) to start per command | {"type": "integer", "default": 1} |
3.0.schema.json | exec_timeout | Allowed time before stop | {"type": "string"} |
3.0.schema.json | remain_after_exit | Remain process after exit. In other words, restart process after exit with any exit code | {"type": "boolean", "default": false} |
3.0.schema.json | restart_sec | Number of seconds to wait before process restart | {"type": "integer", "default": 30} |
3.0.schema.json | WorkersPool | Static pool with PHP workers | {"type": "object", "properties": {"debug": {"type": "boolean", "default": false}, "command": {"type": "string", "default": null}, "num_workers": {"type": "integer", "minimum": 0, "default": 0}, "max_jobs": {"type": "integer", "minimum": 0, "default": 0}, "allocate_timeout": {"default": "60s"}, "reset_timeout": {"default": "60s"}, "destroy_timeout": {"default": "60s"}, "supervisor": {"type": "object", "properties": {"watch_tick": {"default": "1s"}, "ttl": {"default": "0s"}, "idle_ttl": {"default": "0s"}, "max_worker_memory": {"type": "integer", "minimum": 0, "default": 0}, "exec_ttl": {"default": "0s"}}}}} |
3.0.schema.json | debug | Pool debug mode. Worker will be created right before RR passes request to it | {"type": "boolean", "default": false} |
3.0.schema.json | command | Command to use for the pool. Will override the server's command | {"type": "string", "default": null} |
3.0.schema.json | num_workers | How many worker processes will be started. Zero (or nothing) means the number of logical CPUs | {"type": "integer", "minimum": 0, "default": 0} |
3.0.schema.json | max_jobs | Maximal count of worker executions. Zero (or nothing) means no limit | {"type": "integer", "minimum": 0, "default": 0} |
3.0.schema.json | allocate_timeout | Timeout for worker allocation. Zero means the default limit - 60s | {"default": "60s"} |
3.0.schema.json | reset_timeout | Timeout for the pool.Reset operation (./rr reset). Zero means the default limit - 60s | {"default": "60s"} |
3.0.schema.json | destroy_timeout | Timeout for worker destroying before process killing. Zero means the default limit - 60s | {"default": "60s"} |
3.0.schema.json | supervisor | Supervisor is used to control http workers | {"type": "object", "properties": {"watch_tick": {"default": "1s"}, "ttl": {"default": "0s"}, "idle_ttl": {"default": "0s"}, "max_worker_memory": {"type": "integer", "minimum": 0, "default": 0}, "exec_ttl": {"default": "0s"}}} |
3.0.schema.json | watch_tick | How often to check the state of the workers | {"default": "1s"} |
3.0.schema.json | ttl | Maximum time worker is allowed to live (soft limit). Zero means no limit | {"default": "0s"} |
3.0.schema.json | idle_ttl | How long worker can spend in IDLE mode after first using (soft limit). Zero means no limit | {"default": "0s"} |
3.0.schema.json | max_worker_memory | Maximal worker memory usage in megabytes (soft limit). Zero means no limit | {"type": "integer", "minimum": 0, "default": 0} |
3.0.schema.json | exec_ttl | Maximal job lifetime (hard limit). Zero means no limit | {"default": "0s"} |
3.0.schema.json | TCPServers | TCP server | {"type": "object", "properties": {"addr": {"type": "string", "pattern": "^[0-9a-zA-Z_.-]+:[0-9]{1,5}$"}, "delimiter": {"type": "string", "default": "\r\n"}, "read_buf_size": {"type": "integer", "minimum": 1, "maximum": 100, "default": 1}}, "required": ["addr"]} |
3.0.schema.json | addr | Address to listen | {"type": "string", "pattern": "^[0-9a-zA-Z_.-]+:[0-9]{1,5}$"} |
3.0.schema.json | delimiter | Data packets delimiter. Every send should end either with EOF or with the delimiter | {"type": "string", "default": "\r\n"} |
3.0.schema.json | read_buf_size | Chunks that RR uses to read the data. In MB. If you expect big payloads on a TCP server, to reduce `read` syscalls, would be a good practice to use a fairly big enough buffer | {"type": "integer", "minimum": 1, "maximum": 100, "default": 1} |
3.0.schema.json | Duration | Time duration | {"type": "string", "pattern": "^[0-9]+[ms]|[s,h]", "examples": ["10h", "1m", "1h", "30s", "300ms"]} |
3.0.schema.json | HostAndPortWithTCP | Host and port with tcp:// prefix | {"type": "string", "pattern": "^(tcp://[0-9a-zA-Z_.-]+|):[0-9]{1,5}$", "examples": ["tcp://127.0.0.1:443"]} |
3.0.schema.json | HostAndPort | Host and port | {"type": "string", "pattern": "^([0-9a-zA-Z_.-]+|):[0-9]{1,5}$", "examples": ["127.0.0.1:443", ":8080"]} |
3.0.schema.json | LogMode | Logging mode | {"type": "string", "enum": ["development", "production", "raw"]} |
3.0.schema.json | LogLevel | Logging level | {"type": "string", "enum": ["debug", "info", "warn", "error", "panic"]} |
3.0.schema.json | LogEncoding | Encoding format | {"type": "string", "enum": ["console", "json"]} |
3.0.schema.json | Hashmap | Hashmap | {"type": "object", "patternProperties": {"^[a-zA-Z0-9._-]+$": {"type": "string", "examples": ["Any header value"]}}, "additionalProperties": false} |
3.0.schema.json | Bucket | Hashmap with floats | {"type": "object", "patternProperties": {"[+-]?([0-9]*[.])?[0-9]+": {"type": "number", "examples": [1.1]}}, "additionalProperties": false} |
3.0.schema.json | NATS_J | NATS jobs driver | {"type": "object", "properties": {"addr": {"type": "string", "default": "demo.nats.io"}}} |
3.0.schema.json | addr | NATS server address | {"type": "string", "default": "demo.nats.io"} |
3.0.schema.json | KAFKA_J | Kafka jobs driver | {"type": "object", "properties": {"brokers": {"type": "array", "items": {"type": "string", "enum": ["127.0.0.1:9092", "127.0.0.1:9002"]}}, "sasl": {"properties": {"mechanism": {"type": "string", "items": {"type": "string", "enum": ["aws_msk_iam", "plain", "SCRAM-SHA-256", "SCRAM-SHA-512"]}}, "username": {"type": "string", "default": null}, "password": {"type": "string", "default": null}, "nonce": {"type": "string", "default": null}, "is_token": {"type": "boolean", "default": false}, "zid": {"type": "string", "default": null}, "access_key": {"type": "string", "default": null}, "secret_key": {"type": "string", "default": null}, "session_token": {"type": "string", "default": null}, "user_agent": {"type": "string", "default": null}}}}} |
3.0.schema.json | brokers | Kafka broker addresses | {"type": "array", "items": {"type": "string", "enum": ["127.0.0.1:9092", "127.0.0.1:9002"]}} |
3.0.schema.json | sasl | Mechanism used for the authentication | {"properties": {"mechanism": {"type": "string", "items": {"type": "string", "enum": ["aws_msk_iam", "plain", "SCRAM-SHA-256", "SCRAM-SHA-512"]}}, "username": {"type": "string", "default": null}, "password": {"type": "string", "default": null}, "nonce": {"type": "string", "default": null}, "is_token": {"type": "boolean", "default": false}, "zid": {"type": "string", "default": null}, "access_key": {"type": "string", "default": null}, "secret_key": {"type": "string", "default": null}, "session_token": {"type": "string", "default": null}, "user_agent": {"type": "string", "default": null}}} |
3.0.schema.json | mechanism | Kafka brokers | {"type": "string", "items": {"type": "string", "enum": ["aws_msk_iam", "plain", "SCRAM-SHA-256", "SCRAM-SHA-512"]}} |
3.0.schema.json | username | Username for authentication | {"type": "string", "default": null} |
3.0.schema.json | password | Password for authentication | {"type": "string", "default": null} |
3.0.schema.json | nonce | Optional for the SHA auth types. Empty by default | {"type": "string", "default": null} |
3.0.schema.json | is_token | If true, suffixes the tokenauth=true extra attribute to the initial authentication message. Set this to true if the user and pass are from a delegation token. Optional for the SHA auth types. Empty by default | {"type": "boolean", "default": false} |
3.0.schema.json | zid | Zid is an optional authorization ID to use in authenticating | {"type": "string", "default": null} |
3.0.schema.json | access_key | AWS Access key ID | {"type": "string", "default": null} |
3.0.schema.json | secret_key | AWS Secret Access key ID | {"type": "string", "default": null} |
3.0.schema.json | session_token | SessionToken, if non-empty, is a session / security token to use for authentication. See the following link for more details: https://docs.aws.amazon.com/STS/latest/APIReference/welcome.html | {"type": "string", "default": null} |
3.0.schema.json | user_agent | UserAgent is the user agent to for the client to use when connecting to Kafka, overriding the default franz-go/<runtime.Version()>/<hostname>. Setting a UserAgent allows authorizing based on the aws:UserAgent condition key; see the following link for more details: https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_condition-keys.html#condition-keys-useragent | {"type": "string", "default": null} |
3.0.schema.json | BoltDB_J | Boltdb jobs driver | {"type": "object", "properties": {"permissions": {"type": "integer", "default": "0777"}}} |
meta.json | standalone | Set to true for old standalone roles, or false for new collection roles. | {"type": "boolean"} |
vtestunit-schema.json | full | Json schema version for the test unit configuration file. Acceptance criteria: equal major version, less/equal minor and patch version. | {"$schema": "http://json-schema.org/draft-07/schema#", "pattern": "^1.0.0$", "type": "string", "examples": ["1.0.0"]} |
vtestunit-schema.json | full | Include a different file (similar to #include of the c preprocessor). The order of includes does not matter. Circular / multiple includes are resolved correctly. | {"$schema": "http://json-schema.org/draft-07/schema#", "oneOf": [{}, {"type": "array", "items": {}}], "examples": ["my_include.yaml", ["my_include.yaml", "my_other_include.json"]]} |
vtestunit-schema.json | full | Miscellaneous test unit information can be defined. After the execution they are available in the test report. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"caption": {"type": "string", "examples": ["My caption"]}, "version": {"type": "string", "examples": ["v1.0"]}, "test-designer": {"type": "array", "items": {"type": "object"}, "examples": [[{"prename": "Max", "surname": "S.", "department": "Department A"}, {"prename": "Linda", "department": "Department B"}]]}, "additional-information": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "examples": ["A descriptive name"]}}}, "examples": [[{"name": "SUT", "customerName": "Customer A"}]]}}, "examples": [{"caption": "This is a caption", "version": "v1.0.0", "test-designers": [{"name": "Max", "department": "PND123"}, {"name": "Lisa", "department": "PND345"}], "additional-information": [{"name": "Software Under Test", "CustomerName": "My customer", "SpareNumber": " 012345", "SRSBasleine": "4.1"}]}]} |
vtestunit-schema.json | caption | Caption of the test unit. | {"type": "string", "examples": ["My caption"]} |
vtestunit-schema.json | description | Description of the test unit. | {"type": "string", "examples": ["My description"]} |
vtestunit-schema.json | version | Version of the test unit. | {"type": "string", "examples": ["v1.0"]} |
vtestunit-schema.json | test-designer | Information on the test developer(s). A sequence of key-value pairs that can be freely selected. | {"type": "array", "items": {"type": "object"}, "examples": [[{"prename": "Max", "surname": "S.", "department": "Department A"}, {"prename": "Linda", "department": "Department B"}]]} |
vtestunit-schema.json | additional-information | Additional key-value pairs. One key 'name' is required, the other keys can be freely selected. | {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string", "examples": ["A descriptive name"]}}}, "examples": [[{"name": "SUT", "customerName": "Customer A"}]]} |
vtestunit-schema.json | examples | This is a description | {"caption": "This is a caption", "version": "v1.0.0", "test-designers": [{"name": "Max", "department": "PND123"}, {"name": "Lisa", "department": "PND345"}], "additional-information": [{"name": "Software Under Test", "CustomerName": "My customer", "SpareNumber": " 012345", "SRSBasleine": "4.1"}]} |
vtestunit-schema.json | full | Source artifacts of the test unit. Absolute and relative paths are allowed. Relative path specifications are resolved relative to the vtestunit.yaml file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "items": {"oneOf": [{"type": "object", "additionalProperties": false, "properties": {"source-file-path": {"type": "string", "anyOf": [{"pattern": "^.*\\.[Cc][Aa][Nn]$"}, {"pattern": "^.*\\.[Cc][Aa][Nn][Ee][Nn][Cc][Rr]$"}, {"pattern": "^.*\\.vtesttree.[yY][aA][mM][lL]$"}], "examples": ["Source1.can", "Source2.canencr", "path/to/my/Source3.vtesttree.yaml"]}}}, {"type": "object", "additionalProperties": false, "properties": {"capl-library-path": {"examples": ["path/to/my.dll"]}}}, {"type": "object", "additionalProperties": false, "properties": {"modeling-library-path": {"type": "string", "pattern": "^.*\\.[vV][mM][oO][dD][uU][lL][eE]$", "examples": ["path/to/my.vmodule"]}}}]}} |
vtestunit-schema.json | source-file-path | Path to a source file (.can/.canencr/.vtesttree.yaml). | {"type": "string", "anyOf": [{"pattern": "^.*\\.[Cc][Aa][Nn]$"}, {"pattern": "^.*\\.[Cc][Aa][Nn][Ee][Nn][Cc][Rr]$"}, {"pattern": "^.*\\.vtesttree.[yY][aA][mM][lL]$"}], "examples": ["Source1.can", "Source2.canencr", "path/to/my/Source3.vtesttree.yaml"]} |
vtestunit-schema.json | capl-library-path | Path to a CAPL library file (.dll). | {"examples": ["path/to/my.dll"]} |
vtestunit-schema.json | modeling-library-path | Path to a modeling library file (.vmodule). | {"type": "string", "pattern": "^.*\\.[vV][mM][oO][dD][uU][lL][eE]$", "examples": ["path/to/my.vmodule"]} |
datalogic-scan2deploy-ce.json | Schema to validate Windows CE 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": {}}, "global": {"type": "object", "properties": {"target-path": {"type": "string", "default": "\\FlashDisk", "examples": ["\\FlashDisk"]}, "action": {"type": "string", "enum": ["stay", "close", "warm-boot", "cold-boot", "clean-boot"], "default": "cold-boot", "examples": ["warm-boot"]}, "ping-timeout": {"type": "integer", "default": 1000, "examples": [1000], "minimum": 1, "maximum": 4000}}}, "settings": {"type": "object", "properties": {"usb-function": {"type": "string", "enum": ["active-sync-usb", "active-sync-com", "usblan", "mass-storage"], "default": "active-sync-usb", "examples": ["usblan"]}}}, "network": {"type": "object", "properties": {"profile": {"type": "string", "default": "datalogic", "examples": ["my_fast"]}, "essid": {"type": "string", "default": "tsunami", "examples": ["eapfast"]}, "mode": {"type": "string", "enum": ["open", "wep-40", "wep-104", "wpa-psk", "wpa2-psk", "wpa-tkip", "wpa2-aes"], "default": "open", "examples": ["wpa2-aes"]}, "mode-key": {"type": "string", "default": "", "examples": ["0123456789"], "minLength": 5, "maxLength": 63}, "index": {"type": "integer", "default": 1, "examples": [1], "minimum": 1, "maximum": 4}, "eap-method": {"type": "string", "enum": ["none", "peap", "tls", "ttls", "fast", "leap"], "default": "none", "examples": ["fast"]}, "eap-username": {"type": "string", "default": "", "examples": ["eapfast"]}, "eap-password": {"type": "string", "default": "", "examples": ["1234567890"]}, "credentials-type": {"type": "string", "enum": ["password", "token", "certificate", "unknown"], "default": "password", "examples": ["password"]}, "credentials-source": {"type": "string", "enum": ["user", "logon", "profile", "auto", "unknown"], "default": "user", "examples": ["profile"]}, "validate-server": {"type": "boolean", "default": false, "examples": [false]}, "connect-to-server": {"type": "boolean", "default": false, "examples": [false]}, "connect-to-server-names": {"type": "string", "default": "", "examples": [""]}, "server-cert-name": {"type": "string", "default": "", "examples": [""]}, "outer-identity": {"type": "string", "default": "", "examples": [""]}, "fast-reconnect": {"type": "boolean", "default": false, "examples": [false]}, "inner-method": {"type": "string", "enum": ["eap-tls", "eap-MsChapV2", "eap-gtc"], "default": "eap-tls", "examples": ["eap-MsChapV2"]}, "auto-pac": {"type": "boolean", "default": false, "examples": [true]}, "pac-file-path": {"type": "string", "default": "", "examples": [""]}, "pac-aid-info": {"type": "string", "default": "", "examples": [""]}}, "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", "default": "", "examples": ["10.1.20.123"]}, "port": {"type": "integer", "default": 80, "examples": [8080], "minimum": 0, "maximum": 65535}, "path": {"type": "string", "default": "", "examples": ["target.zip"]}}, "required": ["host"]}, "shell": {"type": "object", "required": ["cmds"], "properties": {"cmds": {"type": "array", "items": {"type": "object", "required": ["app-name"], "properties": {"app-name": {"type": "string", "default": "", "examples": ["\\windows\\dldxu.exe"]}, "args": {"type": "string", "default": "", "examples": ["\\FlashDisk\\target\\config.dxu"]}}}}}}}, "type": "object"} |
|
datalogic-scan2deploy-ce.json | global | Section used to configure application scoped settings | {"type": "object", "properties": {"target-path": {"type": "string", "default": "\\FlashDisk", "examples": ["\\FlashDisk"]}, "action": {"type": "string", "enum": ["stay", "close", "warm-boot", "cold-boot", "clean-boot"], "default": "cold-boot", "examples": ["warm-boot"]}, "ping-timeout": {"type": "integer", "default": 1000, "examples": [1000], "minimum": 1, "maximum": 4000}}} |
datalogic-scan2deploy-ce.json | target-path | Base destination folder where archive/folder will be inflated | {"type": "string", "default": "\\FlashDisk", "examples": ["\\FlashDisk"]} |
datalogic-scan2deploy-ce.json | action | Specifies final action performed by the application at the end of the staging process | {"type": "string", "enum": ["stay", "close", "warm-boot", "cold-boot", "clean-boot"], "default": "cold-boot", "examples": ["warm-boot"]} |
datalogic-scan2deploy-ce.json | ping-timeout | The timeout value used when attempting to reach the host server | {"type": "integer", "default": 1000, "examples": [1000], "minimum": 1, "maximum": 4000} |
datalogic-scan2deploy-ce.json | settings | Section used to configure inner device settings | {"type": "object", "properties": {"usb-function": {"type": "string", "enum": ["active-sync-usb", "active-sync-com", "usblan", "mass-storage"], "default": "active-sync-usb", "examples": ["usblan"]}}} |
datalogic-scan2deploy-ce.json | usb-function | USB communication function to use | {"type": "string", "enum": ["active-sync-usb", "active-sync-com", "usblan", "mass-storage"], "default": "active-sync-usb", "examples": ["usblan"]} |
datalogic-scan2deploy-ce.json | network | Section used to configure device Wi-Fi network | {"type": "object", "properties": {"profile": {"type": "string", "default": "datalogic", "examples": ["my_fast"]}, "essid": {"type": "string", "default": "tsunami", "examples": ["eapfast"]}, "mode": {"type": "string", "enum": ["open", "wep-40", "wep-104", "wpa-psk", "wpa2-psk", "wpa-tkip", "wpa2-aes"], "default": "open", "examples": ["wpa2-aes"]}, "mode-key": {"type": "string", "default": "", "examples": ["0123456789"], "minLength": 5, "maxLength": 63}, "index": {"type": "integer", "default": 1, "examples": [1], "minimum": 1, "maximum": 4}, "eap-method": {"type": "string", "enum": ["none", "peap", "tls", "ttls", "fast", "leap"], "default": "none", "examples": ["fast"]}, "eap-username": {"type": "string", "default": "", "examples": ["eapfast"]}, "eap-password": {"type": "string", "default": "", "examples": ["1234567890"]}, "credentials-type": {"type": "string", "enum": ["password", "token", "certificate", "unknown"], "default": "password", "examples": ["password"]}, "credentials-source": {"type": "string", "enum": ["user", "logon", "profile", "auto", "unknown"], "default": "user", "examples": ["profile"]}, "validate-server": {"type": "boolean", "default": false, "examples": [false]}, "connect-to-server": {"type": "boolean", "default": false, "examples": [false]}, "connect-to-server-names": {"type": "string", "default": "", "examples": [""]}, "server-cert-name": {"type": "string", "default": "", "examples": [""]}, "outer-identity": {"type": "string", "default": "", "examples": [""]}, "fast-reconnect": {"type": "boolean", "default": false, "examples": [false]}, "inner-method": {"type": "string", "enum": ["eap-tls", "eap-MsChapV2", "eap-gtc"], "default": "eap-tls", "examples": ["eap-MsChapV2"]}, "auto-pac": {"type": "boolean", "default": false, "examples": [true]}, "pac-file-path": {"type": "string", "default": "", "examples": [""]}, "pac-aid-info": {"type": "string", "default": "", "examples": [""]}}, "if": {"properties": {"mode": {"enum": ["wpa-psk", "wpa2-psk", "wep-40", "wep-104"]}}}, "then": {"required": ["mode-key"]}} |
datalogic-scan2deploy-ce.json | profile | "Friendly" name to associate with the network connection | {"type": "string", "default": "datalogic", "examples": ["my_fast"]} |
datalogic-scan2deploy-ce.json | essid | Wireless network ESSID | {"type": "string", "default": "tsunami", "examples": ["eapfast"]} |
datalogic-scan2deploy-ce.json | mode | Wireless connection mode | {"type": "string", "enum": ["open", "wep-40", "wep-104", "wpa-psk", "wpa2-psk", "wpa-tkip", "wpa2-aes"], "default": "open", "examples": ["wpa2-aes"]} |
datalogic-scan2deploy-ce.json | mode-key | Wireless network key for 'wep-40', 'wep-104', 'wpa-psk', and 'wpa2-psk' networks | {"type": "string", "default": "", "examples": ["0123456789"], "minLength": 5, "maxLength": 63} |
datalogic-scan2deploy-ce.json | index | Wireless network key index for 'wep-40' and 'wep-104' networks | {"type": "integer", "default": 1, "examples": [1], "minimum": 1, "maximum": 4} |
datalogic-scan2deploy-ce.json | eap-method | Configures the EAP authentication method | {"type": "string", "enum": ["none", "peap", "tls", "ttls", "fast", "leap"], "default": "none", "examples": ["fast"]} |
datalogic-scan2deploy-ce.json | eap-username | Username for the EAP method | {"type": "string", "default": "", "examples": ["eapfast"]} |
datalogic-scan2deploy-ce.json | eap-password | Password for EAP method | {"type": "string", "default": "", "examples": ["1234567890"]} |
datalogic-scan2deploy-ce.json | credentials-type | Indicates the EAP credentials type | {"type": "string", "enum": ["password", "token", "certificate", "unknown"], "default": "password", "examples": ["password"]} |
datalogic-scan2deploy-ce.json | credentials-source | Indicates the EAP credentials source | {"type": "string", "enum": ["user", "logon", "profile", "auto", "unknown"], "default": "user", "examples": ["profile"]} |
datalogic-scan2deploy-ce.json | validate-server | Indicates if the server certificate should be validated | {"type": "boolean", "default": false, "examples": [false]} |
datalogic-scan2deploy-ce.json | connect-to-server | Indicates if only the servers listed in the 'connect-to-server-names' list should be connected to | {"type": "boolean", "default": false, "examples": [false]} |
datalogic-scan2deploy-ce.json | connect-to-server-names | Semi-colon separated list of servers that are valid to connect to during server certificate validation | {"type": "string", "default": "", "examples": [""]} |
datalogic-scan2deploy-ce.json | server-cert-name | "Friendly" name of the server digital certificate that should be validated | {"type": "string", "default": "", "examples": [""]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.