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: