Schema
org_group
Type:
object
description
Type:
string
Description of the group
All schema constraints and annotations
{
"description": "Description of the group",
"example": "Groups description",
"type": "string"
}id
Type:
number
Group ID
All schema constraints and annotations
{
"description": "Group ID",
"example": 10,
"type": "number"
}member_count
Type:
number
Member count of the group
All schema constraints and annotations
{
"description": "Member count of the group",
"example": 10,
"type": "number"
}name
Type:
string
Name of the group
All schema constraints and annotations
{
"description": "Name of the group",
"example": "mygroup",
"type": "string"
}role
Type:
string | null
Role assigned to the team. A core role (
owner, editor, or member)
or the name of a custom role (not the label or UUID).All schema constraints and annotations
{
"description": "Role assigned to the team. A core role (`owner`, `editor`, or `member`)\nor the name of a custom role (not the label or UUID).\n",
"type": [
"string",
"null"
]
}uuid
Type:
string
UUID for the group
All schema constraints and annotations
{
"description": "UUID for the group",
"type": "string"
}All schema constraints and annotations
{
"examples": [
{
"description": "Development team",
"id": 10,
"member_count": 1,
"name": "developers",
"role": "member",
"uuid": "e36eca69-4cc8-4f17-9845-ae8c2b832691"
}
],
"properties": {
"description": {
"description": "Description of the group",
"example": "Groups description",
"type": "string"
},
"id": {
"description": "Group ID",
"example": 10,
"type": "number"
},
"member_count": {
"description": "Member count of the group",
"example": 10,
"type": "number"
},
"name": {
"description": "Name of the group",
"example": "mygroup",
"type": "string"
},
"role": {
"description": "Role assigned to the team. A core role (`owner`, `editor`, or `member`)\nor the name of a custom role (not the label or UUID).\n",
"type": [
"string",
"null"
]
},
"uuid": {
"description": "UUID for the group",
"type": "string"
}
},
"type": "object"
}