사용자
사용자 (user)
Docker Hub 사용자 계정 정보를 나타내는 스키마예요. 사용자 이름·이메일·전체 이름·회사·프로필 정보·계정 유형을 담아요.
출처: 문서
본문
사용자 객체의 주요 필드는 다음과 같아요.
company: 소속 회사 (예:Docker Inc)date_joined: 가입 시각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",
"type": "string"
},
"full_name": {
"example": "Jon Snow",
"type": "string"
},
"gravatar_email": {
"type": "string"
},
"gravatar_url": {
"type": "string"
},
"id": {
"description": "The UUID trimmed",
"example": "0ab70deb065a43fcacd55d48caa945d8",
"type": "string"
},
"location": {
"type": "string"
},
"profile_url": {
"type": "string"
},
"type": {
"enum": [
"User",
"Org"
],
"example": "User",
"type": "string"
},
"username": {
"example": "dockeruser",
"type": "string"
}
},
"type": "object"
}
더 알아보기
- 조직 멤버 (org_member): 이 사용자 스키마를 확장하는 조직 멤버 구조를 확인해요.
- 그룹 멤버 (group_member): 그룹 멤버로 확장된 형태를 살펴봐요.