{
  "description": "ContainerUser represents user identity information",
  "properties": {
    "linux": {
      "description": "LinuxContainerUser represents user identity information in Linux containers",
      "properties": {
        "gid": {
          "description": "GID is the primary gid initially attached to the first process in the container",
          "format": "int64",
          "type": "integer"
        },
        "supplementalGroups": {
          "description": "SupplementalGroups are the supplemental groups initially attached to the first process in the container",
          "items": {
            "format": "int64",
            "type": [
              "integer",
              "null"
            ]
          },
          "type": [
            "array",
            "null"
          ],
          "x-kubernetes-list-type": "atomic"
        },
        "uid": {
          "description": "UID is the primary uid initially attached to the first process in the container",
          "format": "int64",
          "type": "integer"
        }
      },
      "required": [
        "uid",
        "gid"
      ],
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": false
    }
  },
  "type": "object",
  "additionalProperties": false,
  "$schema": "http://json-schema.org/schema#"
}