mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
42 lines
940 B
YAML
42 lines
940 B
YAML
|
---
|
||
|
# yaml-language-server: $schema=http://json-schema.org/draft-07/schema
|
||
|
|
||
|
$schema: 'http://json-schema.org/draft-07/schema'
|
||
|
$id: 'https://villas.fein-aachen.org/formats/edgeflex.json'
|
||
|
|
||
|
title: PMU measurements as used in the EdgeFlex project by Manuel
|
||
|
description: |
|
||
|
VILLASnode does not support deseralization (yet)
|
||
|
|
||
|
type: object
|
||
|
required:
|
||
|
- created
|
||
|
properties:
|
||
|
created:
|
||
|
description: A timestamps in miliseconds since 1970-01-01 00:00:00
|
||
|
type: number
|
||
|
min: 0
|
||
|
|
||
|
additionalItems:
|
||
|
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
|
||
|
|
||
|
examples:
|
||
|
- - signal0: 123.456
|
||
|
signal1: true
|
||
|
signal2: 1234
|
||
|
signal3:
|
||
|
real: 1234.4556
|
||
|
imag: 23232.12312
|
||
|
created: 1633791645123
|
||
|
|