2024-07-17 08:34:57 +00:00
|
|
|
{
|
|
|
|
"$id": "group.schema.json",
|
|
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
2024-07-22 22:03:22 +00:00
|
|
|
"title": "group-declaration",
|
2024-07-17 08:34:57 +00:00
|
|
|
"description": "A group account",
|
|
|
|
"type": "object",
|
|
|
|
"required": [ "name" ],
|
|
|
|
"properties": {
|
|
|
|
"name": {
|
|
|
|
"type": "string",
|
|
|
|
"pattern": "^[_a-z]([-_a-z0-9]{0,31})$"
|
|
|
|
},
|
|
|
|
"gid": {
|
|
|
|
"type": "string",
|
|
|
|
"pattern": "^[0-9]*$"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|