그룹 멤버
그룹 멤버 (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"
}
더 알아보기
- 조직 멤버 (org_member): 조직 멤버의 유사 스키마를 확인해요.
- 그룹에 멤버 추가 작업: 멤버를 그룹에 추가하는 API를 살펴봐요.