Table of Contents

Class AssetDatasetSchemaElementSchema

Namespace
Azure.Iot.Operations.Services.AssetAndDeviceRegistry.AdrBaseService
Assembly
Azure.Iot.Operations.Services.dll
public class AssetDatasetSchemaElementSchema : IJsonOnDeserialized, IJsonOnSerializing
Inheritance
AssetDatasetSchemaElementSchema
Implements
Inherited Members

Properties

DataPoints

The 'dataPoints' Field.

[JsonPropertyName("dataPoints")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public List<AssetDatasetDataPointSchemaElementSchema>? DataPoints { get; set; }

Property Value

List<AssetDatasetDataPointSchemaElementSchema>

DataSource

Name of the data source within a dataset.

[JsonPropertyName("dataSource")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? DataSource { get; set; }

Property Value

string

DatasetConfiguration

Stringified JSON that contains connector-specific JSON string that describes configuration for the specific dataset.

[JsonPropertyName("datasetConfiguration")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? DatasetConfiguration { get; set; }

Property Value

string

Destinations

Destinations for a dataset.

[JsonPropertyName("destinations")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public List<DatasetDestination>? Destinations { get; set; }

Property Value

List<DatasetDestination>

Name

Name of the dataset.

[JsonPropertyName("name")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonRequired]
public string Name { get; set; }

Property Value

string

TypeRef

URI or type definition ID.

[JsonPropertyName("typeRef")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? TypeRef { get; set; }

Property Value

string