OBJECT

AutoModFailureReason

AutoModFailureReason is the failure reason from AutoMod.

link GraphQL Schema definition

1type AutoModFailureReason {
2
3# normalizedText is the normalized text processed by automod, if you need to get
4# the violation words, use startPosition and endPosition to get the substring from
5# raw text.
6normalizedText: String!
7
8# startPosition is the start position of the inappropriate substring.
9startPosition: Int!
10
11# endPosition is the end position of the inappropriate substring.
12endPosition: Int!
13
14# topics is the topic and its level of the inappropriate substring.
15topics: DetailedAutoModConfiguration!
16
17}