2021-11-18 12:10:36 +01:00
|
|
|
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
2022-04-07 08:52:19 +02:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2022-01-10 17:52:36 +01:00
|
|
|
---
|
2021-11-18 12:10:36 +01:00
|
|
|
allOf:
|
|
|
|
- type: object
|
2022-04-07 08:52:19 +02:00
|
|
|
required:
|
|
|
|
- interface
|
2021-11-18 12:10:36 +01:00
|
|
|
properties:
|
2022-04-07 08:52:19 +02:00
|
|
|
in:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
signals:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
$ref: ./signals/iec61850_signal.yaml
|
|
|
|
|
|
|
|
out:
|
|
|
|
type: object
|
|
|
|
required:
|
|
|
|
- signals
|
|
|
|
- svid
|
|
|
|
properties:
|
|
|
|
signals:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
$ref: ./signals/iec61850_signal.yaml
|
|
|
|
|
|
|
|
svid:
|
|
|
|
type: string
|
|
|
|
|
|
|
|
confrev:
|
|
|
|
type: integer
|
|
|
|
|
|
|
|
smpmod:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- per_nominal_period
|
|
|
|
- samples_per_second
|
|
|
|
- seconds_per_sample
|
|
|
|
|
|
|
|
smprate:
|
|
|
|
type: integer
|
|
|
|
|
|
|
|
vlan_id:
|
|
|
|
type: integer
|
|
|
|
|
|
|
|
vlan_priority:
|
|
|
|
type: integer
|
|
|
|
|
|
|
|
interface:
|
|
|
|
type: string
|
|
|
|
description: Name of network interface to/from which this node will publish/subscribe for SV frames.
|
|
|
|
|
|
|
|
app_id:
|
|
|
|
type: integer
|
|
|
|
|
|
|
|
dst_address:
|
|
|
|
type: string
|
2021-12-02 04:14:44 -05:00
|
|
|
|
2021-12-06 09:25:55 +01:00
|
|
|
- $ref: ../node.yaml
|