{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DashboardCollaborator", "title": "DashboardCollaborator", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "dashboard_id": { "type": "integer", "readOnly": true }, "user": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true }, "level": { "$ref": "#/components/schemas/RestrictionLevelEnum" }, "added_at": { "type": "string", "format": "date-time", "readOnly": true }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true }, "user_uuid": { "type": "string", "format": "uuid", "writeOnly": true } }, "required": [ "added_at", "dashboard_id", "id", "level", "updated_at", "user", "user_uuid" ] }