Rapid7 · Schema

GraphQlConfigObject

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
enabled boolean
introspection_schema_file_path string
graph_ql_endpoint_url string
verb string
max_requests integer
query_type string
host_name string
introspection_query_url string
View JSON Schema on GitHub

JSON Schema

rapid7-graphqlconfigobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GraphQlConfigObject",
  "title": "GraphQlConfigObject",
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "introspection_schema_file_path": {
      "type": "string"
    },
    "graph_ql_endpoint_url": {
      "type": "string"
    },
    "verb": {
      "type": "string",
      "enum": [
        "POST",
        "GET"
      ]
    },
    "max_requests": {
      "type": "integer",
      "format": "int64"
    },
    "query_type": {
      "type": "string",
      "enum": [
        "QUERY",
        "MUTATION",
        "QUERY_AND_MUTATION"
      ]
    },
    "host_name": {
      "type": "string"
    },
    "introspection_query_url": {
      "type": "string"
    }
  }
}