UserGroup#

pydantic model nublado.controller.models.v1.lab.UserGroup#

Group membership.

Parameters:

data (Any)

Show JSON schema
{
   "title": "UserGroup",
   "description": "Group membership.",
   "type": "object",
   "properties": {
      "name": {
         "description": "Should follow Unix naming conventions",
         "examples": [
            "ferrymen"
         ],
         "title": "Group to which lab user belongs",
         "type": "string"
      },
      "id": {
         "description": "32-bit unsigned integer",
         "examples": [
            2023
         ],
         "title": "Numeric GID of the group (POSIX)",
         "type": "integer"
      }
   },
   "required": [
      "name",
      "id"
   ]
}

Fields:
field id: Annotated[int] [Required]#

32-bit unsigned integer

field name: Annotated[str] [Required]#

Should follow Unix naming conventions