{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/venvironment-yaml/versions/3.0.0.json",
  "title": "venvironment schema",
  "x-lintel": {
    "source": "https://www.schemastore.org/venvironment-schema-v3.0.0.json",
    "sourceSha256": "bcc4c1ac374e250a78e1c65332046ddf4591e53b8aa816ac87098094a1289abe",
    "fileMatch": [
      "venvironment.yaml",
      "*.venvironment.yaml",
      "venvironment.yml",
      "*.venvironment.yml",
      "venvironment.json",
      "*.venvironment.json"
    ],
    "parsers": [
      "json",
      "yaml"
    ]
  },
  "type": "object",
  "$ref": "#/$defs/d035f/full",
  "$defs": {
    "d035f": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "venvironment schema",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "version"
        ],
        "properties": {
          "version": {
            "$ref": "#/definitions/0b082/full"
          },
          "application-models": {
            "$ref": "#/definitions/ca37a/full"
          },
          "can-networks": {
            "$ref": "#/definitions/04874/full"
          },
          "can-replay-blocks": {
            "$ref": "#/definitions/b8f0d/full"
          },
          "databases": {
            "$ref": "#/definitions/1b9ac/full"
          },
          "datasources": {
            "$ref": "#/definitions/96ca3/full"
          },
          "defines": {
            "$ref": "#/definitions/bf74a/full"
          },
          "diag-descriptions": {
            "$ref": "#/definitions/f6f85/full"
          },
          "ethernet-networks": {
            "$ref": "#/definitions/1e908/full"
          },
          "ethernet-replay-blocks": {
            "$ref": "#/definitions/837d7/full"
          },
          "fdx": {
            "$ref": "#/definitions/7615c/full"
          },
          "flexray-clusters": {
            "$ref": "#/definitions/49c34/full"
          },
          "flexray-replay-blocks": {
            "$ref": "#/definitions/6aa51/full"
          },
          "functional-mockup-units": {
            "$ref": "#/definitions/acf64/full"
          },
          "global-settings": {
            "$ref": "#/definitions/a5af1/full"
          },
          "includes": {
            "$ref": "#/definitions/8e88e/full"
          },
          "lin-networks": {
            "$ref": "#/definitions/b6162/full"
          },
          "lin-replay-blocks": {
            "$ref": "#/definitions/51dea/full"
          },
          "logging": {
            "$ref": "#/definitions/9d210/full"
          },
          "programming-modules": {
            "$ref": "#/definitions/e46c0/full"
          },
          "scenarios": {
            "$ref": "#/definitions/72c68/full"
          },
          "security": {
            "$ref": "#/definitions/16170/full"
          },
          "sil-kit": {
            "$ref": "#/definitions/dcb97/full"
          },
          "simulation-nodes": {
            "$ref": "#/definitions/21a68/full"
          },
          "system-variables": {
            "$ref": "#/definitions/c47fa/full"
          },
          "user-files": {
            "$ref": "#/definitions/f4ed6/full"
          },
          "variables": {
            "$ref": "#/definitions/6cf52/full"
          },
          "vio-system": {
            "$ref": "#/definitions/b3d04/full"
          },
          "xcp-configuration-files": {
            "$ref": "#/definitions/b18cf/full"
          }
        }
      }
    },
    "ca37a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Application Models",
        "description": "List of application models representing some program. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/392a2/full"
        },
        "examples": [
          [
            {
              "file-path": "path/to/my/file.can",
              "defines": [
                "mydefine1",
                "mydefine=2"
              ]
            }
          ]
        ]
      }
    },
    "b8f0d": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "CAN Replay Blocks",
        "description": "List of CAN replay blocks. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/0be70/full"
        },
        "examples": [
          [
            {
              "name": "my_can_replay_block",
              "file-path": "my_logging_file.blf"
            }
          ],
          [
            {
              "name": "my_can_replay_block",
              "file-path": "my_logging_file.blf",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            },
            {
              "name": "my_can_replay_block",
              "file-path": "another_logging_file.blf",
              "when": "SCENARIO_NAME == \"another_scenario_name\""
            }
          ],
          [
            {
              "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"
              }
            }
          ]
        ]
      }
    },
    "bf74a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Defines",
        "description": "List of defines to be passed to CAPL, .NET, Python and VCDL. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/689c5/full"
        },
        "examples": [
          [
            {
              "define": "mydefine1"
            }
          ],
          [
            {
              "define": [
                "mydefine1",
                "mydefine2"
              ]
            },
            {
              "define": [
                "mydefine1",
                "mydefine2"
              ],
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            },
            {
              "define": [
                "mydefine_with_value=42",
                "${var_with_define_name}=${var_with_define_value}"
              ]
            }
          ]
        ]
      }
    },
    "f6f85": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Diagnostic description",
        "description": "Diagnostic description with CDD.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/0894d/full"
        },
        "examples": [
          [
            {
              "name": "DoorFL",
              "file-path": "description.cdd",
              "interface": "Normal_29BitBase_Variant",
              "variant": "Common",
              "network-assignment": "can_network"
            },
            {
              "name": "DoorFL",
              "when": "SCENARIO_NAME == \"MyScenario\"",
              "file-path": "description.cdd",
              "interface": "Normal_29BitBase_Variant",
              "variant": "Common",
              "network-assignment": "can_network"
            }
          ]
        ]
      }
    },
    "acf64": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Functional mockup units",
        "description": "List of functional mockup units. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/2c08a/full"
        },
        "examples": [
          [
            {
              "file-path": "path/to/some.fmu",
              "stepsize-in-sec": 0.00001
            }
          ],
          [
            {
              "file-path": "path/to/some.fmu",
              "stepsize-in-sec": 2.0,
              "debug-output": true,
              "when": "SCENARIO_NAME == \"MyScenario\"",
              "inactive-model-variables": [
                "Variable3"
              ]
            }
          ],
          [
            {
              "file-path": "path/to/some.fmu",
              "stepsize-in-sec": 100.0,
              "debug-output": false,
              "active-model-variables": [
                "Variable1",
                "Variable2"
              ]
            }
          ]
        ]
      }
    },
    "a5af1": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Global Settings",
        "description": "Global settings for all scenarios.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "ethernet": {
            "$ref": "#/definitions/a0975/full"
          },
          "flexray": {
            "$ref": "#/definitions/29784/full"
          },
          "database": {
            "$ref": "#/definitions/9d0dc/full"
          },
          "dotnet": {
            "$ref": "#/definitions/8e87f/full"
          },
          "working-mode": {
            "$ref": "#/definitions/4670a/full"
          }
        },
        "examples": [
          {
            "ethernet": {
              "access-mode": "channel-based",
              "signal-updates": "always",
              "tcp-ip-stack": {
                "selected-stack": "canoe",
                "activate-routing": true,
                "tcp-delayed-ack": true,
                "ipv4-gateway": "192.168.0.33",
                "ipv6-gateway": "::1"
              }
            }
          },
          {
            "flexray": {
              "enable-dual-channel-support": false,
              "postfixes-for-ambiguous-pdus-on-channel": "no-postfixes"
            }
          },
          {
            "database": {
              "autosar-pdu-layer": "no-pdus",
              "autosar-text-table-entries": "short-label",
              "some-ip-pdus-without-service-context": "generate-service",
              "use-application-layer-objects": [
                "ethernet"
              ]
            }
          },
          {
            "working-mode": {
              "time-source": "${source}",
              "default-network-mapping": "${mapping}"
            }
          },
          {
            "working-mode": {
              "time-source": "internal-realtime",
              "default-network-mapping": "internal-simulator"
            }
          },
          {
            "working-mode": {
              "time-source": "external-software",
              "default-network-mapping": "external-sil-kit"
            }
          },
          {
            "working-mode": {
              "time-source": "internal-scaled",
              "time-scaling-factor": "as-fast-as-possible",
              "default-network-mapping": "internal-simulator"
            }
          },
          {
            "working-mode": {
              "time-source": "internal-scaled",
              "time-scaling-factor": 0.01,
              "default-network-mapping": "internal-simulator"
            }
          },
          {
            "working-mode": {
              "time-source": "internal-scaled",
              "time-scaling-factor": 1,
              "default-network-mapping": "internal-simulator"
            }
          },
          {
            "dotnet": {
              "database-namespace-generation": [
                "use-network",
                "${someVariable}"
              ]
            }
          }
        ]
      }
    },
    "b6162": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "LIN Networks",
        "description": "List of LIN networks. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/f9bcf/full"
        },
        "examples": [
          [
            {
              "name": "my_lin_network"
            }
          ],
          [
            {
              "name": "my_lin_network",
              "database": "DB_1",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ],
          [
            {
              "name": "my_lin_network",
              "database": "DB_1",
              "application-channel": 42,
              "mapping": "internal-simulator",
              "mode": "responder"
            }
          ]
        ]
      }
    },
    "e46c0": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Programming Modules",
        "description": "Lists of programming modules to be used by the simulation. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/17563/full"
        },
        "examples": [
          [
            {
              "capl-library-path": "path/to/my.vmodule"
            }
          ],
          [
            {
              "c-library-path": "${path_in_variable}"
            },
            {
              "c-library-path": "path/${name_in_variable}"
            }
          ],
          [
            {
              "capl-library-path": "path/to/my.vmodule",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            },
            {
              "capl-library-path": "path/to/my2.vmodule",
              "when": "SCENARIO_NAME == \"another_scenario_name\""
            },
            {
              "c-library-path": "path/to/my.vmodule",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ]
        ]
      }
    },
    "dcb97": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "SIL Kit",
        "description": "SIL Kit settings. Entry can be deactivated with when.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "participant-name"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "registry-uri": {
            "description": "The URI of the registry.",
            "type": "string",
            "anyOf": [
              {
                "pattern": "^[^:]+://[^:/]+(:[0-9]+)?(/[^?#/]+)*(\\?([^=#&]+=[^=#&]+)(&([^=#&]+=[^=#&]+))*)?(#.+)?",
                "default": "silkit://localhost:8500"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              "silkit://localhost:8500"
            ]
          },
          "participant-name": {
            "description": "Name used by the simulation tool to join a simulation as a participant at the start of a measurement.",
            "anyOf": [
              {
                "type": "string"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              "CANoe4SW-SE"
            ]
          },
          "config-file-path": {
            "$ref": "#/definitions/89e83/full"
          },
          "simulation-step-in-micro-sec": {
            "description": "Time length of a single simulation step. Valid only when \"time-source\" is set to \"external-software\".",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 0,
                "maximum": 9223372036854775,
                "default": 100
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "life-cycle-event-timeout-in-sec": {
            "description": "Maximum waiting time for the other simulation participants. Valid only when \"time-source\" is set to \"external-software\".",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 0,
                "maximum": 9223372036,
                "default": 30
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          }
        },
        "examples": [
          {
            "participant-name": "CANoe4SW-SE"
          },
          {
            "registry-uri": "silkit://localhost:8500",
            "participant-name": "CANoe4SW-SE",
            "config-file-path": "path/to/config-file.json"
          },
          {
            "registry-uri": "silkit://localhost:8500",
            "participant-name": "CANoe4SW-SE",
            "config-file-path": "path/to/config-file.json",
            "simulation-step-in-micro-sec": 150
          },
          {
            "registry-uri": "silkit://localhost:8500",
            "participant-name": "CANoe4SW-SE",
            "config-file-path": "path/to/config-file.json",
            "simulation-step-in-micro-sec": 150,
            "life-cycle-event-timeout-in-sec": 30
          }
        ]
      }
    },
    "c47fa": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "System Variables",
        "description": "A list of system variable files. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/8b228/full"
        },
        "examples": [
          [
            {
              "file-path": "path/to/my.vsysvar"
            }
          ],
          [
            {
              "file-path": "path/to/my.vsysvar",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ],
          [
            {
              "file-path": [
                "${path_in_variable}",
                "path/${name_in_variable}"
              ]
            },
            {
              "file-path": "path/to/my.vsysvar"
            }
          ]
        ]
      }
    },
    "f4ed6": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "User Files",
        "description": "List of user files. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/9541b/full"
        },
        "examples": [
          [
            {
              "file-path": "path/to/my.txt"
            }
          ],
          [
            {
              "file-path": "path/to/my.txt",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ],
          [
            {
              "file-path": [
                "${path_in_variable}",
                "path/${name_in_variable}"
              ]
            },
            {
              "file-path": "path/to/my_file.txt"
            }
          ]
        ]
      }
    },
    "b3d04": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "VIO System",
        "description": "VIO System settings. Entry can be deactivated with when.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "file-path",
          "ccd-folder"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/0d74c/full"
          },
          "ccd-folder": {
            "description": "Absolute or relative path to the folder containing the Card Capability Description files (.ccd) of the I/O cards. Relative path specifications are resolved relative to the configuration file.",
            "anyOf": [
              {
                "type": "string"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              "path/to/folder/",
              "${folder_path_in_variable}",
              "path/${folder_name_in_variable}"
            ]
          }
        },
        "examples": [
          {
            "file-path": "path/to/config-file.viocfg",
            "ccd-folder": "path/to/ccdfiles/"
          },
          {
            "file-path": "${path_in_variable}",
            "ccd-folder": "path/to/ccdfiles/",
            "when": "SCENARIO_NAME = \"my_scenario_name\""
          }
        ]
      }
    },
    "b18cf": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "XCP files",
        "description": "List of XCP configuration files. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/2b57a/full"
        },
        "examples": [
          [
            {
              "file-path": "path/to/my.xcpcfg"
            }
          ],
          [
            {
              "file-path": "path/to/my.xcpcfg",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ],
          [
            {
              "file-path": [
                "${path_in_variable}",
                "path/${name_in_variable}"
              ]
            },
            {
              "file-path": "path/to/my.xcp.yaml"
            }
          ]
        ]
      }
    },
    "a46be": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "CAN or CAN FD network",
        "description": "A network using the CAN or CAN FD protocol.",
        "oneOf": [
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "name",
              "database"
            ],
            "properties": {
              "name": {
                "$ref": "#/definitions/038dc/full"
              },
              "when": {
                "$ref": "#/definitions/24f1f/full"
              },
              "database": {
                "$ref": "#/definitions/8ab6a/full",
                "description": "Reference to a database declared in the configuration file."
              },
              "mapping": {
                "$ref": "#/definitions/b7485/full"
              },
              "application-channel": {
                "description": "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.",
                "oneOf": [
                  {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 255,
                    "default": 1
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ]
              }
            }
          },
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "name",
              "database",
              "can-settings"
            ],
            "properties": {
              "name": {
                "$ref": "#/definitions/038dc/full"
              },
              "when": {
                "$ref": "#/definitions/24f1f/full"
              },
              "database": {
                "$ref": "#/definitions/8ab6a/full",
                "description": "Reference to a database declared in the configuration file."
              },
              "mapping": {
                "$ref": "#/definitions/b7485/full"
              },
              "application-channel": {
                "description": "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.",
                "oneOf": [
                  {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 255,
                    "default": 1
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ]
              },
              "can-settings": {
                "$ref": "#/definitions/efe85/full"
              }
            }
          },
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "name",
              "database",
              "can-fd-settings"
            ],
            "properties": {
              "name": {
                "$ref": "#/definitions/038dc/full"
              },
              "when": {
                "$ref": "#/definitions/24f1f/full"
              },
              "database": {
                "$ref": "#/definitions/8ab6a/full",
                "description": "Reference to a database declared in the configuration file."
              },
              "mapping": {
                "$ref": "#/definitions/b7485/full"
              },
              "application-channel": {
                "description": "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.",
                "oneOf": [
                  {
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 255,
                    "default": 1
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ]
              },
              "can-fd-settings": {
                "$ref": "#/definitions/7c619/full"
              }
            }
          }
        ],
        "examples": [
          {
            "name": "my_can_network",
            "database": "databaseName"
          },
          {
            "name": "my_can_network",
            "database": "databaseName",
            "can-settings": {
              "bit-rate-k-bit-s": 500.0,
              "sample-point-in-percent": 70.0
            }
          },
          {
            "name": "my_canfd",
            "database": "databaseName",
            "can-fd-settings": {
              "mode": "iso",
              "arbitration-bit-rate-k-bit-s": 500.0,
              "data-bit-rate-k-bit-s": 1000.0,
              "arbitration-sample-point-in-percent": 75.0,
              "data-sample-point-in-percent": 80.0
            }
          },
          {
            "name": "my_can_network",
            "database": "databaseName",
            "when": "SCENARIO_NAME == \"my_scenario_name\""
          }
        ]
      }
    },
    "e1d24": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Datasources",
        "description": "Defines datasources used by the application models (.vcdl/.vcodm). Input files can be deactivated with when.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "file-path"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/66d5a/full"
          },
          "defines": {
            "$ref": "#/definitions/b0390/full"
          }
        },
        "examples": [
          {
            "file-path": "path/to/my.vcdl"
          },
          {
            "file-path": [
              "path/to/my.vcodm",
              "${path_in_variable}",
              "path/${name_in_variable}"
            ]
          },
          {
            "file-path": "path/to/my.vcdl",
            "defines": [
              "A",
              "B=42"
            ],
            "when": "SCENARIO_NAME == \"my_scenario_name\""
          }
        ]
      }
    },
    "e60e2": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Ethernet network",
        "description": "A network using the Ethernet protocol.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "database": {
            "$ref": "#/definitions/8ab6a/full",
            "description": "Reference to a database declared in the configuration file."
          },
          "tcp-ip-stack-adapter": {
            "$ref": "#/definitions/70a3f/full"
          },
          "mapping": {
            "$ref": "#/definitions/b7485/full"
          },
          "application-channel": {
            "description": "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.",
            "oneOf": [
              {
                "$ref": "#/definitions/779cd/full"
              },
              {
                "type": "integer",
                "minimum": 1,
                "maximum": 32
              }
            ]
          },
          "measurement-ports": {
            "description": "A List if measurement ports whose data you want to measure (e.g. for logging).",
            "type": "array",
            "items": {
              "type": "string",
              "oneOf": [
                {
                  "pattern": "^[a-zA-Z][a-zA-Z0-9_]*$"
                },
                {
                  "pattern": "^([a-zA-Z][a-zA-Z0-9_]*)?\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[a-zA-Z0-9_]*$"
                }
              ],
              "examples": [
                "Port1",
                "Port2",
                "${var_with_port}"
              ]
            }
          }
        },
        "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
                }
              ]
            }
          }
        ]
      }
    },
    "a771d": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "FlexRay cluster",
        "description": "A cluster using the FlexRay protocol.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "database"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "database": {
            "$ref": "#/definitions/8ab6a/full",
            "description": "Reference to a database declared in the configuration file."
          },
          "application-channel": {
            "description": "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.",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 1,
                "maximum": 32,
                "default": 1
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "mapping": {
            "$ref": "#/definitions/b7485/full"
          },
          "key-slot-configuration": {
            "$ref": "#/definitions/f6a56/full"
          }
        },
        "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"
              }
            }
          }
        ]
      }
    },
    "d7199": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "FlexRay replay block",
        "description": "A replay block for the FlexRay protocol.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "file-path",
          "network"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/ac192/full"
          },
          "network": {
            "$ref": "#/definitions/8ab6a/full",
            "description": "Name of the FlexRay cluster, this replay node is attached to."
          },
          "replay-on-measurement-start": {
            "description": "Replay starts with measurement start.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              true,
              false,
              "${variable}"
            ]
          },
          "channel-mapping": {
            "$ref": "#/definitions/eff39/full"
          },
          "replay-nodes": {
            "description": "List of nodes, whose transmitted messages should be replayed from the logging file. If not set, all are active by default.",
            "default": [],
            "type": "array",
            "items": {
              "$ref": "#/definitions/8ab6a/full"
            }
          }
        },
        "examples": [
          {
            "name": "ReplayBlock",
            "file-path": "MyLoggingFile.blf",
            "network": "flexRay1"
          },
          {
            "name": "ReplayBlock",
            "file-path": "MyLoggingFile.blf",
            "network": "flexRay1",
            "when": "SCENARIO_NAME == \"MyScenario\""
          },
          {
            "name": "ReplayBlock",
            "file-path": "MyLoggingFile.blf",
            "network": "flexRay1",
            "replay-on-measurement-start": true,
            "channel-mapping": {
              "default-mapping": "as-in-original"
            },
            "replay-nodes": [
              "ECU1",
              "ECU2"
            ]
          },
          {
            "name": "ReplayBlock",
            "file-path": "MyLoggingFile.blf",
            "network": "flexRay1",
            "channel-mapping": {
              "default-mapping": "ignore-all",
              "mappings": [
                {
                  "source-network": "flexray2"
                }
              ]
            }
          }
        ]
      }
    },
    "a0975": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Global settings for Ethernet",
        "description": "Global settings for Ethernet.",
        "type": "object",
        "properties": {
          "access-mode": {
            "description": "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).",
            "oneOf": [
              {
                "enum": [
                  "network-based",
                  "channel-based"
                ],
                "default": "network-based"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              "network-based",
              "channel-based"
            ]
          },
          "signal-updates": {
            "description": "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.",
            "oneOf": [
              {
                "$ref": "#/definitions/779cd/full"
              },
              {
                "const": "always",
                "description": "Events of all ports are used to update a signal without qualified Ethernet port."
              },
              {
                "const": "rx-only",
                "description": "Only packets received by the interface are used, which leads to less duplicated updates."
              },
              {
                "const": "never",
                "description": "Signals without qualified Ethernet ports are not updated."
              }
            ],
            "default": "always",
            "examples": [
              "always",
              "rx-only",
              "never"
            ]
          },
          "tcp-ip-stack": {
            "$ref": "#/definitions/d082a/full"
          }
        },
        "additionalProperties": false,
        "examples": [
          {
            "access-mode": "network-based"
          },
          {
            "access-mode": "channel-based",
            "signal-updates": "always"
          },
          {
            "signal-updates": "rx-only"
          },
          {
            "signal-updates": "never"
          }
        ]
      }
    },
    "f9bcf": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "LIN network",
        "description": "A network using the LIN protocol.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "database": {
            "$ref": "#/definitions/8ab6a/full",
            "description": "Reference to a database declared in the configuration file."
          },
          "application-channel": {
            "description": "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.",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 1,
                "maximum": 255,
                "default": 1
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "mapping": {
            "$ref": "#/definitions/b7485/full"
          },
          "mode": {
            "description": "Working mode of the LIN interface.\n \"commander\": the LIN network interface is able to output message headers on the network.\n \"responder\": the LIN network interface responds to received LIN headers if a response to the LIN ID contained within the header has been configured.",
            "oneOf": [
              {
                "enum": [
                  "commander",
                  "responder"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "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"
          }
        ]
      }
    },
    "cfd6f": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "LIN replay block",
        "description": "A replay block for the LIN protocol.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "file-path"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/ac192/full"
          },
          "replay-on-measurement-start": {
            "description": "Replay starts with measurement start.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              true,
              false,
              "${variable}"
            ]
          },
          "send-system-variables": {
            "description": "Sends the system variable values.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              true,
              false,
              "${variable}"
            ]
          },
          "start-timing-condition": {
            "$ref": "#/definitions/548bf/full"
          },
          "channel-mapping": {
            "$ref": "#/definitions/b2867/full"
          },
          "replay-mode": {
            "description": "Selects events to be replayed. \n\"all-responses\": replay all the responses.\n\"master-responses-only\": replay the responses only for frames published by the Master node.\n\"master-requests-only\": replay only 0x3c responses.\n\"no-headers\": disable replay of the LIN frame headers.",
            "default": "all-responses",
            "oneOf": [
              {
                "type": "string",
                "enum": [
                  "all-responses",
                  "master-responses-only",
                  "master-requests-only",
                  "no-headers"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "send-events": {
            "description": "Selects 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.\n For \"all-responses\" or \"master-responses-only\": all events are sent.\n For \"master-requests-only\": only wakeup-events are sent.\n For \"no-headers\": none of the events are sent.",
            "oneOf": [
              {
                "type": "array",
                "items": {
                  "anyOf": [
                    {
                      "type": "string",
                      "enum": [
                        "tx-responses",
                        "rx-responses",
                        "wakeup-signals"
                      ]
                    },
                    {
                      "$ref": "#/definitions/779cd/full"
                    }
                  ]
                }
              }
            ]
          }
        },
        "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"
            ]
          }
        ]
      }
    },
    "adad4": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "oneOf": [
          {
            "$ref": "#/definitions/779cd/full"
          },
          {
            "$ref": "#/definitions/1030e/full"
          }
        ]
      }
    },
    "e298b": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to an application model (.can/.canencr/.cs/.sln/.py/.vmodule). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[Cc][Ss]$"
          },
          {
            "pattern": "^.*\\.[Pp][Yy]$"
          },
          {
            "pattern": "^.*\\.[Ss][Ll][Nn]$"
          },
          {
            "pattern": "^.*\\.[Cc][Aa][Nn]$"
          },
          {
            "pattern": "^.*\\.[Cc][Aa][Nn][Ee][Nn][Cc][Rr]$"
          },
          {
            "pattern": "^.*\\.[vV][mM][oO][dD][uU][lL][eE]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "my_dotnet.cs",
          "my_python.py",
          "my_visual_studio.sln",
          "my_capl_file.can",
          "my_encrypted_capl_file.canencr",
          "my_module.vmodule",
          "${some_variable}"
        ]
      }
    },
    "b7485": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "$ref": "#/definitions/83eeb/full",
        "description": "Defines the mapping of application channels to an underlying layer. Connects the network either to simulated network (\"internal-simulator\"), hardware (\"external-hardware\") or to SIL Kit (\"external-sil-kit\")."
      }
    },
    "efe85": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "CAN network settings",
        "description": "Settings for the CAN network.",
        "type": "object",
        "additionalProperties": false,
        "minProperties": 1,
        "properties": {
          "bit-rate-k-bit-s": {
            "description": "Bit rate of the CAN bus in kbit/s. \n If this value is set, it has priority. \n If this value is not set, the bit rate is read from the database. If it is missing from the database, the default value is used.",
            "oneOf": [
              {
                "type": "number",
                "minimum": 5.0,
                "maximum": 2000,
                "default": 500.0,
                "multipleOf": 0.001
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "sample-point-in-percent": {
            "$ref": "#/definitions/a2e72/full"
          }
        },
        "examples": [
          {
            "bit-rate-k-bit-s": 500.0
          },
          {
            "sample-point-in-percent": 70.0
          },
          {
            "bit-rate-k-bit-s": 500.0,
            "sample-point-in-percent": 70.0
          }
        ]
      }
    },
    "ac192": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a logging file (.blf). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[bB][lL][fF]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/my.blf",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "b2867": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Channel mapping",
        "description": "The channel mapping for a replay block.",
        "type": "object",
        "additionalProperties": false,
        "required": [],
        "properties": {
          "default-mapping": {
            "description": "The default mapping of a channel if not explicitly mapped.",
            "oneOf": [
              {
                "const": "as-in-original",
                "description": "The channel is mapped to itself if there is an active network."
              },
              {
                "const": "ignore-all",
                "description": "The channels are ignored by default."
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "mappings": {
            "title": "Explicit mappings",
            "description": "The explicitly mapped channels. Overwrites the default mapping for the source.",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "title": "Map source channel",
                  "type": "object",
                  "description": "Mapping from application channel of the replay file to a target network.",
                  "additionalProperties": false,
                  "required": [
                    "source-channel",
                    "target-network"
                  ],
                  "properties": {
                    "source-channel": {
                      "$ref": "#/definitions/20152/full",
                      "description": "The source application channel from the replayed file."
                    },
                    "target-network": {
                      "description": "The target network name.",
                      "oneOf": [
                        {
                          "$ref": "#/definitions/038dc/full"
                        },
                        {
                          "$ref": "#/definitions/779cd/full"
                        }
                      ]
                    }
                  }
                },
                {
                  "title": "Map source network",
                  "type": "object",
                  "description": "Mapping from a named source network of the replay file to a named target network.",
                  "additionalProperties": false,
                  "required": [
                    "source-network",
                    "target-network"
                  ],
                  "properties": {
                    "source-network": {
                      "description": "The source network name. Only works if the replay file was created by CANoe and contains the relevant metadata.",
                      "type": "string"
                    },
                    "target-network": {
                      "description": "The target network name.",
                      "oneOf": [
                        {
                          "$ref": "#/definitions/038dc/full"
                        },
                        {
                          "$ref": "#/definitions/779cd/full"
                        }
                      ]
                    }
                  }
                },
                {
                  "title": "Ignore source channel",
                  "type": "object",
                  "description": "Ignores an application channel of the replay file.",
                  "additionalProperties": false,
                  "required": [
                    "ignore-source-channel"
                  ],
                  "properties": {
                    "ignore-source-channel": {
                      "$ref": "#/definitions/20152/full",
                      "description": "The ignored source channel."
                    }
                  }
                },
                {
                  "title": "Ignore source network",
                  "type": "object",
                  "description": "Ignores a named source network of the replay file.",
                  "additionalProperties": false,
                  "required": [
                    "ignore-source-network"
                  ],
                  "properties": {
                    "ignore-source-network": {
                      "description": "The ignored source network name. Only works if the replay file was created by CANoe and contains the relevant metadata.",
                      "type": "string"
                    }
                  }
                }
              ]
            }
          }
        },
        "examples": [
          {
            "default-mapping": "as-in-original"
          },
          {
            "default-mapping": "ignore-all",
            "mappings": [
              {
                "source-channel": 1,
                "target-network": "CAN1"
              }
            ]
          },
          {
            "default-mapping": "as-in-original",
            "mappings": [
              {
                "source-network": "CAN1",
                "target-network": "CAN2"
              }
            ]
          },
          {
            "default-mapping": "as-in-original",
            "mappings": [
              {
                "ignore-source-channel": 2
              },
              {
                "ignore-source-network": "CAN4"
              }
            ]
          }
        ]
      }
    },
    "e1d8f": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Name of the database. It implicitly selects a network if the names are matching. Must be a C-identifier (case sensitive)",
        "type": "string",
        "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$",
        "examples": [
          "myid",
          "THIS_IS_CASE_SENSITIVE",
          "__1_2_3_4_5__"
        ]
      }
    },
    "b29db": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a .arxml/.dbc/.ldf. Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[Aa][Rr][Xx][Mm][Ll]$"
          },
          {
            "pattern": "^.*\\.[Dd][Bb][Cc]$"
          },
          {
            "pattern": "^.*\\.[Ll][Dd][Ff]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/some.dbc",
          "path/to/some.arxml",
          "path/to/some.ldf",
          "path/${var_with_name}",
          "${var_with_path}"
        ]
      }
    },
    "b0390": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "List of defines to be passed to the VCDL importer.",
        "type": "array",
        "items": {
          "anyOf": [
            {
              "$ref": "#/definitions/3e203/full"
            },
            {
              "$ref": "#/definitions/779cd/full"
            }
          ]
        },
        "examples": [
          [
            "mydefine1",
            "mydefine2"
          ],
          [
            "mydefine_with_value=42",
            "${var_with_define_name}=${var_with_define_value}"
          ]
        ]
      }
    },
    "e173a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Define to be passed to CAPL, .NET, Python and VCDL.",
        "type": "string",
        "pattern": "^([a-zA-Z_]|([a-zA-Z_][a-zA-Z0-9_]*)?\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\})[a-zA-Z0-9_]*(=([+-]?(0|[1-9][0-9]*)|(\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\})|[Tt]rue|[Ff]alse))?$",
        "examples": [
          "mydefine1",
          "mydefine2",
          "mydefine_with_value=42",
          "${var_with_define_name}=${var_with_define_value}"
        ]
      }
    },
    "b004d": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a diagnostic description file (.cdd/.pdx). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[cC][dD][dD]$"
          },
          {
            "pattern": "^.*\\.[pP][dD][xX]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/some.cdd",
          "path/${var_with_name}",
          "path/to/some.pdx",
          "${var_with_path}"
        ]
      }
    },
    "f6a56": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Via the key slot configuration it is possible to transmit two start-up/sync frames. Thus an external start-up node is not required for the start-up of a FlexRay cluster.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "slot-1": {
            "$ref": "#/definitions/d15ff/full"
          },
          "slot-2": {
            "$ref": "#/definitions/d15ff/full"
          }
        }
      }
    },
    "eff39": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Channel mapping",
        "description": "The channel mapping for a FlexRay replay block.",
        "type": "object",
        "additionalProperties": false,
        "required": [],
        "properties": {
          "default-mapping": {
            "description": "The default mapping of a channel if not explicitly mapped.",
            "oneOf": [
              {
                "const": "as-in-original",
                "description": "All channels linked to the network this node is attached to are mapped."
              },
              {
                "const": "ignore-all",
                "description": "The channels are ignored by default."
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "mappings": {
            "title": "Explicit mappings",
            "description": "The explicitly mapped channels. Overwrites the default mapping for the source.",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "title": "Map source network",
                  "type": "object",
                  "description": "Mapping of a named source network from the replay file to the network this node is linked to.",
                  "additionalProperties": false,
                  "required": [
                    "source-network"
                  ],
                  "properties": {
                    "source-network": {
                      "description": "The source network name. Only works if the replay file was created by CANoe and contains the relevant metadata.",
                      "type": "string"
                    }
                  }
                },
                {
                  "title": "Map source channel",
                  "type": "object",
                  "description": "Mapping of an application channel from the replay file to the network this node is linked to.",
                  "additionalProperties": false,
                  "required": [
                    "source-channel"
                  ],
                  "properties": {
                    "source-channel": {
                      "$ref": "#/definitions/20152/full",
                      "description": "The source application channel from the replayed file."
                    }
                  }
                }
              ]
            }
          }
        },
        "examples": [
          {
            "default-mapping": "as-in-original"
          },
          {
            "default-mapping": "ignore-all",
            "mappings": [
              {
                "source-channel": 1
              }
            ]
          },
          {
            "default-mapping": "as-in-original",
            "mappings": [
              {
                "source-network": "flexray2"
              },
              {
                "source-channel": 3
              }
            ]
          }
        ]
      }
    },
    "d082a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Global configuration for the TCP/IP stack.",
        "anyOf": [
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "selected-stack"
            ],
            "properties": {
              "selected-stack": {
                "description": "If set to \"operating-system\", the machine configuration is used. If set to \"canoe\", a custom configuration can be provided.",
                "oneOf": [
                  {
                    "const": "operating-system",
                    "description": "If set to \"operating-system\", the machine configuration is used. Use \"canoe\" if settings should be provided manually."
                  }
                ],
                "default": "operating-system",
                "examples": [
                  "canoe",
                  "operating-system"
                ]
              }
            }
          },
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "selected-stack"
            ],
            "properties": {
              "selected-stack": {
                "description": "If set to \"operating-system\", the machine configuration is used. If set to \"canoe\", a custom configuration can be provided.",
                "oneOf": [
                  {
                    "const": "canoe",
                    "description": "If set to \"canoe\", a custom configuration can be provided (remove other elements for option \"operating-system\")."
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ],
                "default": "operating-system",
                "examples": [
                  "canoe",
                  "operating-system"
                ]
              },
              "activate-routing": {
                "$ref": "#/definitions/698c3/full"
              },
              "tcp-delayed-ack": {
                "$ref": "#/definitions/6665e/full"
              },
              "ipv4-gateway": {
                "$ref": "#/definitions/8b747/full"
              },
              "ipv6-gateway": {
                "$ref": "#/definitions/64730/full"
              }
            }
          }
        ],
        "examples": [
          {
            "selected-stack": "canoe",
            "activate-routing": true,
            "tcp-delayed-ack": true,
            "ipv4-gateway": "192.168.0.33",
            "ipv6-gateway": "::1"
          },
          {
            "selected-stack": "operating-system"
          }
        ]
      }
    },
    "de949": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a .vmodule. Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[vV][mM][oO][dD][uU][lL][eE]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/my.vmodule",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "d2ba8": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a .vmodule file. Relative paths are resolved relative to the configuration file.\n If no modeling library is found in the working directory, it is searched in the global modeling libraries.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[vV][mM][oO][dD][uU][lL][eE]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "CANoeILNLVector.vmodule",
          "SomeIP_IL.vmodule",
          "AsrPDUIL2.vmodule",
          "OSEKNM01.vmodule",
          "DMOSEKNM.vmodule",
          "AsrNM30.vmodule",
          "AsrNM33.vmodule",
          "AsrUdpNm.vmodule",
          "AVB_IL.vmodule",
          "CANoeILNL_AUTOSAR_Eth.vmodule",
          "LINtp.vmodule",
          "SCC_ChargePoint.vmodule",
          "SCC_Monitor.vmodule",
          "SCC_Vehicle.vmodule",
          "path/to/my.vmodule",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "c49a5": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "integer",
        "minimum": -9223372036854775808,
        "maximum": 9223372036854775807
      }
    },
    "aa785": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "$comment": "can't use 18446744073709551615 since our validator uses int64",
        "type": "integer",
        "minimum": 0,
        "maximum": 9223372036854775807
      }
    },
    "f26f2": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "number",
        "minimum": -1.79769e+308,
        "maximum": 1.79769e+308
      }
    },
    "a2e72": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Sample point in percent.",
        "oneOf": [
          {
            "type": "number",
            "minimum": 50,
            "maximum": 100,
            "default": 70.0,
            "multipleOf": 0.01
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          60.15,
          75.0,
          "${some_variable}"
        ]
      }
    },
    "d3f0b": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a datasource file (.vcdl/.vcodm). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[vV][cC][dD][lL]$"
          },
          {
            "pattern": "^.*\\.[vV][cC][oO][dD][mM]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/my.vcdl",
          "path/to/my.vcodm",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "cb1c2": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Maximum Transmission Unit.",
        "oneOf": [
          {
            "type": "integer",
            "minimum": 1,
            "maximum": 1500
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "default": 1500
      }
    },
    "a1ba3": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Configurations for IPv4.",
        "anyOf": [
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "address-configuration"
            ],
            "properties": {
              "name": {
                "$ref": "#/definitions/8ab6a/full"
              },
              "address-configuration": {
                "description": "Defines how the addresses are configured. Use \"static\" to configure them manually with the \"addresses\" property or use \"dhcp\" for automatic configuration.",
                "examples": [
                  "dhcp",
                  "static",
                  "linked-local"
                ],
                "oneOf": [
                  {
                    "enum": [
                      "dhcp",
                      "linked-local"
                    ]
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ]
              }
            }
          },
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "address-configuration",
              "addresses"
            ],
            "properties": {
              "addresses": {
                "$ref": "#/definitions/00e8b/full"
              },
              "name": {
                "$ref": "#/definitions/8ab6a/full"
              },
              "address-configuration": {
                "description": "Defines how the addresses are configured. Use \"static\" to configure them manually with the \"addresses\" property or use \"dhcp\" for automatic configuration.",
                "oneOf": [
                  {
                    "const": "static"
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ],
                "examples": [
                  "dhcp",
                  "static",
                  "linked-local"
                ]
              }
            }
          }
        ],
        "examples": [
          {
            "address-configuration": "dhcp",
            "name": "refNameForDoIP"
          },
          {
            "address-configuration": "static",
            "addresses": [
              {
                "address": "192.168.0.2",
                "subnet-mask": "255.255.255.0"
              },
              {
                "address": "192.168.0.3",
                "subnet-prefix-length": 24
              }
            ]
          }
        ]
      }
    },
    "09338": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "integer",
        "minimum": 0,
        "maximum": 65535
      }
    },
    "d15ff": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Configuration of a key slot node.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "description": "Key slot operating modes. \n\"automatic\": the key slot is possibly active. Any active frame in the Tx buffer will be selected for this key slot, if marked as start-up and/or sync frame. \n\"deactivated\": the key slot is not used. \n\"manual\": explicit definition of the key slot properties.  If set to \"manual\" the properties \"usage\", \"slot\", \"mask\" and \"leading-cold-start\" are mandatory.",
            "default": "automatic",
            "oneOf": [
              {
                "const": "automatic"
              },
              {
                "const": "deactivated"
              },
              {
                "const": "manual"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              "manual",
              "automatic"
            ]
          },
          "usage": {
            "oneOf": [
              {
                "enum": [
                  "startup",
                  "sync"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "description": "The frame in this slot can be send as start-up or only as sync frame. Only allowed if property \"mode\" is set to \"manual\".",
            "default": "startup"
          },
          "slot": {
            "oneOf": [
              {
                "type": "integer",
                "minimum": 1,
                "maximum": 2047,
                "default": 1
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "description": "Explicit slot number of the static segment that will be used as the key slot. Only allowed if property \"mode\" is set to \"manual\"."
          },
          "mask": {
            "oneOf": [
              {
                "enum": [
                  "A",
                  "B",
                  "AB"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "description": "Explicit channel mask used for the key slot. Only allowed if property \"mode\" is set to \"manual\".",
            "default": "A"
          },
          "leading-cold-start": {
            "oneOf": [
              {
                "type": "boolean"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "description": "If deactivated the key slot can only act as a following start-up or integrating sync frame. Only allowed if property \"mode\" is set to \"manual\".",
            "default": true
          }
        },
        "allOf": [
          {
            "$comment": "prune-node-from-doc",
            "if": {
              "required": [
                "mode"
              ],
              "properties": {
                "mode": {
                  "const": "manual"
                }
              }
            },
            "then": {
              "required": [
                "usage",
                "slot",
                "mask",
                "leading-cold-start"
              ],
              "properties": {
                "mask": true,
                "usage": true,
                "slot": true,
                "leading-cold-start": true
              }
            }
          },
          {
            "$comment": "prune-node-from-doc",
            "if": {
              "required": [
                "mode"
              ],
              "properties": {
                "mode": {
                  "anyOf": [
                    {
                      "const": "deactivated"
                    },
                    {
                      "const": "automatic"
                    }
                  ]
                }
              }
            },
            "then": {
              "properties": {
                "usage": false,
                "slot": false,
                "mask": false,
                "leading-cold-start": false
              }
            }
          }
        ],
        "examples": [
          {
            "mode": "automatic"
          },
          {
            "mode": "manual",
            "usage": "startup",
            "slot": 2,
            "mask": "A",
            "leading-cold-start": true
          }
        ]
      }
    },
    "eaee8": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "IPv6 address",
        "type": "string",
        "oneOf": [
          {
            "pattern": "^([0-9A-Fa-f]{1,4}(:[0-9A-Fa-f]{1,4}){7}|:(:[0-9A-Fa-f]{1,4}){1,7}|([0-9A-Fa-f]{1,4}:){1,7}:|::|([0-9A-Fa-f]{1,4}:){1}(:[0-9A-Fa-f]{1,4}){1,6}|([0-9A-Fa-f]{1,4}:){2}(:[0-9A-Fa-f]{1,4}){1,5}|([0-9A-Fa-f]{1,4}:){3}(:[0-9A-Fa-f]{1,4}){1,4}|([0-9A-Fa-f]{1,4}:){4}(:[0-9A-Fa-f]{1,4}){1,3}|([0-9A-Fa-f]{1,4}:){5}(:[0-9A-Fa-f]{1,4}){1,2}|([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}){1})$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "1234:0000:0000:0000:0000:0000:0000:abcd",
          "1234::abcd",
          "::1"
        ]
      }
    },
    "0b082": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Version",
        "description": "Schema version for the venvironment.yaml configuration file. Acceptance criteria: equal major version, less/equal minor and patch version.",
        "const": "3.0.0",
        "type": "string",
        "examples": [
          "3.0.0"
        ]
      }
    },
    "04874": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "CAN and CAN FD Networks",
        "description": "List of CAN and CAN FD networks. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/a46be/full"
        },
        "examples": [
          [
            {
              "name": "my_can_network",
              "database": "DB_1",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ],
          [
            {
              "name": "my_canfd",
              "database": "DB_1",
              "mapping": "internal-simulator"
            }
          ],
          [
            {
              "name": "my_can_network",
              "database": "DB_1",
              "application-channel": 42,
              "mapping": "internal-simulator",
              "can-settings": {
                "bit-rate-k-bit-s": 500.0,
                "sample-point-in-percent": 75.0
              }
            }
          ],
          [
            {
              "name": "my_canfd",
              "database": "databaseName",
              "can-fd-settings": {
                "mode": "iso",
                "arbitration-bit-rate-k-bit-s": 500.0,
                "data-bit-rate-k-bit-s": 1000.0,
                "arbitration-sample-point-in-percent": 75.0,
                "data-sample-point-in-percent": 80.0
              }
            }
          ]
        ]
      }
    },
    "1b9ac": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Databases",
        "description": "List of databases. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/12225/full"
        },
        "examples": [
          [
            {
              "name": "mydbname",
              "file-path": "path/to/some.dbc"
            }
          ],
          [
            {
              "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\""
            }
          ]
        ]
      }
    },
    "96ca3": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Datasources",
        "description": "List of datasources. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/e1d24/full"
        },
        "examples": [
          [
            {
              "file-path": "path/to/my.vcdl"
            }
          ],
          [
            {
              "file-path": [
                "path/to/my.vcodm",
                "${path_in_variable}",
                "path/${name_in_variable}"
              ]
            }
          ],
          [
            {
              "file-path": "path/to/my.vcdl",
              "defines": [
                "A",
                "B=42"
              ],
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ]
        ]
      }
    },
    "1e908": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "CAN Networks",
        "description": "List of Ethernet networks. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/e60e2/full"
        },
        "examples": [
          [
            {
              "name": "my_eth_network"
            }
          ],
          [
            {
              "name": "my_eth_network",
              "database": "DB",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ],
          [
            {
              "name": "my_eth_network",
              "database": "DB",
              "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
                  }
                ]
              }
            }
          ]
        ]
      }
    },
    "837d7": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Ethernet Replay Blocks",
        "description": "List of Ethernet replay blocks. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/6737b/full"
        },
        "examples": [
          [
            {
              "name": "my_ethernet_replay_block",
              "file-path": "my_logging_file.blf"
            }
          ],
          [
            {
              "name": "my_ethernet_replay_block",
              "file-path": "my_logging_file.blf",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            },
            {
              "name": "my_ethernet_replay_block",
              "file-path": "another_logging_file.blf",
              "when": "SCENARIO_NAME == \"another_scenario_name\""
            }
          ],
          [
            {
              "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"
              }
            }
          ]
        ]
      }
    },
    "7615c": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "FDX",
        "description": "FDX settings. Entry can be deactivated with when.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "transport-layer",
          "port"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "transport-layer": {
            "description": "Protocol to be used as transport layer for the FDX protocol",
            "default": "udp/ipv4",
            "oneOf": [
              {
                "type": "string",
                "enum": [
                  "udp/ipv4",
                  "udp/ipv6",
                  "tcp/ipv4",
                  "tcp/ipv6"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "port": {
            "description": "UDP or TCP port to be used for the FDX protocol",
            "default": 2809,
            "oneOf": [
              {
                "type": "integer",
                "minimum": 0,
                "maximum": 65535
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "description-files": {
            "description": "List of FDX description files (.xml) that describe which signals or variables are to be exchanged and the manner in which this is to occur (e.g., with regard to grouping).",
            "type": "array",
            "items": {
              "type": "object",
              "additionalProperties": false,
              "required": [
                "file-path"
              ],
              "properties": {
                "when": {
                  "$ref": "#/definitions/24f1f/full"
                },
                "file-path": {
                  "$ref": "#/definitions/4c810/full"
                }
              }
            }
          }
        },
        "examples": [
          {
            "transport-layer": "udp/ipv4",
            "port": 2809
          },
          {
            "transport-layer": "tcp/ipv4",
            "port": 1859,
            "when": "SCENARIO_NAME == \"MyScenario\""
          },
          {
            "transport-layer": "tcp/ipv6",
            "port": 5555,
            "description-files": [
              {
                "file-path": "path/to/first.xml"
              },
              {
                "file-path": "path/to/second.xml"
              }
            ]
          }
        ]
      }
    },
    "49c34": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "FlexRay Clusters",
        "description": "List of FlexRay clusters. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/a771d/full"
        },
        "examples": [
          [
            {
              "name": "my_flexray_cluster",
              "database": "DB_1",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ],
          [
            {
              "name": "my_flexray_cluster",
              "database": "DB_1",
              "key-slot-configuration": {
                "slot-1": {
                  "mode": "manual",
                  "usage": "startup",
                  "mask": "A",
                  "slot": 1,
                  "leading-cold-start": true
                },
                "slot-2": {
                  "mode": "automatic"
                }
              },
              "mapping": "internal-simulator"
            }
          ]
        ]
      }
    },
    "6aa51": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "FlexRay Replay Blocks",
        "description": "List of FlexRay replay blocks. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/d7199/full"
        },
        "examples": [
          [
            {
              "name": "my_flexray_replay_block",
              "file-path": "my_logging_file.blf",
              "network": "frCluster"
            }
          ],
          [
            {
              "name": "my_flexray_replay_block",
              "file-path": "my_logging_file.blf",
              "when": "SCENARIO_NAME == \"my_scenario_name\"",
              "network": "frCluster"
            },
            {
              "name": "my_flexray_replay_block",
              "file-path": "another_logging_file.blf",
              "when": "SCENARIO_NAME == \"another_scenario_name\"",
              "network": "frCluster"
            }
          ]
        ]
      }
    },
    "815f9": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "integer",
        "minimum": 0,
        "maximum": 9223372036854775807
      }
    },
    "51dea": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "LIN Replay Blocks",
        "description": "List of LIN replay blocks. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/cfd6f/full"
        },
        "examples": [
          [
            {
              "name": "my_lin_replay_block",
              "file-path": "my_logging_file.blf"
            }
          ],
          [
            {
              "name": "my_lin_replay_block",
              "file-path": "my_logging_file.blf",
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            },
            {
              "name": "my_lin_replay_block",
              "file-path": "another_logging_file.blf",
              "when": "SCENARIO_NAME == \"another_scenario_name\""
            }
          ],
          [
            {
              "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"
              ]
            }
          ]
        ]
      }
    },
    "9d210": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Logging Block",
        "description": "Configuration of the logging.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "file-name"
        ],
        "properties": {
          "file-name": {
            "$ref": "#/definitions/53b00/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "logging-events": {
            "type": "array",
            "description": "List of event types to be logged.",
            "default": [
              "application-layer",
              "bus",
              "diagnostic",
              "internal",
              "statistic",
              "system-variable",
              "test"
            ],
            "items": {
              "anyOf": [
                {
                  "type": "string",
                  "enum": [
                    "application-layer",
                    "bus",
                    "diagnostic",
                    "internal",
                    "statistic",
                    "system-variable",
                    "test"
                  ]
                },
                {
                  "$ref": "#/definitions/779cd/full"
                }
              ]
            }
          },
          "advanced": {
            "$ref": "#/definitions/34a76/full"
          },
          "toggle-trigger": {
            "$ref": "#/definitions/8cc99/full"
          },
          "test-trigger": {
            "$ref": "#/definitions/0a579/full"
          }
        },
        "anyOf": [
          {
            "if": {
              "properties": {
                "test-trigger": true
              }
            },
            "then": {
              "properties": {
                "toggle-trigger": false
              }
            }
          },
          {
            "if": {
              "properties": {
                "toggle-trigger": true
              }
            },
            "then": {
              "properties": {
                "test-trigger": false
              }
            }
          }
        ],
        "examples": [
          {
            "file-name": "file-name.blf",
            "logging-events": [
              "bus",
              "diagnostic",
              "internal",
              "${someVariable}"
            ],
            "advanced": {
              "warn-overwritten-log-file": true,
              "show-error-on-data-loss": false
            }
          },
          {
            "file-name": "log_{IncTrigger|001}.blf",
            "test-trigger": {
              "scope": "test-unit",
              "verdict": [
                "fail",
                "error-in-test-system"
              ],
              "pre-trigger-time-ms": 1000,
              "post-trigger-time-ms": 1000,
              "buffer-size": 5000
            }
          },
          {
            "file-name": "log_{TriggerCondition}_{LocalTime}.blf",
            "toggle-trigger": {
              "pre-trigger-time-ms": 1000,
              "post-trigger-time-ms": 1000,
              "buffer-size": 5000
            }
          }
        ]
      }
    },
    "72c68": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Scenarios",
        "description": "List of scenarios with the option to define or override variables and defines.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/51ba8/full"
        },
        "examples": [
          [
            {
              "name": "my_scenario_name"
            }
          ],
          [
            {
              "name": "my_scenario_name"
            },
            {
              "name": "override_variables",
              "variables": [
                {
                  "name": "three",
                  "value": 3
                }
              ]
            },
            {
              "name": "override_defines",
              "defines": [
                "mydefine",
                "mydevine_with_value=42"
              ]
            }
          ],
          [
            {
              "name": "internal",
              "variables": [
                {
                  "name": "source",
                  "value": "internal-realtime"
                },
                {
                  "name": "mapping",
                  "value": "internal-simulator"
                }
              ]
            },
            {
              "name": "externalHardware",
              "variables": [
                {
                  "name": "source",
                  "value": "external-hardware"
                },
                {
                  "name": "mapping",
                  "value": "external-hardware"
                }
              ]
            },
            {
              "name": "externalSoftware",
              "variables": [
                {
                  "name": "source",
                  "value": "external-software"
                },
                {
                  "name": "mapping",
                  "value": "external-sil-kit"
                }
              ]
            }
          ]
        ]
      }
    },
    "16170": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Security",
        "description": "Security settings",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "network-profile-assignments": {
            "$ref": "#/definitions/8e253/full"
          },
          "stack-profile-assignments": {
            "$ref": "#/definitions/0bf0f/full"
          },
          "operating-system-stack-profile-id": {
            "$ref": "#/definitions/adad4/full",
            "description": "The ID of the assigned security profile to the OS Ethernet stack."
          },
          "shared-canoe-stack-profile-id": {
            "$ref": "#/definitions/adad4/full",
            "description": "The ID of the assigned security profile to the shared CANoe Ethernet stack."
          }
        },
        "examples": [
          {
            "network-profile-assignments": [
              {
                "network": "CAN",
                "profile-id": 123456
              }
            ]
          },
          {
            "stack-profile-assignments": [
              {
                "simulation-node": "MyNode",
                "profile-id": 123456
              },
              {
                "simulation-node": "AnotherNode",
                "profile-id": 987654
              }
            ],
            "operating-system-stack-profile-id": 24680,
            "shared-canoe-stack-profile-id": 13579
          }
        ]
      }
    },
    "21a68": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Simulation Nodes",
        "description": "List of simulation nodes. Entries can be deactivated with when.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/81e26/full"
        },
        "examples": [
          [
            {
              "name": "mynode",
              "network-assignments": [
                {
                  "network": "my_can_network_1"
                }
              ]
            }
          ],
          [
            {
              "name": "mynode",
              "network-assignments": [
                {
                  "network": "my_can_network_1"
                }
              ],
              "when": "SCENARIO_NAME == \"my_scenario_name\""
            }
          ],
          [
            {
              "name": "mynode",
              "network-assignments": [
                {
                  "network": "my_can_network_1"
                }
              ],
              "file-path": "path/to/my_capl_script.can",
              "when": "SCENARIO_NAME == \"my_scenario_name1\""
            },
            {
              "name": "programming_node",
              "file-path": "path/to/my_dotnet.cs",
              "database-node": false,
              "network-assignments": [
                {
                  "network": "my_can_network_1"
                }
              ],
              "defines": [
                "mydefine1",
                "mydefine2"
              ],
              "modeling-libraries": [
                "modeling/lib/1.vmodule",
                "${path_in_var}"
              ]
            }
          ]
        ]
      }
    },
    "6cf52": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Variables",
        "description": "List of variables to be used in this configuration file.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/9d153/full"
        },
        "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
              ]
            }
          ]
        ]
      }
    },
    "392a2": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Application Model",
        "description": "Describes an application model (.can/.canencr/.cs/.sln/.py/.vmodule). Also supports local defines.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "file-path"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/e298b/full"
          },
          "defines": {
            "$ref": "#/definitions/4a339/full"
          }
        },
        "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\""
          }
        ]
      }
    },
    "0be70": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "CAN replay block",
        "description": "A replay block for the CAN protocol.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "file-path"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/ac192/full"
          },
          "replay-on-measurement-start": {
            "description": "Replay starts with measurement start.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              true,
              false,
              "${variable}"
            ]
          },
          "send-system-variables": {
            "description": "Sends the system variable values.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              true,
              false,
              "${variable}"
            ]
          },
          "start-timing-condition": {
            "$ref": "#/definitions/548bf/full"
          },
          "channel-mapping": {
            "$ref": "#/definitions/b2867/full"
          },
          "send-tx-messages": {
            "description": "Sends the tx messages.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              true,
              false,
              "${variable}"
            ]
          },
          "send-rx-messages": {
            "description": "Sends the rx messages.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "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"
            }
          }
        ]
      }
    },
    "12225": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Database",
        "description": "Describes a .arxml/.dbc/.ldf. A network from the database can be selected implicitly via \"name\" or explicitly via \"network-name\".",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "file-path"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/e1d8f/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "network-name": {
            "description": "Selects a network from the database (cluster if .arxml). Overrides the selection of the name property.",
            "type": "string"
          },
          "file-path": {
            "$ref": "#/definitions/b29db/full"
          }
        },
        "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\""
          }
        ]
      }
    },
    "689c5": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Define",
        "description": "Defines to be passed to CAPL, .NET, Python and VCDL.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "define"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "define": {
            "anyOf": [
              {
                "$ref": "#/definitions/e173a/full"
              },
              {
                "$ref": "#/definitions/4a339/full"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          }
        },
        "examples": [
          {
            "define": "mydefine1"
          },
          {
            "define": [
              "mydefine1",
              "mydefine2"
            ]
          },
          {
            "define": [
              "mydefine1",
              "mydefine2"
            ],
            "when": "SCENARIO_NAME == \"my_scenario_name\""
          },
          {
            "define": [
              "mydefine_with_value=42",
              "${var_with_define_name}=${var_with_define_value}"
            ]
          }
        ]
      }
    },
    "0894d": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Diagnostic description",
        "description": "Diagnostic description with CDD or PDX.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "file-path",
          "interface",
          "variant",
          "network-assignment"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "ecu-identifier": {
            "$ref": "#/definitions/8ab6a/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/b004d/full"
          },
          "interface": {
            "description": "Interfaces in diagnostic description files define the communication parameters for accessing an ECU. Additional default interfaces are offered.",
            "oneOf": [
              {
                "$ref": "#/definitions/038dc/full"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "variant": {
            "description": "The variant determines which services and parameters are available for diagnostics and communication.",
            "oneOf": [
              {
                "$ref": "#/definitions/038dc/full"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "network-assignment": {
            "$ref": "#/definitions/8ab6a/full",
            "description": "Name of the network this diagnostic description is attached to."
          },
          "language": {
            "description": "A diagnostic description file can contain several language versions of which one has to be selected. Note, that some diagnostic descriptions only support one single language.",
            "type": "string",
            "oneOf": [
              {
                "pattern": "^[a-z]{2}[-][A-Z]{2}$"
              },
              {
                "pattern": "^[a-z]{2}$"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "communication-parameters": {
            "$ref": "#/definitions/576ec/full"
          },
          "doip-settings": {
            "$ref": "#/definitions/94efe/full"
          }
        },
        "examples": [
          {
            "name": "DoorFL",
            "file-path": "description.cdd",
            "interface": "Normal_29BitBase_Variant",
            "variant": "Common",
            "language": "en-US",
            "network-assignment": "can_network"
          },
          {
            "name": "DoorFL",
            "file-path": "description.pdx",
            "ecu-identifier": "Door",
            "interface": "Normal_29BitBase_Variant",
            "variant": "Common",
            "network-assignment": "can_network"
          },
          {
            "name": "DoorFL",
            "when": "SCENARIO_NAME == \"MyScenario\"",
            "file-path": "description.cdd",
            "interface": "Normal_29BitBase_Variant",
            "variant": "Common",
            "network-assignment": "can_network"
          },
          {
            "name": "DoorFL",
            "file-path": "description.cdd",
            "interface": "${MyVariable}",
            "variant": "Common",
            "network-assignment": "eth_network",
            "communication-parameters": {
              "p6-client": 1000,
              "p2-server": 50
            },
            "doip-settings": {
              "tls-mode": "routing-activation",
              "tls-client": "Initial TLS Configuration",
              "tcp-ip-stack-adapter": "ref_name"
            }
          }
        ]
      }
    },
    "6737b": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Ethernet replay block",
        "description": "A replay block for the Ethernet protocol.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "file-path"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/ac192/full"
          },
          "replay-on-measurement-start": {
            "description": "Replay starts with measurement start.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              true,
              false,
              "${variable}"
            ]
          },
          "send-system-variables": {
            "description": "Sends the system variable values.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              true,
              false,
              "${variable}"
            ]
          },
          "start-timing-condition": {
            "$ref": "#/definitions/548bf/full"
          },
          "channel-mapping": {
            "$ref": "#/definitions/b2867/full"
          }
        },
        "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"
            }
          }
        ]
      }
    },
    "24f1f": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Node is added to the environment only if the specified condition is true.",
        "oneOf": [
          {
            "$comment": "impossible to express this grammar as a regex",
            "description": "A condition containing logical operators (e.g., ` (intvar > 0 && boolvar) || strvar != \"setup_a\"`). Variables do not have to be escaped. The additional variable \"SCENARIO_NAME\" always contains the current scenario name.",
            "type": "string"
          },
          {
            "description": "A boolean constant.",
            "type": "boolean"
          }
        ],
        "examples": [
          "SCENARIO_NAME == \"my_scenario_name\"",
          "some_variable == \"somevalue\"",
          "some_int_variable > 42 && some_other_int_variable <= 42",
          true
        ]
      }
    },
    "779cd": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "string",
        "pattern": "\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\}",
        "examples": [
          "${myvarname}"
        ]
      }
    },
    "4c810": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a FDX description file (.xml). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[xX][mM][lL]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/myDescriptionFile.xml",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "6f0a1": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "IPv4 address",
        "type": "string",
        "oneOf": [
          {
            "pattern": "((1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])\\.){3}(1?[0-9]?[0-9]|2[0-4][0-9]|25[0-5])"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "127.0.0.1",
          "192.168.0.0",
          "172.16.0.0",
          "10.0.0.0"
        ]
      }
    },
    "29784": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Global settings for FlexRay",
        "description": "Global settings for FlexRay controlling the interpretation of frames and PDUs of FlexRay configurations with channels A and B.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "enable-dual-channel-support": {
            "description": "If active, PDUs on both channels will be configured with channel mask \"AB\" and channel postfixes (e.g. xy_Ch_A, xy_Ch_B) will be created for ambiguous objects. If this property is provided \"postfixes-for-ambiguous-pdus-on-channel\" is forbidden.",
            "oneOf": [
              {
                "$ref": "#/definitions/779cd/full"
              },
              {
                "type": "boolean"
              }
            ],
            "default": true
          },
          "postfixes-for-ambiguous-pdus-on-channel": {
            "description": "Definition of postfix settings if dual channel support is not activated. If this property is provided \"enable-dual-channel-support\" is forbidden.",
            "oneOf": [
              {
                "enum": [
                  "A",
                  "B",
                  "A&B",
                  "no-postfixes"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "default": "A&B"
          }
        },
        "allOf": [
          {
            "$comment": "prune-node-from-doc",
            "if": {
              "required": [
                "enable-dual-channel-support"
              ],
              "properties": {
                "enable-dual-channel-support": {
                  "const": true
                }
              }
            },
            "then": {
              "properties": {
                "postfixes-for-ambiguous-pdus-on-channel": false
              }
            }
          },
          {
            "$comment": "prune-node-from-doc",
            "if": {
              "required": [
                "enable-dual-channel-support"
              ],
              "properties": {
                "enable-dual-channel-support": {
                  "const": false
                }
              }
            },
            "then": {
              "required": [
                "postfixes-for-ambiguous-pdus-on-channel"
              ],
              "properties": {
                "postfixes-for-ambiguous-pdus-on-channel": true
              }
            }
          }
        ],
        "examples": [
          {
            "enable-dual-channel-support": true
          },
          {
            "enable-dual-channel-support": false,
            "postfixes-for-ambiguous-pdus-on-channel": "no-postfixes"
          }
        ]
      }
    },
    "9d0dc": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Global settings for database",
        "description": "Global settings for database.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "autosar-pdu-layer": {
            "default": "from-autosar-4.2",
            "description": "Configures the PDU layer in relation to AUTOSAR databases.\n\"no-pdus\" : Creation of frames only \n\"from-autosar-4.0\" : Creation of AUTOSAR PDUs for AUTOSAR DBs >= 4.0 \n\"from-autosar-4.2\" : Creation of AUTOSAR PDUs for AUTOSAR DBs >= 4.2 ",
            "oneOf": [
              {
                "type": "string",
                "enum": [
                  "no-pdus",
                  "from-autosar-4.0",
                  "from-autosar-4.2"
                ],
                "examples": [
                  "no-pdus",
                  "from-autosar-4.0",
                  "from-autosar-4.2"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "autosar-text-table-entries": {
            "description": "Controls naming of text table entries and influences signal qualification.\n\"compu-const\": uses text from COMPU-CONST nodes.\n \"short-label\": uses text from SHORT-LABEL nodes.",
            "default": "compu-const",
            "oneOf": [
              {
                "type": "string",
                "enum": [
                  "compu-const",
                  "short-label"
                ],
                "examples": [
                  "compu-const",
                  "short-label"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "some-ip-pdus-without-service-context": {
            "description": "Controls the generation of services for SOME/IP PDUs without service context.",
            "default": "ignore",
            "oneOf": [
              {
                "type": "string",
                "enum": [
                  "ignore",
                  "generate-service"
                ],
                "examples": [
                  "ignore",
                  "generate-service"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "use-application-layer-objects": {
            "description": "Generates application layer objects for the specified network types.",
            "type": "array",
            "default": [
              "ethernet"
            ],
            "minItems": 0,
            "items": {
              "oneOf": [
                {
                  "type": "string",
                  "enum": [
                    "ethernet"
                  ]
                },
                {
                  "$ref": "#/definitions/779cd/full"
                }
              ]
            },
            "examples": [
              [
                "ethernet"
              ],
              [
                "${my_variable}"
              ]
            ]
          }
        },
        "examples": [
          {
            "autosar-pdu-layer": "no-pdus"
          },
          {
            "autosar-text-table-entries": "compu-const"
          },
          {
            "some-ip-pdus-without-service-context": "generate-service"
          },
          {
            "use-application-layer-objects": [
              "ethernet"
            ]
          },
          {
            "autosar-pdu-layer": "no-pdus",
            "autosar-text-table-entries": "short-label",
            "some-ip-pdus-without-service-context": "generate-service",
            "use-application-layer-objects": [
              "ethernet"
            ]
          }
        ]
      }
    },
    "8e87f": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Global settings for .NET",
        "description": "Global settings for .NET",
        "type": "object",
        "properties": {
          "database-namespace-generation": {
            "description": "User defined settings for namespace generation in the .Net typelib. Default complies with the setting \"Automatic Qualification\". With this setting the namespaces for signals are automatically generated so that each class is unique. For each frame a class is generated in the namespace \"NetworkDB.Frames\".",
            "type": "array",
            "minItems": 1,
            "items": {
              "oneOf": [
                {
                  "type": "string",
                  "enum": [
                    "use-network",
                    "use-database",
                    "use-frame",
                    "use-node"
                  ]
                },
                {
                  "$ref": "#/definitions/779cd/full"
                }
              ]
            },
            "examples": [
              [
                "use-network",
                "use-database",
                "use-frame",
                "use-node"
              ]
            ]
          }
        },
        "additionalProperties": false,
        "examples": [
          {
            "database-namespace-generation": [
              "use-network",
              "${someVariable}"
            ]
          }
        ]
      }
    },
    "4670a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Global settings for the simulation working mode.",
        "description": "Global settings for the simulation working mode.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "time-scaling-factor": {
            "description": "If a number is provided, the measurement is slowed-down by this factor. For scaling factors between zero and one, the simulation is accelerated accordingly. For example, if you enter the value 0.1 the measurement is accelerated by a factor of 10. \n\"as-fast-as-possible\": Run the simulation as fast as possible. The simulation speed is not constant and depends on the performance of the computer and the load that is provoked by the simulation. The property \"time-scaling-factor\" is mandatory if \"time-source\" is set to \"internal-scaled\" and is forbidden otherwise.",
            "oneOf": [
              {
                "type": "number",
                "exclusiveMinimum": 0,
                "maximum": 1e+37,
                "multipleOf": 1e-6
              },
              {
                "const": "as-fast-as-possible"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "default": "as-fast-as-possible",
            "examples": [
              0.005,
              1,
              100,
              "as-fast-as-possible"
            ]
          },
          "time-source": {
            "description": "Time source for the simulation. Operate without hardware and simulate all buses completely. \nIf this property is set, \"default-network-mapping\" is also required. \n\"internal-realtime\": The time response of the measurement (time basis) is controlled internally. \n\"internal-scaled\": The simulation speed is provided through the property \"time-scaling-factor\". \n\"external-software\": The time response of the measurement (time basis) is controlled by an external program. \n\"external-hardware\": The time response of the measurement (time basis) is controlled by external hardware. \nThe property \"time-scaling-factor\" is mandatory if \"time-source\" is set to \"internal-scaled\" and is forbidden otherwise.",
            "default": "internal-realtime",
            "oneOf": [
              {
                "enum": [
                  "internal-realtime",
                  "internal-scaled",
                  "external-software",
                  "external-hardware"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              "internal-realtime",
              "internal-scaled",
              "external-software",
              "external-hardware"
            ]
          },
          "default-network-mapping": {
            "$ref": "#/definitions/83eeb/full",
            "description": "Defines the default network mapping. This value can be overwritten on network level. \nIf \"time-source\" is set, this property is also required. \nThe available options depend on the time-source. \n\"internal-realtime\" and \"external-software\" are supporting \"internal-simulator\" and \"external-sil-kit\".\n\"internal-scaled\" only supports \"internal-simulator\"."
          }
        },
        "allOf": [
          {
            "$comment": "prune-node-from-doc",
            "if": {
              "required": [
                "time-source"
              ],
              "properties": {
                "time-source": {
                  "const": "internal-scaled"
                }
              }
            },
            "then": {
              "required": [
                "default-network-mapping"
              ],
              "properties": {
                "time-scaling-factor": true,
                "default-network-mapping": {
                  "const": "internal-simulator"
                }
              }
            }
          },
          {
            "$comment": "prune-node-from-doc",
            "if": {
              "required": [
                "time-source"
              ],
              "properties": {
                "time-source": {
                  "enum": [
                    "internal-realtime",
                    "external-software"
                  ]
                }
              }
            },
            "then": {
              "required": [
                "default-network-mapping"
              ],
              "properties": {
                "time-scaling-factor": false,
                "default-network-mapping": {
                  "oneOf": [
                    {
                      "const": "internal-simulator"
                    },
                    {
                      "const": "external-sil-kit"
                    }
                  ]
                }
              }
            }
          }
        ],
        "examples": [
          {
            "time-source": "internal-realtime",
            "default-network-mapping": "internal-simulator"
          },
          {
            "time-source": "external-software",
            "default-network-mapping": "external-sil-kit"
          },
          {
            "time-source": "internal-scaled",
            "time-scaling-factor": "as-fast-as-possible",
            "default-network-mapping": "internal-simulator"
          },
          {
            "time-source": "internal-scaled",
            "time-scaling-factor": 0.01,
            "default-network-mapping": "internal-simulator"
          },
          {
            "time-source": "internal-scaled",
            "time-scaling-factor": 1,
            "default-network-mapping": "internal-simulator"
          }
        ]
      }
    },
    "53b00": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Name of a .blf file, supporting the field codes: {ComputerName}, {LocalTime}, {MeasurementIndex}, {MeasurementStart}, {IncSize|001|100MB}, {IncTime|001|01h00m}, {IncTrigger|001}, {TriggerCondition} and {IncTrigger|001}_{TriggerCondition}",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^(?!.*(\\{LoggingBlock\\}|\\{IncMeasurement\\}|\\{ConfigName\\}|[\"<>*?:/\\\\])).*\\.[bB][lL][fF]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "fileName.blf",
          "file_${SCENARIO_NAME}.blf",
          "${name_in_variable}",
          "log_{ComputerName}.blf",
          "log_{LocalTime}.blf",
          "log_{MeasurementIndex}.blf",
          "log_{MeasurementStart}.blf",
          "log_{IncTrigger|001}.blf",
          "log_{TriggerCondition}.blf"
        ]
      }
    },
    "34a76": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Advanced logging configurations.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "warn-overwritten-log-file": {
            "description": "Specifies whether a warning is shown at the start of measurement before overwriting an existing logging file.",
            "oneOf": [
              {
                "type": "boolean"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "default": true
          },
          "show-error-on-data-loss": {
            "description": "Specifies whether an error is shown after the measurement if data loss occurred during the measurement. Lines in the logging file marked with a * as a special symbol have corrupted lines around them.",
            "oneOf": [
              {
                "type": "boolean"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "default": true
          }
        },
        "examples": [
          {
            "warn-overwritten-log-file": false,
            "show-error-on-data-loss": true
          },
          {
            "warn-overwritten-log-file": true
          }
        ]
      }
    },
    "8cc99": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Toggle trigger settings. The user can control the start and stop of logging. For example via CAPL.\n Must not be used together with \"test-trigger\".",
        "type": "object",
        "additionalProperties": false,
        "minProperties": 1,
        "properties": {
          "pre-trigger-time-ms": {
            "description": "Time before triggering that should also be logged.",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 0,
                "maximum": 21000000,
                "default": 0
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "post-trigger-time-ms": {
            "description": "Time after the triggered stopped that should also be logged.",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 0,
                "maximum": 21000000,
                "default": 0
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "buffer-size": {
            "description": "Event buffer size for events pre-trigger-time-ms",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 1,
                "maximum": 2097152,
                "default": 5000
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          }
        },
        "examples": [
          {
            "pre-trigger-time-ms": 100
          },
          {
            "pre-trigger-time-ms": 1000,
            "post-trigger-time-ms": 1000,
            "buffer-size": 5000
          }
        ]
      }
    },
    "0a579": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Test trigger settings. The execution period of test elements controls the start and stop of logging.",
        "type": "object",
        "required": [
          "scope"
        ],
        "additionalProperties": false,
        "properties": {
          "scope": {
            "description": "Scope of the test trigger, for each a logging file is created.",
            "oneOf": [
              {
                "enum": [
                  "test-unit",
                  "test-implementation-entity",
                  "test-case"
                ]
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              "test-unit",
              "test-implementation-entity",
              "test-case"
            ]
          },
          "verdict": {
            "type": "array",
            "description": "List of test verdicts for which logging files will remain stored.",
            "default": [
              "none",
              "pass",
              "inconclusive",
              "fail",
              "error-in-test-system"
            ],
            "items": {
              "anyOf": [
                {
                  "type": "string",
                  "enum": [
                    "none",
                    "pass",
                    "inconclusive",
                    "fail",
                    "error-in-test-system"
                  ]
                },
                {
                  "$ref": "#/definitions/779cd/full"
                }
              ]
            },
            "examples": [
              [
                "none"
              ],
              [
                "pass"
              ],
              [
                "inconclusive"
              ],
              [
                "fail"
              ],
              [
                "error-in-test-system"
              ]
            ]
          },
          "pre-trigger-time-ms": {
            "description": "Time before triggering that should also be logged.",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 0,
                "maximum": 21000000,
                "default": 0
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": []
          },
          "post-trigger-time-ms": {
            "description": "Time after the triggered stopped that should also be logged.",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 0,
                "maximum": 21000000,
                "default": 0
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "buffer-size": {
            "description": "Event buffer size for events pre-trigger-time-ms",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 1,
                "maximum": 2097152,
                "default": 5000
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          }
        },
        "examples": [
          {
            "scope": "test-unit",
            "verdict": [
              "none",
              "pass",
              "inconclusive",
              "fail",
              "error-in-test-system"
            ]
          },
          {
            "scope": "test-unit",
            "verdict": [
              "fail",
              "error-in-test-system"
            ],
            "pre-trigger-time-ms": 1000,
            "post-trigger-time-ms": 1000,
            "buffer-size": 5000
          }
        ]
      }
    },
    "17563": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Programming modules",
        "description": "Describes a CAPL or C library (.vmodule).",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "capl-library-path": {
            "description": "Absolute or relative path to a CAPL library (.vmodule). Relative path specifications are resolved relative to the configuration file.",
            "oneOf": [
              {
                "$ref": "#/definitions/de949/full"
              },
              {
                "type": "array",
                "items": {
                  "$ref": "#/definitions/de949/full"
                }
              }
            ]
          },
          "c-library-path": {
            "description": "Absolute or relative path to a C-library (.vmodule). Relative path specifications are resolved relative to the configuration file.",
            "oneOf": [
              {
                "$ref": "#/definitions/de949/full"
              },
              {
                "type": "array",
                "items": {
                  "$ref": "#/definitions/de949/full"
                }
              }
            ]
          }
        }
      }
    },
    "51ba8": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Scenario",
        "description": "A scenario with the option to define or override variables and defines.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name"
        ],
        "properties": {
          "name": {
            "description": "Name of the scenario",
            "type": "string",
            "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$",
            "not": {
              "const": "Default"
            }
          },
          "variables": {
            "$ref": "#/definitions/6cf52/full"
          },
          "defines": {
            "$ref": "#/definitions/4a339/full"
          }
        },
        "examples": [
          {
            "name": "my_scenario_name"
          },
          {
            "name": "override_variables",
            "variables": [
              {
                "name": "three",
                "value": 3
              }
            ]
          },
          {
            "name": "override_defines",
            "defines": [
              "mydefine",
              "mydevine_with_value=42"
            ]
          }
        ]
      }
    },
    "8e253": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Network Security Profile Assignments",
        "description": "List with security profile to network assignments. The security profile is used for SecOC, Diagnostics and Backend Access.",
        "type": "array",
        "items": {
          "title": "Network Security Profile Assignment",
          "type": "object",
          "description": "Assignment of a security profile to a network.",
          "additionalProperties": false,
          "required": [
            "network",
            "profile-id"
          ],
          "properties": {
            "network": {
              "description": "The name of the network to which the security profile shall be assigned.",
              "oneOf": [
                {
                  "$ref": "#/definitions/038dc/full"
                },
                {
                  "$ref": "#/definitions/779cd/full"
                }
              ]
            },
            "profile-id": {
              "$ref": "#/definitions/adad4/full",
              "description": "The ID of the assigned security profile."
            },
            "when": {
              "$ref": "#/definitions/24f1f/full"
            }
          }
        },
        "examples": [
          [
            {
              "network": "CAN1",
              "profile-id": 123456
            },
            {
              "network": "CAN2",
              "profile-id": 654321
            }
          ],
          [
            {
              "network": "CAN",
              "profile-id": "${SECURITY_PROFILE_ID}"
            }
          ],
          [
            {
              "network": "CAN",
              "profile-id": 123456,
              "when": "SCENARIO_NAME == \"MyScenarioWithEnabledSecurity\""
            }
          ]
        ]
      }
    },
    "0bf0f": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema",
        "title": "Ethernet Stack Security Profile Assignments",
        "description": "List with security profile to Ethernet stack assignments. The security profile is used for TLS and IPSec.",
        "type": "array",
        "items": {
          "title": "Ethernet Stack Security Profile Assignment",
          "type": "object",
          "description": "Assignment of a security profile to an Ethernet stack.",
          "additionalProperties": false,
          "required": [
            "simulation-node",
            "profile-id"
          ],
          "properties": {
            "simulation-node": {
              "description": "The name of the simulation node. The security profile will be assigned to the Ethernet stack of the simulation node.",
              "oneOf": [
                {
                  "$ref": "#/definitions/038dc/full"
                },
                {
                  "$ref": "#/definitions/779cd/full"
                }
              ]
            },
            "profile-id": {
              "$ref": "#/definitions/adad4/full",
              "description": "The ID of the assigned security profile."
            },
            "when": {
              "$ref": "#/definitions/24f1f/full"
            }
          }
        },
        "examples": [
          [
            {
              "simulation-node": "MySimulationNode",
              "profile-id": 123456
            },
            {
              "simulation-node": "AnotherSimulationNode",
              "profile-id": 654321
            }
          ],
          [
            {
              "simulation-node": "MySimulationNode",
              "profile-id": "${SECURITY_PROFILE_ID}"
            }
          ],
          [
            {
              "simulation-node": "MySimulationNode",
              "profile-id": 123456,
              "when": "SCENARIO_NAME == \"MyScenarioWithEnabledSecurity\""
            }
          ]
        ]
      }
    },
    "89e83": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a SIL Kit config file (.yaml/.json). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[yY][aA][mM][lL]$"
          },
          {
            "pattern": "^.*\\.[jJ][sS][oO][nN]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/myConfigFile.json",
          "path/to/myConfigFile.yaml",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "81e26": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Simulation Node",
        "description": "Represents a simulation node.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "name",
          "network-assignments"
        ],
        "properties": {
          "name": {
            "$ref": "#/definitions/038dc/full"
          },
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "$ref": "#/definitions/477e0/full"
          },
          "network-assignments": {
            "$ref": "#/definitions/5f883/full"
          },
          "defines": {
            "$ref": "#/definitions/4a339/full"
          },
          "database-node": {
            "description": "Assigns explicitly a database node to a simulation node. If not set, the simulation-node name will be used as database-node. To deactivate automatic assignment, it should be set to false.",
            "oneOf": [
              {
                "type": "boolean",
                "default": true
              },
              {
                "type": "string",
                "not": {
                  "$ref": "#/definitions/779cd/full"
                }
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              false,
              true,
              "aDatabaseNodeName",
              "${var_with_path}"
            ]
          },
          "modeling-libraries": {
            "type": "array",
            "items": {
              "$ref": "#/definitions/d2ba8/full"
            },
            "description": "A list of .vmodule modeling libraries to assign to the simulation node."
          },
          "tcp-ip-stack": {
            "$ref": "#/definitions/8a86b/full"
          }
        },
        "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"
              }
            ]
          }
        ]
      }
    },
    "8b228": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "System variables",
        "description": "Describes a system variable file (.vsysvar/.xml).",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "file-path"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "oneOf": [
              {
                "$ref": "#/definitions/16f8a/full"
              },
              {
                "type": "array",
                "items": {
                  "$ref": "#/definitions/16f8a/full"
                }
              }
            ]
          }
        },
        "examples": [
          {
            "file-path": "path/to/my.vsysvar"
          },
          {
            "file-path": "path/to/my.xml"
          },
          {
            "file-path": [
              "${path_in_variable}",
              "path/${name_in_variable}"
            ]
          },
          {
            "file-path": "path/to/my.vsysvar",
            "when": "SCENARIO_NAME == \"my_scenario_name\""
          }
        ]
      }
    },
    "9541b": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "User files",
        "description": "Describes a user file that can be read/written by CAPL/.NET scripts.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "file-path"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "description": "Absolute or relative path to a user file. Relative path specifications are resolved relative to the configuration file.",
            "oneOf": [
              {
                "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\""
          }
        ]
      }
    },
    "306ef": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "List of IPv6 addresses with their subnet definition",
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": false,
          "required": [
            "address",
            "subnet-prefix-length"
          ],
          "properties": {
            "address": {
              "$ref": "#/definitions/eaee8/full"
            },
            "name": {
              "$ref": "#/definitions/8ab6a/full"
            },
            "subnet-prefix-length": {
              "description": "Subnetprefix of an IPv6 Address",
              "oneOf": [
                {
                  "type": "integer",
                  "minimum": 0,
                  "maximum": 128
                },
                {
                  "$ref": "#/definitions/779cd/full"
                }
              ],
              "examples": [
                0,
                48,
                128
              ]
            }
          }
        },
        "examples": [
          [
            {
              "address": "1234::abce",
              "subnet-prefix-length": 42
            }
          ],
          [
            {
              "address": "1234::abcf",
              "subnet-prefix-length": 24,
              "name": "refNameForDoIP"
            }
          ]
        ]
      }
    },
    "0d74c": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a VIO System configuration file (.viocfg). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[vV][iI][oO][cC][fF][gG]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/my.viocfg",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "2b57a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "XCP files",
        "description": "Describes a XCP configuration file (.xcp.yaml/.xcpcfg).",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "file-path"
        ],
        "properties": {
          "when": {
            "$ref": "#/definitions/24f1f/full"
          },
          "file-path": {
            "oneOf": [
              {
                "$ref": "#/definitions/011dc/full"
              },
              {
                "type": "array",
                "items": {
                  "$ref": "#/definitions/011dc/full"
                }
              }
            ]
          }
        },
        "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\""
          }
        ]
      }
    },
    "4a339": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "List of defines to be passed to CAPL, .NET, Python and VCDL.",
        "type": "array",
        "items": {
          "anyOf": [
            {
              "$ref": "#/definitions/e173a/full"
            },
            {
              "$ref": "#/definitions/779cd/full"
            }
          ]
        },
        "examples": [
          [
            "mydefine1",
            "mydefine2"
          ],
          [
            "mydefine_with_value=42",
            "${var_with_define_name}=${var_with_define_value}"
          ]
        ]
      }
    },
    "038dc": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "A C-identifier for this element (case sensitive)",
        "type": "string",
        "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$",
        "examples": [
          "myid",
          "THIS_IS_CASE_SENSITIVE",
          "__1_2_3_4_5__"
        ]
      }
    },
    "8ab6a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "string",
        "oneOf": [
          {
            "pattern": "^[a-zA-Z_][a-zA-Z0-9_]*$"
          },
          {
            "pattern": "^([a-zA-Z_][a-zA-Z0-9_]*)?\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\}[a-zA-Z0-9_]*$"
          }
        ],
        "examples": [
          "myid",
          "THIS_IS_CASE_SENSITIVE",
          "__1_2_3_4_5__",
          "${id_in_variable}"
        ]
      }
    },
    "7c619": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "CAN FD network settings",
        "description": "Settings for the CAN FD network.",
        "type": "object",
        "additionalProperties": false,
        "minProperties": 1,
        "properties": {
          "mode": {
            "description": "Operation mode setting (iso or non-iso mode).",
            "oneOf": [
              {
                "type": "string",
                "enum": [
                  "iso",
                  "non-iso"
                ],
                "default": "iso"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "arbitration-bit-rate-k-bit-s": {
            "description": "Bit rate for the CAN FD arbitration phase in kbit/s. \n If this value is set, it has priority. \n If this value is not set, the arbitration bit rate is read from the database. If it is missing from the database, the default value is used.",
            "oneOf": [
              {
                "type": "number",
                "minimum": 5.0,
                "maximum": 2000,
                "default": 500.0,
                "multipleOf": 0.001
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "data-bit-rate-k-bit-s": {
            "description": "Bit rate for the CAN FD data phase in kbit/s. \n If this value is set, it has priority. \n If this value is not set, the data bit rate is read from the database. If it is missing from the database, the default value is used.",
            "oneOf": [
              {
                "type": "number",
                "minimum": 5.0,
                "maximum": 10000,
                "default": 1000.0,
                "multipleOf": 0.001
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "arbitration-sample-point-in-percent": {
            "$ref": "#/definitions/a2e72/full"
          },
          "data-sample-point-in-percent": {
            "$ref": "#/definitions/a2e72/full"
          }
        },
        "oneOf": [
          {
            "required": [
              "arbitration-sample-point-in-percent",
              "data-sample-point-in-percent",
              "arbitration-bit-rate-k-bit-s",
              "data-bit-rate-k-bit-s"
            ],
            "properties": {
              "arbitration-sample-point-in-percent": true,
              "data-sample-point-in-percent": true,
              "arbitration-bit-rate-k-bit-s": true,
              "data-bit-rate-k-bit-s": true
            }
          },
          {
            "required": [
              "arbitration-sample-point-in-percent",
              "data-sample-point-in-percent"
            ],
            "properties": {
              "arbitration-sample-point-in-percent": true,
              "data-sample-point-in-percent": true,
              "arbitration-bit-rate-k-bit-s": false,
              "data-bit-rate-k-bit-s": false
            }
          },
          {
            "required": [
              "arbitration-bit-rate-k-bit-s",
              "data-bit-rate-k-bit-s"
            ],
            "properties": {
              "arbitration-sample-point-in-percent": false,
              "data-sample-point-in-percent": false,
              "arbitration-bit-rate-k-bit-s": true,
              "data-bit-rate-k-bit-s": true
            }
          },
          {
            "properties": {
              "arbitration-sample-point-in-percent": false,
              "data-sample-point-in-percent": false,
              "arbitration-bit-rate-k-bit-s": false,
              "data-bit-rate-k-bit-s": false
            }
          }
        ],
        "examples": [
          {
            "arbitration-bit-rate-k-bit-s": 500.0,
            "data-bit-rate-k-bit-s": 1000.0
          },
          {
            "mode": "non-iso",
            "arbitration-sample-point-in-percent": 60.0,
            "data-sample-point-in-percent": 70.0
          },
          {
            "mode": "iso",
            "arbitration-bit-rate-k-bit-s": 500.0,
            "data-bit-rate-k-bit-s": 1000.0,
            "arbitration-sample-point-in-percent": 75.0,
            "data-sample-point-in-percent": 80.0
          }
        ]
      }
    },
    "548bf": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Timing conditions",
        "description": "Timing conditions for a replay block.",
        "type": "object",
        "additionalProperties": false,
        "required": [],
        "properties": {
          "condition": {
            "description": "The condition when the replay shall start.",
            "oneOf": [
              {
                "const": "immediately",
                "description": "The first event of the replayed file occurs with measurement start."
              },
              {
                "const": "first-event-time",
                "description": "The original timestamp of the replayed file is used."
              },
              {
                "const": "delayed",
                "description": "The first event is delayed. Can be configured by the \"delayed-ms\" element."
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "delay-ms": {
            "$ref": "#/definitions/230ce/full",
            "description": "The delay in ms if the condition \"delayed\" is selected. No effect otherwise."
          }
        },
        "examples": [
          {
            "condition": "immediately"
          },
          {
            "condition": "first-event-time"
          },
          {
            "condition": "delayed",
            "delay-ms": 1000
          },
          {
            "condition": "${variable}"
          }
        ]
      }
    },
    "66d5a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "oneOf": [
          {
            "$ref": "#/definitions/d3f0b/full"
          },
          {
            "type": "array",
            "items": {
              "$ref": "#/definitions/d3f0b/full"
            },
            "examples": [
              [
                "path/to/my.vcdl"
              ],
              [
                "path/to/my.vcodm"
              ],
              [
                "path/to/my.vcdl",
                "path/to/my.vcodm",
                "${path_in_variable}",
                "path/${name_in_variable}"
              ]
            ]
          }
        ],
        "examples": [
          "path/to/my.vcdl",
          [
            "path/to/my.vcodm"
          ],
          [
            "path/to/my.vcdl",
            "path/to/my.vcodm",
            "${path_in_variable}",
            "path/${name_in_variable}"
          ]
        ]
      }
    },
    "576ec": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "Communications parameters for diagnostics",
        "description": "Parameters from diagnostic description for transport and diagnostic layer.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "st-min": {
            "type": "integer",
            "description": "StMin (separation time) defines the minimum time gap between consecutive frames which are to be sent from the Ecu to the Tester.",
            "minimum": 0,
            "maximum": 249
          },
          "s3-client": {
            "type": "integer",
            "description": "Time between functionally addressed TesterPresent (0x3E) request messages transmitted by the client to keep a diagnostic session other than the defaultSession active in multiple servers (functional communication) or maximum time between physically transmitted request messages to a single server (physical communication).\nAlias: tester-present-time",
            "minimum": 0,
            "maximum": 65535
          },
          "s3-server": {
            "type": "integer",
            "description": "Time for the server to keep a diagnostic session other than the defaultSession active while not receiving any diagnostic request message.\nAlias: tester-present-time-ecu",
            "minimum": 0,
            "maximum": 65535
          },
          "p2-client": {
            "type": "integer",
            "description": "Timeout for the client to wait after the successful transmission of a request message for the start of incoming response messages.\nAlias: p2-max",
            "minimum": 0,
            "maximum": 65535
          },
          "p2-ex-client": {
            "type": "integer",
            "description": "Enhanced timeout for the client to wait after the reception of a negative response message with negative response code 0x78 for the start of incoming response messages.\nAlias: p2-star",
            "minimum": 0,
            "maximum": 65535
          },
          "p2-server": {
            "type": "integer",
            "description": "Performance requirement for the server to start with the response message after the reception of a request message.\nAlias: p2-max-ecu",
            "minimum": 0,
            "maximum": 65535
          },
          "p2-ex-server": {
            "type": "integer",
            "description": "Performance requirement for the server to start with the response message after the transmission of a negative response message with negative response code 0x78 (enhanced response timing).\nAlias: p2-star-ecu",
            "minimum": 0,
            "maximum": 65535
          },
          "p6-client": {
            "type": "integer",
            "description": "Timeout for the client to wait after the successful transmission of a request message for the end of complete response messages.\nAlias: p6-max",
            "minimum": 0,
            "maximum": 65535
          },
          "p6-ex-client": {
            "type": "integer",
            "description": "Enhanced timeout for the client to wait after the reception of a negative response message with negative response code 0x78 for the end of complete response messages.\nAlias: p6-star",
            "minimum": 0,
            "maximum": 65535
          }
        }
      }
    },
    "94efe": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "title": "DoIP Settings",
        "description": "Settings related to diagnostics over IP.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "tls-mode": {
            "description": "Behavior of the diagnostic tester for encrypted communication via TLS.\n \"deactivated\": The tester does not use TLS even if a security profile for TLS is configured.\n \"routing-activation\": The tester at first tries to set up an unencrypted TCP connection. If not successful, the tester tries to connect via TLS.\n \"secure-connection-only\": The tester at first tries to set up an unencrypted TCP connection. On success the tester stops communication. \n\"direct-connection\": The tester directly tries to connect to the ECU via TLS.",
            "default": "deactivated",
            "oneOf": [
              {
                "const": "deactivated"
              },
              {
                "const": "routing-activation"
              },
              {
                "const": "secure-connection-only"
              },
              {
                "const": "direct-connection"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "tls-client": {
            "description": "TLS client name.",
            "oneOf": [
              {
                "type": "string"
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ]
          },
          "tcp-ip-stack-adapter": {
            "$ref": "#/definitions/8ab6a/full",
            "description": "The \"name\" of an ip-setting or an ip-address declared in this environment, referencing a local network interface or IP address via which CANoe or a simulated tester shall communicate."
          }
        }
      }
    },
    "70a3f": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Address configuration for an TCP/IP stack.",
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "mac-address": {
            "$ref": "#/definitions/07d01/full"
          },
          "mtu": {
            "$ref": "#/definitions/cb1c2/full"
          },
          "ipv4-settings": {
            "$ref": "#/definitions/a1ba3/full"
          },
          "ipv6-settings": {
            "$ref": "#/definitions/4d262/full"
          },
          "vlans": {
            "$ref": "#/definitions/bfd3f/full"
          }
        },
        "examples": [
          {
            "mac-address": "02:84:cf:3b:be:01"
          },
          {
            "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
              }
            ]
          }
        ]
      }
    },
    "325f7": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a functional mockup unit file (.fmu). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[Ff][Mm][Uu]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "my_functional_mockup_unit.fmu",
          "Inputs/MyFmu.FMU",
          "${some_variable}"
        ]
      }
    },
    "83eeb": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "oneOf": [
          {
            "enum": [
              "internal-simulator",
              "external-sil-kit",
              "external-hardware"
            ]
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "internal-simulator",
          "external-sil-kit",
          "external-hardware"
        ]
      }
    },
    "1030e": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "type": "integer",
        "minimum": 0,
        "maximum": 4294967295
      }
    },
    "477e0": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a program (.can/.canencr/.cs/.sln). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[Cc][Aa][Nn]$"
          },
          {
            "pattern": "^.*\\.[Cc][Aa][Nn][Ee][Nn][Cc][Rr]$"
          },
          {
            "pattern": "^.*\\.[Cc][Ss]$"
          },
          {
            "pattern": "^.*\\.[Ss][Ll][Nn]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/my_capl_script.can",
          "path/to/my_encrypted_capl_file.canencr",
          "path/to/my_dotnet.cs",
          "path/to/my_visual_studio.sln",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "5f883": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "List of networks this node is assigned to.",
        "type": "array",
        "items": {
          "$ref": "#/definitions/46fec/full"
        },
        "examples": [
          [
            {
              "network": "my_can_network_1"
            }
          ]
        ]
      }
    },
    "8a86b": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Simulation node configuration for the TCP/IP stack.",
        "anyOf": [
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "selected-stack"
            ],
            "properties": {
              "selected-stack": {
                "description": "If set to \"operating-system\", the machine configuration is used.\n If set to \"canoe\", the configuration on the global level is used (this requires global-settings/ethernet/tcp-ip-stack/selected-stack to be set to \"canoe\").\n If set to \"individual\", a custom configuration can be provided.",
                "enum": [
                  "operating-system",
                  "canoe"
                ],
                "default": "individual",
                "examples": [
                  "operating-system",
                  "canoe",
                  "individual"
                ]
              }
            }
          },
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "selected-stack"
            ],
            "properties": {
              "selected-stack": {
                "description": "If set to \"operating-system\", the machine configuration is used.\n If set to \"canoe\", the configuration on the global level is used (this requires global-settings/ethernet/tcp-ip-stack/selected-stack to be set to \"canoe\").\n If set to \"individual\", a custom configuration can be provided.",
                "oneOf": [
                  {
                    "enum": [
                      "individual"
                    ]
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ],
                "default": "individual",
                "examples": [
                  "operating-system",
                  "canoe",
                  "individual"
                ]
              },
              "activate-routing": {
                "$ref": "#/definitions/698c3/full"
              },
              "tcp-delayed-ack": {
                "$ref": "#/definitions/6665e/full"
              },
              "ipv4-gateway": {
                "$ref": "#/definitions/8b747/full"
              },
              "ipv6-gateway": {
                "$ref": "#/definitions/64730/full"
              }
            }
          }
        ]
      }
    },
    "16f8a": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a system variable file (.vsysvar/.xml). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[vV][sS][yY][sS][vV][aA][rR]$"
          },
          {
            "pattern": "^.*\\.[xX][mM][lL]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/my.vsysvar",
          "path/to/my.xml",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "011dc": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Absolute or relative path to a XCP configuration file (.xcp.yaml/.xcpcfg). Relative path specifications are resolved relative to the configuration file.",
        "type": "string",
        "anyOf": [
          {
            "pattern": "^.*\\.[Yy][Aa]?[Mm][Ll]$"
          },
          {
            "pattern": "^.*\\.[xX][cC][pP][cC][fF][gG]$"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "path/to/my.xcp.yaml",
          "path/to/my.xcp.yml",
          "path/to/my.xcpcfg",
          "${path_in_variable}",
          "path/${name_in_variable}"
        ]
      }
    },
    "230ce": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "$ref": "#/definitions/4f5d5/full",
        "default": 0
      }
    },
    "20152": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "$ref": "#/definitions/37aed/full",
        "default": 0
      }
    },
    "3e203": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Define to be passed to the VCDL importer.",
        "type": "string",
        "pattern": "^([a-zA-Z_]|([a-zA-Z_][a-zA-Z0-9_]*)?\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\})[a-zA-Z0-9_]*(=((0|[1-9][0-9]*)|(\\$\\{[a-zA-Z_][a-zA-Z0-9_]*\\})|[Tt]rue|[Ff]alse))?$",
        "examples": [
          "mydefine1",
          "mydefine2",
          "mydefine_with_value=42",
          "${var_with_define_name}=${var_with_define_value}"
        ]
      }
    },
    "07d01": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "MAC-Address of the current TCP/IP stack (cannot be a multicast address).",
        "type": "string",
        "oneOf": [
          {
            "pattern": "[0-9a-fA-F][02468aceACE](:[0-9a-fA-F]{2}){5}"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "examples": [
          "02:84:cf:3b:be:01",
          "aa:bb:cc:dd:ee:ff",
          "AA:BB:CC:DD:EE:FF"
        ]
      }
    },
    "4d262": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Configurations for IPv6.",
        "anyOf": [
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "address-configuration"
            ],
            "properties": {
              "name": {
                "$ref": "#/definitions/8ab6a/full"
              },
              "address-configuration": {
                "description": "Defines how the addresses are configured. Use \"static\" to configure them manually with the \"addresses\" property or use \"dhcp\" for automatic configuration.",
                "examples": [
                  "dhcp",
                  "static"
                ],
                "oneOf": [
                  {
                    "enum": [
                      "dhcp",
                      "linked-local"
                    ]
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ]
              }
            }
          },
          {
            "type": "object",
            "additionalProperties": false,
            "required": [
              "address-configuration",
              "addresses"
            ],
            "properties": {
              "addresses": {
                "$ref": "#/definitions/306ef/full"
              },
              "name": {
                "$ref": "#/definitions/8ab6a/full"
              },
              "address-configuration": {
                "description": "Defines how the addresses are configured. Use \"static\" to configure them manually with the \"addresses\" property or use \"dhcp\" for automatic configuration.",
                "oneOf": [
                  {
                    "const": "static"
                  },
                  {
                    "$ref": "#/definitions/779cd/full"
                  }
                ],
                "examples": [
                  "dhcp",
                  "static"
                ]
              }
            }
          }
        ],
        "examples": [
          {
            "address-configuration": "dhcp",
            "name": "refNameForDoIP"
          },
          {
            "address-configuration": "static",
            "addresses": [
              {
                "address": "1234::abce",
                "subnet-prefix-length": 42
              },
              {
                "address": "1234::abcf",
                "subnet-prefix-length": 24
              }
            ]
          }
        ]
      }
    },
    "698c3": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Activates TCP Routing",
        "oneOf": [
          {
            "type": "boolean"
          },
          {
            "$ref": "#/definitions/779cd/full"
          }
        ],
        "default": false
      }
    },
    "6665e": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Activates the TCP Delayed Ack Option.",
        "oneOf": [
          {
            "$ref": "#/definitions/779cd/full"
          },
          {
            "type": "boolean"
          }
        ],
        "default": true
      }
    },
    "8b747": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "IPv4-Address of the Gateway",
        "anyOf": [
          {
            "$ref": "#/definitions/779cd/full"
          },
          {
            "$ref": "#/definitions/6f0a1/full"
          }
        ],
        "default": "0.0.0.0"
      }
    },
    "64730": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "IPv6-Address of the Gateway",
        "anyOf": [
          {
            "$ref": "#/definitions/779cd/full"
          },
          {
            "$ref": "#/definitions/eaee8/full"
          }
        ],
        "default": "::1"
      }
    },
    "46fec": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "description": "Assign node to a network. For an Ethernet network a TCP/IP stack can be provided.",
        "type": "object",
        "additionalProperties": false,
        "required": [
          "network"
        ],
        "properties": {
          "network": {
            "$ref": "#/definitions/8ab6a/full",
            "description": "Assign the simulation node to a network.",
            "examples": [
              "network_name"
            ]
          },
          "tcp-ip-stack-adapter": {
            "$ref": "#/definitions/70a3f/full"
          }
        },
        "examples": [
          {
            "network": "my_can_network_1"
          }
        ]
      }
    },
    "4f5d5": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "oneOf": [
          {
            "$ref": "#/definitions/779cd/full"
          },
          {
            "$ref": "#/definitions/815f9/full"
          }
        ]
      }
    },
    "37aed": {
      "full": {
        "$schema": "http://json-schema.org/draft-07/schema#",
        "oneOf": [
          {
            "$ref": "#/definitions/779cd/full"
          },
          {
            "$ref": "#/definitions/09338/full"
          }
        ]
      }
    },
    "local": {
      "vlan-settings": {
        "type": "object",
        "description": "Defines a VLAN with its relevant settings.",
        "additionalProperties": false,
        "required": [
          "id",
          "priority"
        ],
        "properties": {
          "id": {
            "$comment": "reason for 4094: see https://en.wikipedia.org/wiki/IEEE_802.1Q - VLAN identifier (VID)",
            "description": "Id of the current VLAN.",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 1,
                "maximum": 4094
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              1,
              2,
              3,
              4,
              4094
            ]
          },
          "priority": {
            "description": "Priority of the current VLAN.",
            "oneOf": [
              {
                "type": "integer",
                "minimum": 0,
                "maximum": 7
              },
              {
                "$ref": "#/definitions/779cd/full"
              }
            ],
            "examples": [
              0,
              1,
              2,
              3,
              4,
              5,
              6,
              7
            ]
          },
          "ipv4-settings": {
            "$ref": "#/definitions/a1ba3/full"
          },
          "ipv6-settings": {
            "$ref": "#/definitions/4d262/full"
          }
        }
      }
    },
    "full": {
      "$schema": "http://json-schema.org/draft-07/schema",
      "description": "A list of VLANs with their relevant settings.",
      "type": "array",
      "items": {
        "$ref": "#/$defs/bfd3f/local/vlan-settings"
      },
      "maxItems": 4094,
      "examples": [
        [
          {
            "id": 42,
            "priority": 0
          }
        ],
        [
          {
            "id": 24,
            "priority": 0,
            "ipv4-settings": {
              "address-configuration": "static",
              "addresses": [
                {
                  "address": "192.168.0.2",
                  "subnet-mask": "255.255.255.0"
                },
                {
                  "address": "192.168.0.3",
                  "subnet-prefix-length": 24
                }
              ]
            },
            "ipv6-settings": {
              "address-configuration": "static",
              "addresses": [
                {
                  "address": "1234::abce",
                  "subnet-prefix-length": 42
                },
                {
                  "address": "1234::abcf",
                  "subnet-prefix-length": 24
                }
              ]
            }
          }
        ]
      ]
    }
  }
}
