export interface RuleUsage { /** The unique identifier for the rule. */ id?: string | undefined; /** The name of the rule. */ name?: string | undefined; /** The description of the rule. */ description?: string | undefined; /** The unique slug for the rule used in API requests. */ slug?: string | undefined; /** Whether the rule is published. */ published?: boolean | undefined; /** The date this rule was last updated. */ updated_at?: string | undefined; }