Class AssetDatasetDataPointSchemaElementSchema
- Assembly
- Azure.Iot.Operations.Services.dll
public class AssetDatasetDataPointSchemaElementSchema : IJsonOnDeserialized, IJsonOnSerializing
- Inheritance
-
AssetDatasetDataPointSchemaElementSchema
- Implements
- Inherited Members
Properties
DataPointConfiguration
Stringified JSON that contains connector-specific configuration for the data point.
[JsonPropertyName("dataPointConfiguration")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? DataPointConfiguration { get; set; }
Property Value
DataSource
The address of the source of the data in the asset (e.g. URL) so that a client can access the data source on the asset.
[JsonPropertyName("dataSource")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonRequired]
public string DataSource { get; set; }
Property Value
Name
The name of the data point.
[JsonPropertyName("name")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonRequired]
public string Name { get; set; }
Property Value
TypeRef
URI or type definition ID.
[JsonPropertyName("typeRef")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? TypeRef { get; set; }