일괄 초대
일괄 초대 (bulk_invite)
Docker Hub 조직 초대를 일괄 생성했을 때 돌려주는 응답 스키마예요. 초대 대상(invitee)별로 성공 여부와 초대 데이터를 함께 확인할 수 있어요.
출처: 문서
본문
이 스키마는 초대 대상 목록을 나타내는 배열로, 각 항목은 invitee·status·invite 필드를 가진 객체예요.
invitee: 초대 대상의 이메일 또는 Docker IDstatus: 초대 상태 또는 검증 오류invite: 성공적으로 초대됐을 때의 초대 데이터 (invite스키마 참조)
{
"description": "A list of invitees",
"items": {
"properties": {
"invite": {
"$ref": "#/components/schemas/invite",
"description": "Invite data if successfully invited"
},
"invitee": {
"description": "invitee email or Docker ID",
"type": "string"
},
"status": {
"description": "status of the invite or validation error",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
더 알아보기
- 초대 (invite):
invite필드의 구조를 확인해요. - 초대 일괄 생성 작업: 이 응답을 만드는 API 호출을 살펴봐요.