using System.Text.Json.Serialization;
namespace AIStudio.Assistants.VisualBriefing;
///
/// Classifies source coverage reported by the content stage.
///
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum VisualBriefingSourceCoverageKind
{
///
/// The source directly contributed facts to the briefing.
///
USED,
///
/// The source supplied context without directly contributing visible facts.
///
CONTEXTUAL,
///
/// The source is intentionally outside the scope requested by the user.
///
OUT_OF_SCOPE,
}