{ "operationId": "collectionsAddUser", "path": "/collections.add_user", "method": "POST", "summary": "Add a collection user", "tags": [ "Collections" ], "requestSchema": { "type": "object", "properties": { "id": { "type": "string", "description": "Identifier for the collection", "format": "uuid" }, "userId": { "type": "string", "description": "Identifier for the user to add to the collection", "format": "uuid" }, "permission": { "$ref": "#/components/schemas/Permission" } }, "required": [ "id", "userId" ] } }