그룹 멤버

그룹 멤버 (group_member)

Docker Hub 조직 그룹(team)에 속한 멤버 정보를 나타내는 스키마예요. 사용자 이름·이메일·회사·프로필 정보·입단 시각 등을 담아요.

출처: 문서

본문

그룹 멤버 객체의 주요 필드는 다음과 같아요.

  • company: 소속 회사 (예: Docker Inc)
  • date_joined: 멤버가 그룹/조직에 합류한 시각
  • email: 이메일 주소
  • full_name: 전체 이름
  • id: UUID를 줄인 식별자
  • type: 계정 유형 (User 또는 Org)
  • username: 사용자 이름 (예: dockeruser)
  • 그 외 gravatar_email, gravatar_url, location, profile_url 등 프로필 정보
{
  "properties": {
    "company": {
      "example": "Docker Inc",
      "type": "string"
    },
    "date_joined": {
      "example": "2021-01-05T21:06:53.506400Z",
      "format": "date-time",
      "type": "string"
    },
    "email": {
      "example": "[email protected]",
      "type": "string"
    },
    "full_name": {
      "example": "John Snow",
      "type": "string"
    },
    "id": {
      "description": "The UUID trimmed",
      "example": "0ab70deb065a43fcacd55d48caa945d8",
      "type": "string"
    },
    "type": {
      "enum": [
        "User",
        "Org"
      ],
      "example": "User",
      "type": "string"
    },
    "username": {
      "example": "dockeruser",
      "type": "string"
    }
  },
  "type": "object"
}

더 알아보기