Class ImportFieldErrorModel
Single agent_definition validation error with source position.
Carried as elements of Errors.
Inherited Members
Namespace: Seclai.Models
Assembly: Seclai.dll
Syntax
public sealed class ImportFieldErrorModel
Properties
Column
1-indexed column in Source.
Declaration
[JsonPropertyName("column")]
public int Column { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Line
1-indexed line in Source.
Declaration
[JsonPropertyName("line")]
public int Line { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
Message
Human-readable description of the problem.
Declaration
[JsonPropertyName("message")]
public string? Message { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Path
Dotted path of the offending field (e.g. agent.definition.child_steps[0].step_type).
Declaration
[JsonPropertyName("path")]
public string? Path { get; set; }
Property Value
| Type | Description |
|---|---|
| string |