{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Create Group",
  "description": "Create a new group. Groups control which projects members can access.",
  "type": "object",
  "required": ["name"],
  "properties": {
    "name": {
      "type": "string",
      "title": "Group Name",
      "description": "A human-readable name for the group",
      "minLength": 3,
      "examples": ["Platform Team", "Backend Engineers"]
    },
    "description": {
      "type": "string",
      "title": "Description",
      "description": "What this group is for",
      "examples": ["Team responsible for platform infrastructure"]
    }
  }
}
