namespace StellaOps.Scanner.Reachability.Witnesses;
///
/// Constants for the stellaops.witness.v1 schema.
///
public static class WitnessSchema
{
///
/// Current witness schema version.
///
public const string Version = "stellaops.witness.v1";
///
/// Prefix for witness IDs.
///
public const string WitnessIdPrefix = "wit:";
///
/// Default DSSE payload type for witnesses.
///
public const string DssePayloadType = "application/vnd.stellaops.witness.v1+json";
}