{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PermittedProjects",
"title": "PermittedProjects",
"additionalProperties": false,
"description": "A list of projects in which a user is granted permissions.",
"properties": {
"projects": {
"description": "A list of projects.",
"items": {
"$ref": "#/components/schemas/ProjectIdentifierBean"
},
"readOnly": true,
"type": "array"
}
},
"type": "object"
}