Rhopoint Appearance Elements Help Help

RaeJsonFile

The RaeJsonFile is the root record for the RAE file format in its JSON representation.

Properties

  • Format (required):
    Identifies the data format contained within the file. For now, only "MeasurementComponentMetaTuple[]" is supported.

  • Version (required):
    Indicates the version of the file format. The current version is 1.

  • DataContainer (required):
    Indicates the format of the data inside Data. Currently, this must be "MeasurementComponentMetaTuple[]".

  • Data (required):
    The actual measurement data stored as a list of MeasurementComponentMetaTuple.

Declaration

public record RaeJsonFile { [JsonProperty("format")] public required string Format { get; set; } [JsonProperty("version")] public required int Version { get; set; } [JsonProperty("data")] public required IEnumerable<MeasurementComponentMetaTuple> Data { get; set; } [JsonProperty("dataContainer")] public required string DataContainer { get; set; } }
Last modified: 29 January 2025