Table of Contents

Class SchemaRegistryErrorDetails

Namespace
Azure.Iot.Operations.Services.SchemaRegistry.SchemaRegistry
Assembly
Azure.Iot.Operations.Services.dll

Additional details about an error

public class SchemaRegistryErrorDetails
Inheritance
SchemaRegistryErrorDetails
Inherited Members

Properties

Code

Multi-part error code for classification and root causing of errors (e.g., '400.200').

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

Property Value

string

CorrelationId

Correlation ID for tracing the error across systems.

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

Property Value

string

Message

Human-readable helpful error message to provide additional context for the error

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

Property Value

string