{
  "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",
        "null"
      ]
    },
    "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",
        "null"
      ]
    }
  },
  "required": [
    "uid",
    "gid"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}