diff --git a/doc/openapi/components/schemas/config/formats/common.yaml b/doc/openapi/components/schemas/config/format.yaml similarity index 100% rename from doc/openapi/components/schemas/config/formats/common.yaml rename to doc/openapi/components/schemas/config/format.yaml diff --git a/doc/openapi/components/schemas/config/format_obj.yaml b/doc/openapi/components/schemas/config/format_obj.yaml index 36c0dc73c..4004cdab4 100644 --- a/doc/openapi/components/schemas/config/format_obj.yaml +++ b/doc/openapi/components/schemas/config/format_obj.yaml @@ -1,3 +1,6 @@ +--- +# yaml-language-server: $schema=http://json-schema.org/draft-07/schema + type: object title: Format Object required: diff --git a/doc/openapi/components/schemas/config/format_spec.yaml b/doc/openapi/components/schemas/config/format_spec.yaml index 6292f0de6..9f8fb3d7b 100644 --- a/doc/openapi/components/schemas/config/format_spec.yaml +++ b/doc/openapi/components/schemas/config/format_spec.yaml @@ -1,4 +1,5 @@ --- +# yaml-language-server: $schema=http://json-schema.org/draft-07/schema description: | The payload format which is used to encode and decode exchanged messages. diff --git a/doc/openapi/components/schemas/config/formats/iotagent_ul.yaml b/doc/openapi/components/schemas/config/formats/iotagent_ul.yaml index 657125d24..a52c366d9 100644 --- a/doc/openapi/components/schemas/config/formats/iotagent_ul.yaml +++ b/doc/openapi/components/schemas/config/formats/iotagent_ul.yaml @@ -6,4 +6,4 @@ allOf: properties: delimiter: type: string -- $ref: common.yaml +- $ref: ../format.yaml diff --git a/doc/openapi/components/schemas/config/formats/json.yaml b/doc/openapi/components/schemas/config/formats/json.yaml index c79fc638b..7efc3e2d1 100644 --- a/doc/openapi/components/schemas/config/formats/json.yaml +++ b/doc/openapi/components/schemas/config/formats/json.yaml @@ -38,4 +38,4 @@ allOf: default: false description: Escape the `/` characters in strings with `\/`. -- $ref: common.yaml +- $ref: ../format.yaml diff --git a/doc/openapi/components/schemas/config/formats/line.yaml b/doc/openapi/components/schemas/config/formats/line.yaml index 43a85268f..4ea525d4c 100644 --- a/doc/openapi/components/schemas/config/formats/line.yaml +++ b/doc/openapi/components/schemas/config/formats/line.yaml @@ -6,4 +6,4 @@ allOf: properties: separator: type: string -- $ref: common.yaml +- $ref: ../format.yaml diff --git a/doc/openapi/components/schemas/config/formats/protobuf.yaml b/doc/openapi/components/schemas/config/formats/protobuf.yaml index 657125d24..a52c366d9 100644 --- a/doc/openapi/components/schemas/config/formats/protobuf.yaml +++ b/doc/openapi/components/schemas/config/formats/protobuf.yaml @@ -6,4 +6,4 @@ allOf: properties: delimiter: type: string -- $ref: common.yaml +- $ref: ../format.yaml diff --git a/doc/openapi/components/schemas/config/formats/raw.yaml b/doc/openapi/components/schemas/config/formats/raw.yaml index 657125d24..a52c366d9 100644 --- a/doc/openapi/components/schemas/config/formats/raw.yaml +++ b/doc/openapi/components/schemas/config/formats/raw.yaml @@ -6,4 +6,4 @@ allOf: properties: delimiter: type: string -- $ref: common.yaml +- $ref: ../format.yaml diff --git a/doc/openapi/components/schemas/config/formats/value.yaml b/doc/openapi/components/schemas/config/formats/value.yaml index 657125d24..a52c366d9 100644 --- a/doc/openapi/components/schemas/config/formats/value.yaml +++ b/doc/openapi/components/schemas/config/formats/value.yaml @@ -6,4 +6,4 @@ allOf: properties: delimiter: type: string -- $ref: common.yaml +- $ref: ../format.yaml diff --git a/doc/openapi/components/schemas/config/formats/villas_binary.yaml b/doc/openapi/components/schemas/config/formats/villas_binary.yaml index 657125d24..a52c366d9 100644 --- a/doc/openapi/components/schemas/config/formats/villas_binary.yaml +++ b/doc/openapi/components/schemas/config/formats/villas_binary.yaml @@ -6,4 +6,4 @@ allOf: properties: delimiter: type: string -- $ref: common.yaml +- $ref: ../format.yaml diff --git a/doc/openapi/components/schemas/config/hook.yaml b/doc/openapi/components/schemas/config/hook.yaml index ac9496072..919a85c48 100644 --- a/doc/openapi/components/schemas/config/hook.yaml +++ b/doc/openapi/components/schemas/config/hook.yaml @@ -2,16 +2,9 @@ # yaml-language-server: $schema=http://json-schema.org/draft-07/schema type: object - title: Hook -required: -- type - properties: - type: - type: string - enabled: type: boolean default: true diff --git a/doc/openapi/components/schemas/config/hook_list.yaml b/doc/openapi/components/schemas/config/hook_list.yaml new file mode 100644 index 000000000..0b45d7753 --- /dev/null +++ b/doc/openapi/components/schemas/config/hook_list.yaml @@ -0,0 +1,6 @@ +--- +# yaml-language-server: $schema=http://json-schema.org/draft-07/schema + +type: array +items: + $ref: hook_spec.yaml diff --git a/doc/openapi/components/schemas/config/hook_obj.yaml b/doc/openapi/components/schemas/config/hook_obj.yaml new file mode 100644 index 000000000..f8630df7c --- /dev/null +++ b/doc/openapi/components/schemas/config/hook_obj.yaml @@ -0,0 +1,38 @@ +--- +# yaml-language-server: $schema=http://json-schema.org/draft-07/schema + +type: object +title: Format Object +required: +- type +properties: + type: + type: string +discriminator: + propertyName: type + mapping: + average: hooks/_average.yaml + cast: hooks/_cast.yaml + decimate: hooks/_decimate.yaml + dp: hooks/_dp.yaml + drop: hooks/_drop.yaml + dump: hooks/_dump.yaml + ebm: hooks/_ebm.yaml + fix: hooks/_fix.yaml + gate: hooks/_gate.yaml + jitter_calc: hooks/_jitter_calc.yaml + limit_rate: hooks/_limit_rate.yaml + limit_value: hooks/_limit_value.yaml + lua: hooks/_lua.yaml + ma: hooks/_ma.yaml + pmu_dft: hooks/_pmu_dft.yaml + pps_ts: hooks/_pps_ts.yaml + print: hooks/_print.yaml + restart: hooks/_restart.yaml + rms: hooks/_rms.yaml + scale: hooks/_scale.yaml + shift_seq: hooks/_shift_seq.yaml + shift_ts: hooks/_shift_ts.yaml + skip_first: hooks/_skip_first.yaml + stats: hooks/_stats.yaml + ts: hooks/_ts.yaml diff --git a/doc/openapi/components/schemas/config/hook_spec.yaml b/doc/openapi/components/schemas/config/hook_spec.yaml new file mode 100644 index 000000000..35a94fdaf --- /dev/null +++ b/doc/openapi/components/schemas/config/hook_spec.yaml @@ -0,0 +1,33 @@ +--- +# yaml-language-server: $schema=http://json-schema.org/draft-07/schema + +oneOf: +- $ref: hook_obj.yaml +- title: Hook Name + type: string + enum: + - average + - cast + - decimate + - dp + - drop + - dump + - ebm + - fix + - gate + - jitter_calc + - limit_rate + - limit_value + - lua + - ma + - pmu_dft + - pps_ts + - print + - restart + - rms + - scale + - shift_seq + - shift_ts + - skip_first + - stats + - ts diff --git a/doc/openapi/components/schemas/config/hooklist.yaml b/doc/openapi/components/schemas/config/hooklist.yaml deleted file mode 100644 index 210d73cdd..000000000 --- a/doc/openapi/components/schemas/config/hooklist.yaml +++ /dev/null @@ -1,36 +0,0 @@ ---- -# yaml-language-server: $schema=http://json-schema.org/draft-07/schema - -type: array -items: - oneOf: - - $ref: hook.yaml - - type: string - title: Hook Name - description: Only the hook type is provided. No other settings can be configured. - enum: - - average - - cast - - decimate - - dp - - drop - - dump - - ebm - - fix - - gate - - jitter_calc - - limit_rate - - limit_value - - lua - - ma - - pmu_dft - - pps_ts - - print - - restart - - rms - - scale - - shift_seq - - shift_ts - - skip_first - - stats - - ts diff --git a/doc/openapi/components/schemas/config/hooks/_average.yaml b/doc/openapi/components/schemas/config/hooks/_average.yaml new file mode 100644 index 000000000..cf6169f67 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_average.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: average.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_cast.yaml b/doc/openapi/components/schemas/config/hooks/_cast.yaml new file mode 100644 index 000000000..a79739b61 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_cast.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: cast.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_decimate.yaml b/doc/openapi/components/schemas/config/hooks/_decimate.yaml new file mode 100644 index 000000000..5947043b8 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_decimate.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: decimate.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_dp.yaml b/doc/openapi/components/schemas/config/hooks/_dp.yaml new file mode 100644 index 000000000..09a3c4e75 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_dp.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: dp.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_drop.yaml b/doc/openapi/components/schemas/config/hooks/_drop.yaml new file mode 100644 index 000000000..6f1dfe36b --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_drop.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: drop.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_dump.yaml b/doc/openapi/components/schemas/config/hooks/_dump.yaml new file mode 100644 index 000000000..d70ff4563 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_dump.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: dump.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_ebm.yaml b/doc/openapi/components/schemas/config/hooks/_ebm.yaml new file mode 100644 index 000000000..3da4f7744 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_ebm.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: ebm.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_fix.yaml b/doc/openapi/components/schemas/config/hooks/_fix.yaml new file mode 100644 index 000000000..ef40a9372 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_fix.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: fix.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_gate.yaml b/doc/openapi/components/schemas/config/hooks/_gate.yaml new file mode 100644 index 000000000..8295b1347 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_gate.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: gate.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_jitter_calc.yaml b/doc/openapi/components/schemas/config/hooks/_jitter_calc.yaml new file mode 100644 index 000000000..f8ab19b47 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_jitter_calc.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: jitter_calc.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_limit_rate.yaml b/doc/openapi/components/schemas/config/hooks/_limit_rate.yaml new file mode 100644 index 000000000..674e78065 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_limit_rate.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: limit_rate.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_limit_value.yaml b/doc/openapi/components/schemas/config/hooks/_limit_value.yaml new file mode 100644 index 000000000..ed15e9d0b --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_limit_value.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: limit_value.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_lua.yaml b/doc/openapi/components/schemas/config/hooks/_lua.yaml new file mode 100644 index 000000000..0c91a3591 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_lua.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: lua.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_ma.yaml b/doc/openapi/components/schemas/config/hooks/_ma.yaml new file mode 100644 index 000000000..e7a79046f --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_ma.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: ma.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_pmu_dft.yaml b/doc/openapi/components/schemas/config/hooks/_pmu_dft.yaml new file mode 100644 index 000000000..bafb626fd --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_pmu_dft.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: pmu_dft.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_pps_ts.yaml b/doc/openapi/components/schemas/config/hooks/_pps_ts.yaml new file mode 100644 index 000000000..96d05deb9 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_pps_ts.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: pps_ts.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_print.yaml b/doc/openapi/components/schemas/config/hooks/_print.yaml new file mode 100644 index 000000000..02413f8d4 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_print.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: print.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_restart.yaml b/doc/openapi/components/schemas/config/hooks/_restart.yaml new file mode 100644 index 000000000..eb57f783a --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_restart.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: restart.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_rms.yaml b/doc/openapi/components/schemas/config/hooks/_rms.yaml new file mode 100644 index 000000000..3b7721648 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_rms.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: rms.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_scale.yaml b/doc/openapi/components/schemas/config/hooks/_scale.yaml new file mode 100644 index 000000000..acf61fdbd --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_scale.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: scale.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_shift_seq.yaml b/doc/openapi/components/schemas/config/hooks/_shift_seq.yaml new file mode 100644 index 000000000..dd55f6b55 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_shift_seq.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: shift_seq.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_shift_ts.yaml b/doc/openapi/components/schemas/config/hooks/_shift_ts.yaml new file mode 100644 index 000000000..2065bf947 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_shift_ts.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: shift_ts.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_skip_first.yaml b/doc/openapi/components/schemas/config/hooks/_skip_first.yaml new file mode 100644 index 000000000..8bc921ba7 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_skip_first.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: skip_first.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_stats.yaml b/doc/openapi/components/schemas/config/hooks/_stats.yaml new file mode 100644 index 000000000..a01396725 --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_stats.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: stats.yaml diff --git a/doc/openapi/components/schemas/config/hooks/_ts.yaml b/doc/openapi/components/schemas/config/hooks/_ts.yaml new file mode 100644 index 000000000..f572395cd --- /dev/null +++ b/doc/openapi/components/schemas/config/hooks/_ts.yaml @@ -0,0 +1,3 @@ +allOf: +- $ref: ../hook.yaml +- $ref: ts.yaml diff --git a/doc/openapi/components/schemas/config/http.yaml b/doc/openapi/components/schemas/config/http.yaml index c1c78a50d..05946bee8 100644 --- a/doc/openapi/components/schemas/config/http.yaml +++ b/doc/openapi/components/schemas/config/http.yaml @@ -8,16 +8,20 @@ properties: default: 80 title: Listening port description: | - Listening port for HTTP connections. + The TCP port number on which HTTP & WebSocket server. ssl_cert: type: string title: SSL Certificate Path - description: Path to an SSL certificate + description: | + The public x509 certificate used for server-side SSL encryption. + example: /etc/ssl/certs/mycert.pem ssl_private_key: type: string title: SSL Private Key Path - description: Path to an SSL private key + description: | + The private x509 key used for server-side SSL encryption. + example: /etc/ssl/private/mykey.pem diff --git a/doc/openapi/components/schemas/config/nodes/common.yaml b/doc/openapi/components/schemas/config/node.yaml similarity index 91% rename from doc/openapi/components/schemas/config/nodes/common.yaml rename to doc/openapi/components/schemas/config/node.yaml index efe2c7e4a..e5ca6e945 100644 --- a/doc/openapi/components/schemas/config/nodes/common.yaml +++ b/doc/openapi/components/schemas/config/node.yaml @@ -14,7 +14,7 @@ properties: The value of this setting determines how many samples will be combined into one packet. hooks: - $ref: hooklist.yaml + $ref: hook_list.yaml builtin: type: boolean @@ -34,7 +34,7 @@ properties: $ref: signallist.yaml hooks: - $ref: hooklist.yaml + $ref: hook_list.yaml out: type: object @@ -44,7 +44,7 @@ properties: type: integer hooks: - $ref: hooklist.yaml + $ref: hook_list.yaml netem: $ref: netem.yaml diff --git a/doc/openapi/components/schemas/config/nodes/amqp.yaml b/doc/openapi/components/schemas/config/nodes/amqp.yaml index 9a6db2741..7ccc25bda 100644 --- a/doc/openapi/components/schemas/config/nodes/amqp.yaml +++ b/doc/openapi/components/schemas/config/nodes/amqp.yaml @@ -45,4 +45,4 @@ allOf: client_key: default: "/path/to/client.key" -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/can.yaml b/doc/openapi/components/schemas/config/nodes/can.yaml index 1682043b5..7ada17f5a 100644 --- a/doc/openapi/components/schemas/config/nodes/can.yaml +++ b/doc/openapi/components/schemas/config/nodes/can.yaml @@ -6,4 +6,4 @@ allOf: properties: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/comedi.yaml b/doc/openapi/components/schemas/config/nodes/comedi.yaml index 1682043b5..7ada17f5a 100644 --- a/doc/openapi/components/schemas/config/nodes/comedi.yaml +++ b/doc/openapi/components/schemas/config/nodes/comedi.yaml @@ -6,4 +6,4 @@ allOf: properties: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/ethercat.yaml b/doc/openapi/components/schemas/config/nodes/ethercat.yaml index 47df3bf76..5100dc3e5 100644 --- a/doc/openapi/components/schemas/config/nodes/ethercat.yaml +++ b/doc/openapi/components/schemas/config/nodes/ethercat.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=http://json-schema.org/draft-07/schema allOf: -- $ref: common.yaml +- $ref: ../node.yaml - type: object properties: format: diff --git a/doc/openapi/components/schemas/config/nodes/exec.yaml b/doc/openapi/components/schemas/config/nodes/exec.yaml index e6b29eedb..0fa09f350 100644 --- a/doc/openapi/components/schemas/config/nodes/exec.yaml +++ b/doc/openapi/components/schemas/config/nodes/exec.yaml @@ -46,4 +46,4 @@ allOf: A object of key/value pairs of environemnt variables which should be passed to the sub-process in addition to the parent environment. -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/file.yaml b/doc/openapi/components/schemas/config/nodes/file.yaml index 029b25b13..bf56b701d 100644 --- a/doc/openapi/components/schemas/config/nodes/file.yaml +++ b/doc/openapi/components/schemas/config/nodes/file.yaml @@ -29,4 +29,4 @@ allOf: ``` -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/fpga.yaml b/doc/openapi/components/schemas/config/nodes/fpga.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/fpga.yaml +++ b/doc/openapi/components/schemas/config/nodes/fpga.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/iec61850-8-1.yaml b/doc/openapi/components/schemas/config/nodes/iec61850-8-1.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/iec61850-8-1.yaml +++ b/doc/openapi/components/schemas/config/nodes/iec61850-8-1.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/iec61850-9-2.yaml b/doc/openapi/components/schemas/config/nodes/iec61850-9-2.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/iec61850-9-2.yaml +++ b/doc/openapi/components/schemas/config/nodes/iec61850-9-2.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/infiniband.yaml b/doc/openapi/components/schemas/config/nodes/infiniband.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/infiniband.yaml +++ b/doc/openapi/components/schemas/config/nodes/infiniband.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/influxdb.yaml b/doc/openapi/components/schemas/config/nodes/influxdb.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/influxdb.yaml +++ b/doc/openapi/components/schemas/config/nodes/influxdb.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/kafka.yaml b/doc/openapi/components/schemas/config/nodes/kafka.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/kafka.yaml +++ b/doc/openapi/components/schemas/config/nodes/kafka.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/loopback.yaml b/doc/openapi/components/schemas/config/nodes/loopback.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/loopback.yaml +++ b/doc/openapi/components/schemas/config/nodes/loopback.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/mqtt.yaml b/doc/openapi/components/schemas/config/nodes/mqtt.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/mqtt.yaml +++ b/doc/openapi/components/schemas/config/nodes/mqtt.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/nanomsg.yaml b/doc/openapi/components/schemas/config/nodes/nanomsg.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/nanomsg.yaml +++ b/doc/openapi/components/schemas/config/nodes/nanomsg.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/ngsi.yaml b/doc/openapi/components/schemas/config/nodes/ngsi.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/ngsi.yaml +++ b/doc/openapi/components/schemas/config/nodes/ngsi.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/opal.yaml b/doc/openapi/components/schemas/config/nodes/opal.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/opal.yaml +++ b/doc/openapi/components/schemas/config/nodes/opal.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/redis.yaml b/doc/openapi/components/schemas/config/nodes/redis.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/redis.yaml +++ b/doc/openapi/components/schemas/config/nodes/redis.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/rtp.yaml b/doc/openapi/components/schemas/config/nodes/rtp.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/rtp.yaml +++ b/doc/openapi/components/schemas/config/nodes/rtp.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/shmem.yaml b/doc/openapi/components/schemas/config/nodes/shmem.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/shmem.yaml +++ b/doc/openapi/components/schemas/config/nodes/shmem.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/signal.yaml b/doc/openapi/components/schemas/config/nodes/signal.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/signal.yaml +++ b/doc/openapi/components/schemas/config/nodes/signal.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/signal_v2.yaml b/doc/openapi/components/schemas/config/nodes/signal_v2.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/signal_v2.yaml +++ b/doc/openapi/components/schemas/config/nodes/signal_v2.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/socket.yaml b/doc/openapi/components/schemas/config/nodes/socket.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/socket.yaml +++ b/doc/openapi/components/schemas/config/nodes/socket.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/stats_node.yaml b/doc/openapi/components/schemas/config/nodes/stats_node.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/stats_node.yaml +++ b/doc/openapi/components/schemas/config/nodes/stats_node.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/temper.yaml b/doc/openapi/components/schemas/config/nodes/temper.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/temper.yaml +++ b/doc/openapi/components/schemas/config/nodes/temper.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/test_rtt.yaml b/doc/openapi/components/schemas/config/nodes/test_rtt.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/test_rtt.yaml +++ b/doc/openapi/components/schemas/config/nodes/test_rtt.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/uldaq.yaml b/doc/openapi/components/schemas/config/nodes/uldaq.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/uldaq.yaml +++ b/doc/openapi/components/schemas/config/nodes/uldaq.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/websocket.yaml b/doc/openapi/components/schemas/config/nodes/websocket.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/websocket.yaml +++ b/doc/openapi/components/schemas/config/nodes/websocket.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/nodes/zeromq.yaml b/doc/openapi/components/schemas/config/nodes/zeromq.yaml index 53f8d9484..f7f54ec77 100644 --- a/doc/openapi/components/schemas/config/nodes/zeromq.yaml +++ b/doc/openapi/components/schemas/config/nodes/zeromq.yaml @@ -7,4 +7,4 @@ allOf: format: $ref: ../format_spec.yaml -- $ref: common.yaml +- $ref: ../node.yaml diff --git a/doc/openapi/components/schemas/config/path.yaml b/doc/openapi/components/schemas/config/path.yaml index 46777202f..e7b4ea1df 100644 --- a/doc/openapi/components/schemas/config/path.yaml +++ b/doc/openapi/components/schemas/config/path.yaml @@ -86,4 +86,4 @@ properties: When this flag is set, the original sequence number from the source node will be used when multiplexing the nodes. hooks: - $ref: hooklist.yaml + $ref: hook_list.yaml