Share feedback
Answers are generated based on the documentation.

Schema

repo_permissions

Type: object

admin · required

Type: boolean

Admin permission
All schema constraints and annotations
{
  "description": "Admin permission",
  "type": "boolean"
}
read · required

Type: boolean

Read permission
All schema constraints and annotations
{
  "description": "Read permission",
  "type": "boolean"
}
write · required

Type: boolean

Write permission
All schema constraints and annotations
{
  "description": "Write permission",
  "type": "boolean"
}
All schema constraints and annotations
{
  "properties": {
    "admin": {
      "description": "Admin permission",
      "type": "boolean"
    },
    "read": {
      "description": "Read permission",
      "type": "boolean"
    },
    "write": {
      "description": "Write permission",
      "type": "boolean"
    }
  },
  "required": [
    "read",
    "write",
    "admin"
  ],
  "type": "object"
}