{
  "description": "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.",
  "properties": {
    "ranges": {
      "description": "ranges are the allowed ranges of supplemental groups.  If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.",
      "items": {
        "description": "IDRange provides a min/max of an allowed range of IDs.",
        "properties": {
          "max": {
            "description": "max is the end of the range, inclusive.",
            "format": "int64",
            "type": "integer"
          },
          "min": {
            "description": "min is the start of the range, inclusive.",
            "format": "int64",
            "type": "integer"
          }
        },
        "required": [
          "min",
          "max"
        ],
        "type": [
          "object",
          "null"
        ]
      },
      "type": [
        "array",
        "null"
      ]
    },
    "rule": {
      "description": "rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}