INPUT_OBJECT

CreateCustomAnalyzerInput

link GraphQL Schema definition

  • input CreateCustomAnalyzerInput {
  • analyzerType: AnalyzerTypeEnum
  • id: String
  • name: String
  • dictionaryCsv: String
  • dictionary: [String!]
  • regex: String
  • # Represents the latest analyzer risk.
  • analyzerRiskInstance: AnalyzerRiskInstanceInput
  • # Represents the tag ID for the given analyzer.
  • tagId: Int
  • # Represents the types of data you need to analyze using this analyzer.
  • ruleTypes: [AnalyzerRuleType!]
  • # Regex to filter fields which need to be analyzed for structured data.
  • keyRegex: String
  • # Regex to analyze the structured data.
  • structuredValueRegex: String
  • # Dictionary to analyze for the structured data.
  • structuredDictionaryCsv: String
  • # Parsed list of keywords from structuredDictionaryCsv.
  • structuredDictionary: [String!]
  • # Represents risk associated with the given analyzer.
  • risk: RiskLevelType
  • }