Class ScimError
- Namespace
- Kuestenlogik.Bowire.Scim
- Assembly
- Kuestenlogik.Bowire.Scim.dll
An error response (RFC 7644 §3.12).
public sealed class ScimError
- Inheritance
-
ScimError
- Inherited Members
Constructors
ScimError()
public ScimError()
Properties
Detail
What went wrong, for a human reading the connector's log.
[JsonPropertyName("detail")]
public string? Detail { get; set; }
Property Value
Schemas
Schema URNs this response conforms to.
[JsonPropertyName("schemas")]
public List<string> Schemas { get; init; }
Property Value
ScimType
The SCIM error keyword, e.g. uniqueness, invalidFilter.
[JsonPropertyName("scimType")]
public string? ScimType { get; set; }
Property Value
Status
HTTP status, as a string — the RFC is explicit about the type.
[JsonPropertyName("status")]
public string Status { get; set; }