{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProjectPermissions",
"title": "ProjectPermissions",
"additionalProperties": false,
"description": "Permissions which a user has on a project.",
"properties": {
"canEdit": {
"description": "Whether the logged user can edit the project.",
"readOnly": true,
"type": "boolean"
}
},
"type": "object"
}