Share feedback
Answers are generated based on the documentation.

Schema

RepositoryGroup

Type: object

group_id

Type: integer

The ID of the group
All schema constraints and annotations
{
  "description": "The ID of the group",
  "example": 12345,
  "format": "int64",
  "type": "integer"
}
group_name

Type: string

The name of the group
All schema constraints and annotations
{
  "description": "The name of the group",
  "example": "developers",
  "type": "string"
}
permission

Type: string

The permission level granted to the group
All schema constraints and annotations
{
  "description": "The permission level granted to the group",
  "enum": [
    "read",
    "write",
    "admin"
  ],
  "example": "write",
  "type": "string"
}
All schema constraints and annotations
{
  "properties": {
    "group_id": {
      "description": "The ID of the group",
      "example": 12345,
      "format": "int64",
      "type": "integer"
    },
    "group_name": {
      "description": "The name of the group",
      "example": "developers",
      "type": "string"
    },
    "permission": {
      "description": "The permission level granted to the group",
      "enum": [
        "read",
        "write",
        "admin"
      ],
      "example": "write",
      "type": "string"
    }
  },
  "type": "object"
}