2021-10-09 17:38:49 +02:00
|
|
|
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
|
|
|
# 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-10-09 17:38:49 +02:00
|
|
|
title: PMU measurements as used in the EdgeFlex project by Manuel
|
|
|
|
description: |
|
2021-11-18 12:10:36 +01:00
|
|
|
VILLASnode does not support deseralization (yet).
|
2021-10-09 17:38:49 +02:00
|
|
|
|
|
|
|
type: object
|
2021-11-18 12:10:36 +01:00
|
|
|
|
2021-10-09 17:38:49 +02:00
|
|
|
required:
|
|
|
|
- created
|
2021-11-18 12:10:36 +01:00
|
|
|
|
2024-02-28 00:12:39 +01:00
|
|
|
properties:
|
2021-10-09 17:38:49 +02:00
|
|
|
created:
|
2021-11-18 12:10:36 +01:00
|
|
|
title: Sampling timestamp
|
2021-10-09 17:38:49 +02:00
|
|
|
description: A timestamps in miliseconds since 1970-01-01 00:00:00
|
|
|
|
type: number
|
2021-11-18 12:10:36 +01:00
|
|
|
minimum: 0
|
2021-10-09 17:38:49 +02:00
|
|
|
|
2021-11-18 12:10:36 +01:00
|
|
|
additionalProperties:
|
2021-10-09 17:38:49 +02:00
|
|
|
description: Key-value pairs of measurements
|
|
|
|
anyOf:
|
|
|
|
- type: number
|
|
|
|
- type: integer
|
|
|
|
- type: boolean
|
|
|
|
- type: object
|
|
|
|
description: A complex number represented in real and imaginary components
|
2024-02-28 00:12:39 +01:00
|
|
|
properties:
|
2021-10-09 17:38:49 +02:00
|
|
|
real:
|
|
|
|
type: number
|
|
|
|
imag:
|
|
|
|
type: number
|
|
|
|
|
2021-11-18 12:10:36 +01:00
|
|
|
example:
|
|
|
|
- created: 1633791645123
|
|
|
|
signal0: 123.456
|
|
|
|
signal1: true
|
|
|
|
signal2: 1234
|
|
|
|
signal3:
|
|
|
|
real: 1234.4556
|
|
|
|
imag: 23232.12312
|