schema stringclasses 471
values | key stringlengths 0 203 | description stringlengths 0 4.37k | object stringlengths 2 322k |
|---|---|---|---|
venvironment-schema.json | autosar-pdu-layer | Configure the PDU layer in relation to AUTOSAR databases.
'no-pdus' : Creation of frames only
'from-autosar-4.0' : Creation of AUTOSAR PDUs for AUTOSAR DBs >= 4.0
'from-autosar-4.2' : Creation of AUTOSAR PDUs for AUTOSAR DBs >= 4.2 | {"default": "from-autosar-4.2", "anyOf": [{"type": "string", "enum": ["no-pdus", "from-autosar-4.0", "from-autosar-4.2"], "examples": ["no-pdus", "from-autosar-4.0", "from-autosar-4.2"]}, {}]} |
venvironment-schema.json | autosar-text-table-entries | Control naming of text table entries and influence signal qualification. Use text from COMPU-CONST nodes or SHORT-LABEL nodes. | {"default": "compu-const", "anyOf": [{"type": "string", "enum": ["compu-const", "short-label"], "examples": ["compu-const", "short-label"]}, {}]} |
venvironment-schema.json | some-ip-pdus-without-service-context | Control the generation of services for SOME/IP PDUs without service context. | {"default": "ignore", "oneOf": [{"type": "string", "enum": ["ignore", "generate-service"], "examples": ["ignore", "generate-service"]}, {}]} |
venvironment-schema.json | full | Absolute or relative path to an external file containing system variables. Relative path specifications are resolved relative to the defining configuration file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["file-path"], "properties": {"when": {}, "file-path": {"anyOf": [{}, {"type": "array", "items": {}}]}}, "examples": [{"file-path": "path/to/my.vsysvar"}, {"file-path": ["${path_in_variable}", "path/${name_in_variable}"]}, {"file-path": "path/to/my.vsysvar", "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | full | Absolute or relative path to an external database file (.dbc / .ldf / ...). Relative path specifications are resolved relative to the defining configuration file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "file-path"], "properties": {"name": {}, "when": {}, "network-name": {"type": "string"}, "file-path": {}}, "examples": [{"name": "mydbname", "file-path": "path/to/some.dbc"}, {"name": "mydbname", "file-path": "path/to/some.arxml", "network-name": "network_in_db"}, {"name": "mydbname", "file-path": "path/to/some.dbc", "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | network-name | Select a network from the database (cluster name if .arxml). If selected, 'name' must match 'network-name'. | {"type": "string"} |
venvironment-schema.json | full | A Network using the CAN protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "database": {}, "baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 2000000, "default": 500000}, {}]}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]}, "mapping": {}}, "examples": [{"name": "my_can_network"}, {"name": "my_can_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_can_network", "database": "DB_1", "application-channel": 42, "baudrate": 500000, "mapping": "internal-simulator"}]} |
venvironment-schema.json | baudrate | Baudrate of this CAN bus.
If this value is set, it has priority.
If this value is not set, the baudrate is read from the database. If the baudrate is missing from the database, the default value is used. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 2000000, "default": 500000}, {}]} |
venvironment-schema.json | application-channel | Index of the application channel. Each bus type should provide consecutive indices. Starts counting at 1. Value between 1 and 255. Value '0' is not allowed. Caution: CAN and CANFD share the application channels! | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]} |
venvironment-schema.json | full | A Network using the CANFD protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "database": {}, "mode": {"anyOf": [{"type": "string", "enum": ["iso", "non-iso"], "default": "iso"}, {}]}, "arbitration-baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 2000000, "default": 500000}, {}]}, "data-baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 10000000, "default": 1000000}, {}]}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]}, "mapping": {}}, "oneOf": [{"required": ["arbitration-baudrate", "data-baudrate"], "properties": {"arbitration-baudrate": true, "data-baudrate": true}}, {"properties": {"arbitration-baudrate": false, "data-baudrate": false}}], "examples": [{"name": "my_canfd_network"}, {"name": "my_canfd_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_canfd_network", "database": "DB_2", "application-channel": 42, "mode": "iso", "arbitration-baudrate": 500000, "data-baudrate": 1000000, "mapping": "internal-simulator"}]} |
venvironment-schema.json | mode | Operation Mode setting (iso or non-iso Mode). | {"anyOf": [{"type": "string", "enum": ["iso", "non-iso"], "default": "iso"}, {}]} |
venvironment-schema.json | arbitration-baudrate | Baudrate for the arbitration phase of CAN FD in Baud.
If this value is set, it has priority.
If this value is not set, the baudrate is read from the database. If the baudrate is missing from the database, the default value is used. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 2000000, "default": 500000}, {}]} |
venvironment-schema.json | data-baudrate | Baudrate for the data phase of CAN FD.
If this value is set, it has priority.
If this value is not set, the baudrate is read from the database. If the baudrate is missing from the database, the default value is used. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 10000000, "default": 1000000}, {}]} |
venvironment-schema.json | application-channel | Index of the application channel. Each bus type should provide consecutive indices. Starts counting at 1. Value between 1 and 255. Value '0' is not allowed. Caution: CAN and CANFD share the application channels! | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]} |
venvironment-schema.json | full | A Network using the Ethernet protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "database": {}, "tcp-ip-stack-adapter": {}, "mapping": {}, "application-channel": {"anyOf": [{}, {"type": "integer", "minimum": 1, "maximum": 32}]}}, "examples": [{"name": "my_eth_network"}, {"name": "my_eth_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_eth_network", "database": "DB", "application-channel": 12, "tcp-ip-stack-adapter": {"mac-address": "02:84:cf:3b:be:01"}, "mapping": "external-sil-kit"}, {"name": "my_eth_network", "database": "DB", "application-channel": 12, "mapping": "internal-simulator", "tcp-ip-stack-adapter": {"mtu": 1500, "ipv4-settings": {"address-configuration": "static", "addresses": [{"address": "192.168.0.1", "subnet-mask": "255.255.0.0"}]}, "ipv6-settings": {"address-configuration": "dhcp"}, "vlans": [{"id": 42, "priority": 0}]}}]} |
venvironment-schema.json | application-channel | Index of the application channel. Each bus type should provide consecutive indices. Starts counting at 1. Value between 1 and 32. Value '0' is not allowed. | {"anyOf": [{}, {"type": "integer", "minimum": 1, "maximum": 32}]} |
venvironment-schema.json | full | A cluster using the FlexRay protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "database"], "properties": {"name": {}, "when": {}, "database": {}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 32, "default": 1}, {}]}, "mapping": {}, "key-slot-configuration": {}}, "examples": [{"name": "my_flexray_cluster", "database": "DB_1"}, {"name": "my_flexray_cluster", "when": "SCENARIO_NAME == \"my_scenario_name\"", "database": "FR_DB"}, {"name": "my_flexray_cluster", "database": "DB_1", "application-channel": 12, "mapping": "internal-simulator", "key-slot-configuration": {"slot-1": {"mode": "manual", "usage": "startup", "mask": "A", "slot": 1, "leading-cold-start": true}, "slot-2": {"mode": "automatic"}}}]} |
venvironment-schema.json | application-channel | Index of the Application Channel. Each bus type should provide consecutive indices. Starts counting at 1. Value between 1 and 32. Value '0' is not allowed. | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 32, "default": 1}, {}]} |
venvironment-schema.json | full | A network using the LIN protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "database": {}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]}, "mapping": {}, "mode": {"anyOf": [{"const": "commander"}, {"const": "responder"}, {}], "default": "commander", "examples": ["commander", "responder"]}}, "examples": [{"name": "my_lin_network"}, {"name": "my_lin_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_lin_network", "database": "DB_1", "application-channel": 42, "mapping": "internal-simulator", "mode": "responder"}]} |
venvironment-schema.json | application-channel | Index of the application channel. Each bus type should provide consecutive indices. Starts counting at 1. Value between 1 and 64. Value '0' is not allowed. | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]} |
venvironment-schema.json | mode | Working mode of the LIN interface. | {"anyOf": [{"const": "commander"}, {"const": "responder"}, {}], "default": "commander", "examples": ["commander", "responder"]} |
venvironment-schema.json | mode | The LIN network interface is able to output message headers on the network. | {"const": "commander"} |
venvironment-schema.json | mode | The LIN network interface responds to received LIN headers if a response to the LIN ID contained within the header has been configured. | {"const": "responder"} |
venvironment-schema.json | full | Represents a simulation node used in a simulation | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "network-assignments"], "properties": {"name": {}, "when": {}, "file-path": {}, "network-assignments": {}, "defines": {}, "database-node": {"anyOf": [{"type": "boolean", "default": true}, {"type": "string"}, {}], "examples": [false, true, "aDatabaseNodeName", "${var_with_path}"]}, "modeling-libraries": {"type": "array", "items": {}}, "tcp-ip-stack": {}}, "examples": [{"name": "mynode", "network-assignments": [{"network": "my_can_network_1"}], "file-path": "path/to/my_capl_script.can", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "mynode", "file-path": "path/to/my_dotnet.cs", "database-node": true, "network-assignments": [{"network": "my_can_network_1"}], "defines": ["mydefine1", "mydefine2"], "modeling-libraries": ["modeling/lib/1.vmodule", "${path_in_var}"], "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "mynode", "file-path": "path/to/my_dotnet.cs", "database-node": false, "network-assignments": [{"network": "my_can_network_1"}]}, {"name": "otherNameThanInDb", "file-path": "path/to/my_dotnet.cs", "database-node": "nameFromDB", "network-assignments": [{"network": "my_can_network_1"}]}]} |
venvironment-schema.json | database-node | Use to assign explicitely a database node to a simulation node. If not set, the simulation-node name will be used as database-node. To deactivate automatic assignement, it should be set to false. | {"anyOf": [{"type": "boolean", "default": true}, {"type": "string"}, {}], "examples": [false, true, "aDatabaseNodeName", "${var_with_path}"]} |
venvironment-schema.json | modeling-libraries | For assignment of modeling libraries to this simulation node. | {"type": "array", "items": {}} |
venvironment-schema.json | full | Declares when to add this node. | {"$schema": "http://json-schema.org/draft-07/schema#", "anyOf": [{"type": "string"}, {"type": "boolean"}], "examples": ["SCENARIO_NAME == \"my_scenario_name\"", "some_variable == \"somevalue\"", "some_int_variable > 42 && some_other_int_variable <= 42", true]} |
venvironment-schema.json | full | List of defines to be passed to capl / vcdl. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "array", "items": {}, "examples": [["mydefine1", "mydefine2"], ["mydefine_with_value=42", "${var_with_define_name}=${var_with_define_value}"]]} |
venvironment-schema.json | full | Represents an application used in a scenario | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["file-path"], "properties": {"when": {}, "file-path": {}, "defines": {}}, "examples": [{"file-path": "path/to/my/file.can", "defines": ["mydefine1", "mydefine=2"]}, {"file-path": "path/to/my/file.can", "defines": ["mydefine1", "mydefine=2"], "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | full | Programming modules file paths (capl-library or c-library). Entry can be deactivated with when. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"when": {}, "capl-library-path": {"anyOf": [{}, {"type": "array", "items": {}}]}, "c-library-path": {"anyOf": [{}, {"type": "array", "items": {}}]}}} |
venvironment-schema.json | full | Absolute or relative path to user files that can be read/written by CAPL/.NET Scripts. Relative path specifications are resolved relative to the defining configuration file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["file-path"], "properties": {"when": {}, "file-path": {"anyOf": [{"type": "string", "examples": ["path/to/my.txt", "${path_in_variable}", "path/${name_in_variable}"]}, {"type": "array", "items": {"type": "string"}, "examples": [["path/to/my.txt"], ["${path_in_variable}", "path/${name_in_variable}"]]}]}}, "examples": [{"file-path": "path/to/my.txt"}, {"file-path": ["${path_in_variable}", "path/${name_in_variable}"]}, {"file-path": "path/to/my_file.ini", "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | full | Absolute or relative path to an external xcpcfg file. Relative path specifications are resolved relative to the defining configuration file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["file-path"], "properties": {"when": {}, "file-path": {"anyOf": [{"anyOf": [{}, {}]}, {"type": "array", "items": {"anyOf": [{}, {}]}}]}}, "examples": [{"file-path": "path/to/my.xcpcfg"}, {"file-path": ["${path_in_variable}", "path/${name_in_variable}"]}, {"file-path": "path/to/my.xcpcfg", "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | full | Absolute or relative path to a FDX description file. Relative path specifications are resolved relative to the configuration file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "string", "anyOf": [{"pattern": "^.*\\.[xX][mM][lL]$"}, {"pattern": "^.*\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\}$"}], "examples": ["path/to/myDescriptionFile.xml", "${path_in_variable}", "path/${name_in_variable}"]} |
venvironment-schema.json | stepsize-in-sec | Step size in seconds. | {"anyOf": [{"type": "number", "minimum": 0, "maximum": 10000}, {}], "examples": [0, 0.0005, 10000, "${var_with_path}"]} |
venvironment-schema.json | debug-output | Is the debug output active. | {"anyOf": [{"type": "boolean", "default": false}, {}], "examples": [false, true, "${var_with_path}"]} |
venvironment-schema.json | active-model-variables | List of the FMU variables which should be exported | {"type": "array", "items": {"anyOf": [{"type": "string"}, {}], "examples": ["Variable1", "${var_with_path}"]}} |
venvironment-schema.json | inactive-model-variables | List of the FMU variables which should be excluded from the export | {"type": "array", "items": {"anyOf": [{"type": "string"}, {}], "examples": ["Variable1", "${var_with_path}"]}} |
venvironment-schema.json | full | Represents a functional mockup unit used in a scenario. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "anyOf": [{"additionalProperties": false, "required": ["file-path", "stepsize-in-sec"], "properties": {"when": {}, "file-path": {}, "stepsize-in-sec": {}, "debug-output": {}}}, {"additionalProperties": false, "required": ["file-path", "stepsize-in-sec", "active-model-variables"], "properties": {"when": {}, "file-path": {}, "stepsize-in-sec": {}, "debug-output": {}, "active-model-variables": {}}}, {"additionalProperties": false, "required": ["file-path", "stepsize-in-sec", "inactive-model-variables"], "properties": {"when": {}, "file-path": {}, "stepsize-in-sec": {}, "debug-output": {}, "inactive-model-variables": {}}}]} |
venvironment-schema.json | full | Absolute or relative path to a SIL Kit config file (.yaml or .json). Relative path specifications are resolved relative to the configuration file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "string", "anyOf": [{"pattern": "^.*\\.[yY][aA][mM][lL]$"}, {"pattern": "^.*\\.[jJ][sS][oO][nN]$"}, {"pattern": "^.*\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\}$"}], "examples": ["path/to/myConfigFile.json", "path/to/myConfigFile.yaml", "${path_in_variable}", "path/${name_in_variable}"]} |
venvironment-schema.json | full | Name of a blf file, supporting the field codes: {ComputerName}, {LocalTime}, {MeasurementIndex}, {MeasurementStart}, {IncSize|001|100MB} and {IncTime|001|01h00m}. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "string", "anyOf": [{"pattern": "^(?!.*(\\{TriggerCondition\\}|\\{LoggingBlock\\}|\\{IncMeasurement\\}|\\{ConfigName\\}|\\{IncTrigger\\|[0-9]*\\}|[\"<>*?:/\\\\])).*\\.[bB][lL][fF]$"}, {"pattern": "^.*\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\}$"}], "examples": ["fileName.blf", "file_${SCENARIO_NAME}.blf", "${name_in_variable}", "log_{ComputerName}.blf", "log_{LocalTime}.blf", "log_{MeasurementIndex}.blf", "log_{MeasurementStart}.blf"]} |
venvironment-schema.json | full | Advanced logging configurations. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"warn-overwritten-log-file": {"anyOf": [{"type": "boolean"}, {}], "default": true}, "show-error-on-data-loss": {"anyOf": [{"type": "boolean"}, {}], "default": true}}, "examples": [{"warn-overwritten-log-file": false, "show-error-on-data-loss": true}, {"warn-overwritten-log-file": true}]} |
venvironment-schema.json | full | A replay block for the CAN protocol. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "file-path"], "properties": {"name": {}, "when": {}, "file-path": {}, "replay-on-measurement-start": {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]}, "send-system-variables": {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]}, "start-timing-condition": {}, "channel-mapping": {}, "send-tx-messages": {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]}, "send-rx-messages": {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]}}, "examples": [{"name": "ReplayBlock", "file-path": "MyLoggingFile.blf"}, {"name": "ReplayBlock", "file-path": "MyLoggingFile.blf", "when": "SCENARIO_NAME == \"MyScenario\""}, {"name": "ReplayBlock", "file-path": "MyLoggingFile.blf", "replay-on-measurement-start": true, "send-system-variables": false, "send-tx-messages": true, "send-rx-messages": false, "start-timing-condition": {"condition": "immediately"}, "channel-mapping": {"default-mapping": "as-in-original"}}]} |
venvironment-schema.json | replay-on-measurement-start | Replay starts with measurement start. | {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]} |
venvironment-schema.json | send-system-variables | Send system variable values. | {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]} |
venvironment-schema.json | send-tx-messages | Replay the tx messages. | {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]} |
venvironment-schema.json | send-rx-messages | Replay the rx messages. | {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]} |
venvironment-schema.json | full | A replay block for the ethernet protocol. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "file-path"], "properties": {"name": {}, "when": {}, "file-path": {}, "replay-on-measurement-start": {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]}, "send-system-variables": {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]}, "start-timing-condition": {}, "channel-mapping": {}}, "examples": [{"name": "ReplayBlock", "file-path": "MyLoggingFile.blf"}, {"name": "ReplayBlock", "file-path": "MyLoggingFile.blf", "when": "SCENARIO_NAME == \"MyScenario\""}, {"name": "ReplayBlock", "file-path": "MyLoggingFile.blf", "replay-on-measurement-start": true, "send-system-variables": false, "start-timing-condition": {"condition": "immediately"}, "channel-mapping": {"default-mapping": "as-in-original"}}]} |
venvironment-schema.json | replay-on-measurement-start | Replay starts with measurement start | {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]} |
venvironment-schema.json | send-system-variables | Send system variable values. | {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]} |
venvironment-schema.json | full | A replay block for the LIN protocol. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "file-path"], "properties": {"name": {}, "when": {}, "file-path": {}, "replay-on-measurement-start": {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]}, "send-system-variables": {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]}, "start-timing-condition": {}, "channel-mapping": {}, "replay-mode": {"default": "all-responses", "anyOf": [{"type": "string", "enum": ["all-responses", "master-responses-only", "master-requests-only", "no-headers"]}, {}]}, "send-events": {"default": ["tx-responses", "rx-responses", "wakeup-signals"], "anyOf": [{"type": "array", "items": {"anyOf": [{"type": "string", "enum": ["tx-responses", "rx-responses", "wakeup-signals"]}, {}]}}]}}, "examples": [{"name": "ReplayBlock", "file-path": "MyLoggingFile.blf"}, {"name": "ReplayBlock", "file-path": "MyLoggingFile.blf", "when": "SCENARIO_NAME == \"MyScenario\""}, {"name": "ReplayBlock", "file-path": "MyLoggingFile.blf", "replay-on-measurement-start": true, "send-system-variables": false, "start-timing-condition": {"condition": "immediately"}, "channel-mapping": {"default-mapping": "as-in-original"}, "replay-mode": "master-responses-only", "send-events": ["tx-responses", "rx-responses", "wakeup-signals"]}]} |
venvironment-schema.json | replay-on-measurement-start | Replay starts with measurement start | {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]} |
venvironment-schema.json | send-system-variables | Send system variable values. | {"anyOf": [{"type": "boolean", "default": true}, {}], "examples": [true, false, "${variable}"]} |
venvironment-schema.json | replay-mode | Select events to be replayed.
'all-responses': replay all the responses.
'master-responses-only': replay the responses only for frames published by the Master node.
'master-requests-only': replay only 0x3c responses.
'no-headers': disable replay of the LIN frame headers. | {"default": "all-responses", "anyOf": [{"type": "string", "enum": ["all-responses", "master-responses-only", "master-requests-only", "no-headers"]}, {}]} |
venvironment-schema.json | send-events | Select which events from rx-responses, tx-responses and wakeup-signals are replayed. If not set, the default value depends on the value of replay-mode.
For 'all-responses' or 'master-responses-only': all events are sent.
For 'master-requests-only': only wakeup-events are sent.
For 'no-headers': none of the events are sent. | {"default": ["tx-responses", "rx-responses", "wakeup-signals"], "anyOf": [{"type": "array", "items": {"anyOf": [{"type": "string", "enum": ["tx-responses", "rx-responses", "wakeup-signals"]}, {}]}}]} |
venvironment-schema.json | autosar-pdu-layer | Configure the PDU layer in relation to AUTOSAR databases.
'no-pdus' : Creation of frames only
'from-autosar-4.0' : Creation of AUTOSAR PDUs for AUTOSAR DBs >= 4.0
'from-autosar-4.2' : Creation of AUTOSAR PDUs for AUTOSAR DBs >= 4.2 | {"default": "from-autosar-4.2", "anyOf": [{"type": "string", "enum": ["no-pdus", "from-autosar-4.0", "from-autosar-4.2"], "examples": ["no-pdus", "from-autosar-4.0", "from-autosar-4.2"]}, {}]} |
venvironment-schema.json | autosar-text-table-entries | Control naming of text table entries and influence signal qualification. Use text from COMPU-CONST nodes or SHORT-LABEL nodes. | {"default": "compu-const", "anyOf": [{"type": "string", "enum": ["compu-const", "short-label"], "examples": ["compu-const", "short-label"]}, {}]} |
venvironment-schema.json | full | Represents a simulation node used in a simulation | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "network-assignments"], "properties": {"name": {}, "when": {}, "file-path": {}, "network-assignments": {}, "defines": {}, "database-node": {"anyOf": [{"type": "boolean", "default": true}, {"type": "string"}, {}], "examples": [false, true, "aDatabaseNodeName", "${var_with_path}"]}, "modeling-libraries": {"type": "array", "items": {}}, "tcp-ip-stack": {}}, "examples": [{"name": "mynode", "network-assignments": [{"network": "my_can_network_1"}], "file-path": "path/to/my_capl_script.can", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "mynode", "file-path": "path/to/my_dotnet.cs", "database-node": true, "network-assignments": [{"network": "my_can_network_1"}], "defines": ["mydefine1", "mydefine2"], "modeling-libraries": ["modeling/lib/1.vmodule", "${path_in_var}"], "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "mynode", "file-path": "path/to/my_dotnet.cs", "database-node": false, "network-assignments": [{"network": "my_can_network_1"}]}, {"name": "otherNameThanInDb", "file-path": "path/to/my_dotnet.cs", "database-node": "nameFromDB", "network-assignments": [{"network": "my_can_network_1"}]}]} |
venvironment-schema.json | database-node | Use to assign explicitely a database node to a simulation node. If not set, the simulation-node name will be used as database-node. To deactivate automatic assignement, it should be set to false. | {"anyOf": [{"type": "boolean", "default": true}, {"type": "string"}, {}], "examples": [false, true, "aDatabaseNodeName", "${var_with_path}"]} |
venvironment-schema.json | modeling-libraries | For assignment of modeling libraries to this simulation node. | {"type": "array", "items": {}} |
venvironment-schema.json | full | A Network using the CAN protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "database": {}, "baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 2000000, "default": 500000}, {}]}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]}, "mapping": {}}, "examples": [{"name": "my_can_network"}, {"name": "my_can_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_can_network", "database": "DB_1", "application-channel": 42, "baudrate": 500000, "mapping": "internal-simulator"}]} |
venvironment-schema.json | baudrate | Baudrate of this CAN bus. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 2000000, "default": 500000}, {}]} |
venvironment-schema.json | application-channel | Index of the Application Channel. Each busytype should provide consecutive indices. Starts counting at 1. Value between 1 and 255. Value '0' is not allowed. Caution: CAN and CANFD share the Application Channels! | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]} |
venvironment-schema.json | full | A Network using the CANFD protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "database": {}, "mode": {"anyOf": [{"type": "string", "enum": ["iso", "non-iso"], "default": "iso"}, {}]}, "arbitration-baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 2000000, "default": 500000}, {}]}, "data-baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 10000000, "default": 1000000}, {}]}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]}, "mapping": {}}, "examples": [{"name": "my_canfd_network"}, {"name": "my_canfd_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_canfd_network", "database": "DB_2", "application-channel": 42, "mode": "iso", "arbitration-baudrate": 500000, "data-baudrate": 1000000, "mapping": "internal-simulator"}]} |
venvironment-schema.json | mode | Operation Mode setting (iso or non-iso Mode). | {"anyOf": [{"type": "string", "enum": ["iso", "non-iso"], "default": "iso"}, {}]} |
venvironment-schema.json | arbitration-baudrate | Baudrate for the arbitration phase of CAN FD in Baud. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 2000000, "default": 500000}, {}]} |
venvironment-schema.json | data-baudrate | Baudrate for the data phase of CAN FD. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 10000000, "default": 1000000}, {}]} |
venvironment-schema.json | application-channel | Index of the Application Channel. Each busytype should provide consecutive indices. Starts counting at 1. Value between 1 and 255. Value '0' is not allowed. Caution: CAN and CANFD share the Application Channels! | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]} |
venvironment-schema.json | full | A Network using the Ethernet protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "database": {}, "tcp-ip-stack-adapter": {}, "mapping": {}, "application-channel": {"anyOf": [{}, {"type": "integer", "minimum": 1, "maximum": 32}]}}, "examples": [{"name": "my_eth_network"}, {"name": "my_eth_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_eth_network", "database": "DB", "application-channel": 12, "tcp-ip-stack-adapter": {"mac-address": "02:84:cf:3b:be:01"}, "mapping": "external-sil-kit"}, {"name": "my_eth_network", "database": "DB", "application-channel": 12, "mapping": "internal-simulator", "tcp-ip-stack-adapter": {"mtu": 1500, "ipv4-settings": {"address-configuration": "static", "addresses": [{"address": "192.168.0.1", "subnet-mask": "255.255.0.0"}]}, "ipv6-settings": {"address-configuration": "dhcp"}, "vlans": [{"id": 42, "priority": 0}]}}]} |
venvironment-schema.json | application-channel | Index of the Application Channel. Each busytype should provide consecutive indices. Starts counting at 1. Value between 1 and 32. Value '0' is not allowed. | {"anyOf": [{}, {"type": "integer", "minimum": 1, "maximum": 32}]} |
venvironment-schema.json | full | A network using the LIN protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "database": {}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]}, "mapping": {}, "mode": {"anyOf": [{"const": "commander"}, {"const": "responder"}, {}], "default": "commander", "examples": ["commander", "responder"]}}, "examples": [{"name": "my_lin_network"}, {"name": "my_lin_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_lin_network", "database": "DB_1", "application-channel": 42, "mapping": "internal-simulator", "mode": "responder"}]} |
venvironment-schema.json | application-channel | Index of the Application Channel. Each bus type should provide consecutive indices. Starts counting at 1. Value between 1 and 64. Value '0' is not allowed. | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]} |
venvironment-schema.json | mode | Working mode of the LIN interface. | {"anyOf": [{"const": "commander"}, {"const": "responder"}, {}], "default": "commander", "examples": ["commander", "responder"]} |
venvironment-schema.json | mode | The LIN network interface is able to output message headers on the network. | {"const": "commander"} |
venvironment-schema.json | mode | The LIN network interface responds to received LIN headers if a response to the LIN ID contained within the header has been configured. | {"const": "responder"} |
venvironment-schema.json | access-mode | Mode of the underlying Ethernet bus. Classic approach is the 'Channel-based' setup. More recent and recommended mode is the switched 'Network-based' mode (port based). | {"anyOf": [{}, {"type": "string", "enum": ["network-based", "channel-based"], "default": "network-based"}]} |
venvironment-schema.json | signal-updates | Specifies how signals are updated on Network-based access. Will be ignored on Channel-based setups. Always: Events of all ports are used to update a signal without qualified ethernet port. rx-only: Only packets received by the interface are used, which leads to less duplicated updates. never: Signals without qualified ethernet ports are not updated. | {"anyOf": [{}, {"const": "always"}, {"const": "rx-only"}, {"const": "never"}]} |
venvironment-schema.json | signal-updates | Events of all ports are used to update a signal without qualified ethernet port. | {"const": "always"} |
venvironment-schema.json | signal-updates | Only packets received by the interface are used, which leads to less duplicated updates. | {"const": "rx-only"} |
venvironment-schema.json | signal-updates | Signals without qualified ethernet ports are not updated. | {"const": "never"} |
venvironment-schema.json | full | This variable can be used in any other node and overwritten by a scenario. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "required": ["name"], "oneOf": [{"additionalProperties": false, "required": ["value"], "properties": {"name": {}, "from-environment": {}, "value": {"oneOf": [{"type": "string"}, {"type": "number"}, {"type": "boolean"}]}}}, {"additionalProperties": false, "required": ["type"], "properties": {"name": {}, "from-environment": {}, "value": {"type": "integer", "minimum": -9223372036854775808, "maximum": 9223372036854775807}, "type": {"const": "int"}, "options": {"type": "array", "items": {"type": "integer", "minimum": -9223372036854775808, "maximum": 9223372036854775807}}}}, {"additionalProperties": false, "required": ["type"], "properties": {"name": {}, "from-environment": {}, "value": {"type": "integer", "minimum": 0, "maximum": 18446744073709551616}, "type": {"const": "uint"}, "options": {"type": "array", "items": {"type": "integer", "minimum": 0, "maximum": 18446744073709551616}}}}, {"additionalProperties": false, "required": ["type"], "properties": {"name": {}, "from-environment": {}, "value": {"type": "string"}, "type": {"enum": ["string", "path"]}, "options": {"type": "array", "items": {"type": "string"}}}}, {"additionalProperties": false, "required": ["type"], "properties": {"name": {}, "from-environment": {}, "value": {"type": "boolean"}, "type": {"const": "bool"}, "options": {"type": "array", "items": {"type": "boolean"}}}}, {"additionalProperties": false, "required": ["type"], "properties": {"name": {}, "from-environment": {}, "value": {"type": "number", "minimum": -1.79769e+308, "maximum": 1.79769e+308}, "type": {"const": "float"}, "options": {"type": "array", "items": {"type": "number", "minimum": -1.79769e+308, "maximum": 1.79769e+308}}}}], "examples": [{"name": "var", "value": -42}, {"name": "my_string", "value": "implicit-type"}, {"name": "var", "value": 422200000000.0, "type": "float"}, {"name": "path_var", "value": "path/to/somewhere", "type": "path"}, {"name": "uint_enum", "value": 43, "type": "uint", "options": [1, 43, 127]}]} |
venvironment-schema.json | full | Represents an application used in a scenario | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["file-path"], "properties": {"when": {}, "file-path": {}, "defines": {}}, "examples": [{"file-path": "path/to/my/file.can", "defines": ["mydefine1", "mydefine=2"]}, {"file-path": "path/to/my/file.can", "defines": ["mydefine1", "mydefine=2"], "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | stepsize-in-sec | step size in seconds | {"anyOf": [{"type": "number", "minimum": 0, "maximum": 1.79769e+308}, {}], "examples": [0, 0.0005, 1568714585, "${var_with_path}"]} |
venvironment-schema.json | debug-output | Are the debug outputs on | {"anyOf": [{"type": "boolean", "default": false}, {}], "examples": [false, true, "${var_with_path}"]} |
venvironment-schema.json | active-model-variables | List of the FMU variables which should be exported | {"type": "array", "items": {"anyOf": [{"type": "string"}, {}], "examples": ["Variable1", "${var_with_path}"]}} |
venvironment-schema.json | inactive-model-variables | List of the FMU variables which should be excluded from the export | {"type": "array", "items": {"anyOf": [{"type": "string"}, {}], "examples": ["Variable1", "${var_with_path}"]}} |
venvironment-schema.json | full | Represents a functional mockup unit used in a scenario | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "anyOf": [{"additionalProperties": false, "required": ["file-path", "stepsize-in-sec"], "properties": {"when": {}, "file-path": {}, "stepsize-in-sec": {}, "debug-output": {}}}, {"additionalProperties": false, "required": ["file-path", "stepsize-in-sec", "active-model-variables"], "properties": {"when": {}, "file-path": {}, "stepsize-in-sec": {}, "debug-output": {}, "active-model-variables": {}}}, {"additionalProperties": false, "required": ["file-path", "stepsize-in-sec", "inactive-model-variables"], "properties": {"when": {}, "file-path": {}, "stepsize-in-sec": {}, "debug-output": {}, "inactive-model-variables": {}}}]} |
venvironment-schema.json | full | Absolute or relative path to an external xcpcfg file. Relative path specifications are resolved relative to the defining configuration file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["file-path"], "properties": {"when": {}, "file-path": {"anyOf": [{}, {"type": "array", "items": {}}]}}, "examples": [{"file-path": "path/to/my.xcpcfg"}, {"file-path": ["${path_in_variable}", "path/${name_in_variable}"]}, {"file-path": "path/to/my.xcpcfg", "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | full | Advanced logging configurations | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "properties": {"warn-overwritten-log-file": {"anyOf": [{"type": "boolean"}, {}], "default": true}, "show-error-on-data-loss": {"anyOf": [{"type": "boolean"}, {}], "default": true}}, "examples": [{"warn-overwritten-log-file": false, "show-error-on-data-loss": true}, {"warn-overwritten-log-file": true}]} |
venvironment-schema.json | full | Represents a simulation node used in a simulation | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "network-assignments"], "properties": {"name": {}, "when": {}, "file-path": {}, "network-assignments": {}, "defines": {}, "modeling-libraries": {"type": "array", "items": {}}, "tcp-ip-stack": {}}, "examples": [{"name": "mynode", "network-assignments": [{"network": "my_can_network_1"}], "file-path": "path/to/my_capl_script.can", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "mynode", "file-path": "path/to/my_dotnet.cs", "network-assignments": [{"network": "my_can_network_1", "database-node": {"database": "mydatabase", "node": "mynode"}}], "defines": ["mydefine1", "mydefine2"], "modeling-libraries": ["modeling/lib/1.vmodule", "${path_in_var}"], "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | modeling-libraries | For assignment of modeling libraries to this simulation node | {"type": "array", "items": {}} |
venvironment-schema.json | full | Absolute or relative path to an external database file (.dbc / .ldf / ...). Relative path specifications are resolved relative to the defining configuration file. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name", "file-path"], "properties": {"name": {}, "when": {}, "network-name": {"type": "string"}, "file-path": {"type": "string", "anyOf": [{"pattern": "^.*\\.[Aa][Rr][Xx][Mm][Ll]$"}, {"pattern": "^.*\\.[Xx][Mm][Ll]$"}, {"pattern": "^.*\\.[Dd][Bb][Cc]$"}, {"pattern": "^.*\\.[Ll][Dd][Ff]$"}, {"pattern": "^.*\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\}$"}], "examples": ["path/to/some.dbc", "path/to/some.arxml", "path/to/some.xml", "path/to/some.ldf", "path/${var_with_name}", "${var_with_path}"]}}, "examples": [{"name": "mydbname", "file-path": "path/to/some.dbc"}, {"name": "mydbname", "file-path": "path/to/some.arxml", "network-name": "network_in_db"}, {"name": "mydbname", "file-path": "path/to/some.dbc", "when": "SCENARIO_NAME == \"my_scenario_name\""}]} |
venvironment-schema.json | full | A Network using the CAN protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "databases": {}, "baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 9223372036854775807, "default": 500000}, {}]}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]}, "mapping": {}}, "examples": [{"name": "my_can_network"}, {"name": "my_can_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_can_network", "databases": ["DB_1", "DB_2"], "application-channel": 42, "baudrate": 500000, "mapping": "internal-simulator"}]} |
venvironment-schema.json | baudrate | Baudrate in Baud. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 9223372036854775807, "default": 500000}, {}]} |
venvironment-schema.json | application-channel | Index of the Application Channel. Each busytype should provide consecutive indices. Starts counting at 1. Value between 1 and 255. Value '0' is not allowed. Caution: CAN and CANFD share the Application Channels! | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]} |
venvironment-schema.json | full | A Network using the CANFD protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "databases": {}, "mode": {"anyOf": [{"type": "string", "enum": ["iso", "non-iso"], "default": "iso"}, {}]}, "arbitration-baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 9223372036854775807, "default": 500000}, {}]}, "data-baudrate": {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 9223372036854775807, "default": 1000000}, {}]}, "application-channel": {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]}, "mapping": {}}, "examples": [{"name": "my_canfd_network"}, {"name": "my_canfd_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_canfd_network", "databases": ["DB_1", "DB_2"], "application-channel": 42, "mode": "iso", "arbitration-baudrate": 500000, "data-baudrate": 1000000, "mapping": "internal-simulator"}]} |
venvironment-schema.json | mode | Operation Mode setting (iso or non-iso Mode). | {"anyOf": [{"type": "string", "enum": ["iso", "non-iso"], "default": "iso"}, {}]} |
venvironment-schema.json | arbitration-baudrate | Baudrate for the arbitration phase of CAN FD in Baud. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 9223372036854775807, "default": 500000}, {}]} |
venvironment-schema.json | data-baudrate | Baudrate for the data phase of CAN FD in Baud. | {"anyOf": [{"type": "integer", "minimum": 0, "maximum": 9223372036854775807, "default": 1000000}, {}]} |
venvironment-schema.json | application-channel | Index of the Application Channel. Each busytype should provide consecutive indices. Starts counting at 1. Value between 1 and 255. Value '0' is not allowed. Caution: CAN and CANFD share the Application Channels! | {"anyOf": [{"type": "integer", "minimum": 1, "maximum": 255, "default": 1}, {}]} |
venvironment-schema.json | full | A Network using the Ethernet protocol taking part in a simulation. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {}, "when": {}, "databases": {}, "tcp-ip-stack-adapter": {}, "mapping": {}, "application-channel": {"anyOf": [{}, {"type": "integer", "minimum": 1, "maximum": 32}]}}, "examples": [{"name": "my_eth_network"}, {"name": "my_eth_network", "when": "SCENARIO_NAME == \"my_scenario_name\""}, {"name": "my_eth_network", "databases": ["DB_1", "DB_2"], "application-channel": 12, "tcp-ip-stack-adapter": {"mac-address": "02:84:cf:3b:be:01"}, "mapping": "external-sil-kit"}, {"name": "my_eth_network", "databases": ["DB_1", "DB_2"], "application-channel": 12, "mapping": "internal-simulator", "tcp-ip-stack-adapter": {"mtu": 1500, "ipv4-settings": {"address-configuration": "static", "addresses": [{"address": "192.168.0.1", "subnet-mask": "255.255.0.0"}]}, "ipv6-settings": {"address-configuration": "dhcp"}, "vlans": [{"id": 42, "priority": 0}]}}]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.