Table of Contents

Class ComplianceControl

Namespace
JD.AI.Core.Governance
Assembly
JD.AI.Core.dll

Result of a single compliance control check.

public sealed class ComplianceControl
Inheritance
ComplianceControl
Inherited Members

Constructors

ComplianceControl(string, string, bool, string?)

Result of a single compliance control check.

public ComplianceControl(string id, string description, bool pass, string? remediation)

Parameters

id string
description string
pass bool
remediation string

Properties

Description

Human-readable description of the control.

public string Description { get; }

Property Value

string

Id

Control identifier (e.g. "SOC2-AU-1").

public string Id { get; }

Property Value

string

Pass

True if the control passes for the evaluated policy.

public bool Pass { get; }

Property Value

bool

Remediation

Remediation guidance if the control fails; null if passing.

public string? Remediation { get; }

Property Value

string