Skip to content

agents / Exports / ValidationIssue

Interface: ValidationIssue

Individual validation issue

Table of contents

Properties

Properties

id

id: string

Unique identifier for this issue

Defined in

packages/agents/src/interfaces/workflow-validator.ts:25


severity

severity: ValidationSeverity

Issue severity level

Defined in

packages/agents/src/interfaces/workflow-validator.ts:28


message

message: string

Human-readable message

Defined in

packages/agents/src/interfaces/workflow-validator.ts:31


details

Optional details: string

Technical details or suggestion

Defined in

packages/agents/src/interfaces/workflow-validator.ts:34


location

Optional location: Object

Location where issue was found

Type declaration

NameType
nodeId?string
edgeId?string
field?string
line?number
column?number

Defined in

packages/agents/src/interfaces/workflow-validator.ts:37


rule

rule: string

Rule that triggered this issue

Defined in

packages/agents/src/interfaces/workflow-validator.ts:46


suggestedFix

Optional suggestedFix: Object

Suggested fix (if available)

Type declaration

NameType
descriptionstring
action"modify" | "remove" | "add"
target?WorkflowConfig

Defined in

packages/agents/src/interfaces/workflow-validator.ts:49


detectedAt

detectedAt: Date

Timestamp when issue was detected

Defined in

packages/agents/src/interfaces/workflow-validator.ts:56

Released under the MIT License.