1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/doc/openapi/components/schemas/formats/edgeflex.yaml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1,001 B
YAML
Raw Permalink Normal View History

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
2021-10-09 17:38:49 +02:00
properties:
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
properties:
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
2021-10-09 17:38:49 +02:00