Skip to main content

Interface IDataFormat

The DTO interface that is used to represent a data format. This is used to define the format of the data that is being processed so that the data can be processed correctly. One of the three requirements in defining / properties of a [Workspace.XBR.Xperiflow.Etl.DataDefinition](../Xperiflow.Etl/DataDefinition.md)

Namespace: Workspace.XBR.Xperiflow.Etl

Assembly: Xperiflow.dll

Declaration
[JsonDerivedType(typeof(UnstructuredDataFormat), "Unstructured")]
[JsonDerivedType(typeof(CsvDataFormat), "Csv")]
[JsonDerivedType(typeof(ParquetDataFormat), "Parquet")]
[JsonDerivedType(typeof(SqlDataFormat), "Sql")]
public interface IDataFormat

Properties

Format

The format of the data. This is used to determine how the data should be processed.

Declaration
string Format { get; }

Was this page helpful?