core/modules/psocsf/public/Objects/Process/IntegrityId.cs

namespace Ocsf.Objects {
    public enum IntegrityId : int
    {
        Unknown = 0,
        Untrusted = 1,
        Low = 2,
        Medium = 3,
        High = 4,
        System = 5,
        Protected = 6,
        Other = 9
    };
}