2023-08-31 11:25:01 +02:00
|
|
|
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
2022-03-28 10:32:28 +02:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2023-08-31 11:25:01 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
---
|
2021-12-06 09:25:55 +01:00
|
|
|
allOf:
|
2022-04-07 08:52:19 +02:00
|
|
|
- $ref: ../hook_obj.yaml
|
2021-12-06 09:25:55 +01:00
|
|
|
- $ref: rms.yaml
|
2022-03-28 10:32:28 +02:00
|
|
|
- type: object
|
|
|
|
required:
|
|
|
|
- window_size
|
2024-02-28 00:12:39 +01:00
|
|
|
properties:
|
2022-03-28 10:32:28 +02:00
|
|
|
window_size:
|
|
|
|
type: integer
|
|
|
|
min: 1
|
|
|
|
example: 1000
|
|
|
|
description: The number of samples in the window.
|