조직 멤버
조직 멤버 (org_member)
Docker Hub 조직에 속한 멤버 정보를 나타내는 스키마예요. 사용자 이름·이메일·전체 이름·역할·소속 그룹·프로필 정보를 담아요.
출처: 문서
본문
조직 멤버 객체의 주요 필드는 다음과 같아요.
date_joined: 조직에 합류한 시각email: 이메일 주소full_name: 전체 이름groups: 소속 그룹(팀) 이름 배열 (예:["owners"])id: UUID를 줄인 식별자is_guest: 게스트 여부role: 조직 내 역할 (예:Owner)type: 계정 유형 (User등)username: 사용자 이름 (예:dockeruser)
{
"properties": {
"date_joined": {
"example": "2021-01-05T21:06:53.506400Z",
"format": "date-time",
"type": "string"
},
"email": {
"example": "[email protected]",
"type": "string"
},
"full_name": {
"example": "Jon Snow",
"type": "string"
},
"groups": {
"example": [
"owners"
],
"items": {
"type": "string"
},
"type": "array"
},
"id": {
"example": "0ab70deb065a43fcacd55d48caa945d8",
"type": "string"
},
"is_guest": {
"example": false,
"type": "boolean"
},
"role": {
"example": "Owner",
"type": "string"
},
"type": {
"example": "User",
"type": "string"
},
"username": {
"example": "dockeruser",
"type": "string"
}
},
"type": "object"
}
더 알아보기
- 조직 멤버 페이징 응답 (org_member_paginated): 멤버 목록 응답 구조를 확인해요.
- 조직 멤버 역할 수정 작업: 멤버 역할을 바꾸는 API를 살펴봐요.