{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SessionGroupSummaryMinimal", "title": "SessionGroupSummaryMinimal", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "readOnly": true }, "title": { "type": "string", "readOnly": true, "description": "Title of the group session summary" }, "session_count": { "type": "integer", "readOnly": true }, "created_at": { "type": "string", "format": "date-time", "readOnly": true }, "created_by": { "allOf": [ { "$ref": "#/components/schemas/UserBasic" } ], "readOnly": true } }, "required": [ "created_at", "created_by", "id", "session_count", "title" ] }