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:
|
2024-05-24 02:35:17 +02:00
|
|
|
check_dst_address:
|
|
|
|
type: boolean
|
|
|
|
default: false
|
|
|
|
|
2022-04-07 08:52:19 +02:00
|
|
|
signals:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
$ref: ./signals/iec61850_signal.yaml
|
|
|
|
|
|
|
|
out:
|
|
|
|
type: object
|
|
|
|
required:
|
|
|
|
- signals
|
2024-05-24 02:35:17 +02:00
|
|
|
- sv_id
|
2022-04-07 08:52:19 +02:00
|
|
|
properties:
|
|
|
|
signals:
|
|
|
|
type: array
|
|
|
|
items:
|
|
|
|
$ref: ./signals/iec61850_signal.yaml
|
2024-02-28 00:12:39 +01:00
|
|
|
|
2024-05-24 02:35:17 +02:00
|
|
|
sv_id:
|
2022-04-07 08:52:19 +02:00
|
|
|
type: string
|
|
|
|
|
2024-05-24 02:35:17 +02:00
|
|
|
conf_rev:
|
2022-04-07 08:52:19 +02:00
|
|
|
type: integer
|
|
|
|
|
2024-05-24 02:35:17 +02:00
|
|
|
smp_mod:
|
2022-04-07 08:52:19 +02:00
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- per_nominal_period
|
|
|
|
- samples_per_second
|
|
|
|
- seconds_per_sample
|
|
|
|
|
2024-05-24 02:35:17 +02:00
|
|
|
smp_synch:
|
|
|
|
type: string
|
|
|
|
enum:
|
|
|
|
- not_synchronized
|
|
|
|
- local_clock
|
|
|
|
- global_clock
|
2022-04-07 08:52:19 +02:00
|
|
|
|
2024-05-24 02:35:17 +02:00
|
|
|
smp_rate:
|
2022-04-07 08:52:19 +02:00
|
|
|
type: integer
|
|
|
|
|
2024-05-24 02:35:17 +02:00
|
|
|
vlan:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
enabled:
|
|
|
|
type: boolean
|
|
|
|
default: true
|
|
|
|
|
|
|
|
id:
|
|
|
|
type: integer
|
|
|
|
default: 0
|
|
|
|
|
|
|
|
priority:
|
|
|
|
type: integer
|
|
|
|
default: 4
|
2022-04-07 08:52:19 +02:00
|
|
|
|
|
|
|
interface:
|
|
|
|
type: string
|
|
|
|
description: Name of network interface to/from which this node will publish/subscribe for SV frames.
|
|
|
|
|
|
|
|
app_id:
|
|
|
|
type: integer
|
2024-05-24 02:35:17 +02:00
|
|
|
default: 0x4000
|
2022-04-07 08:52:19 +02:00
|
|
|
|
|
|
|
dst_address:
|
|
|
|
type: string
|
2024-05-24 02:35:17 +02:00
|
|
|
default: 01:0c:cd:01:00:01
|
2021-12-02 04:14:44 -05:00
|
|
|
|
2021-12-06 09:25:55 +01:00
|
|
|
- $ref: ../node.yaml
|