조직 멤버 페이징 응답

조직 멤버 페이징 응답 (org_member_paginated)

Docker Hub 조직 멤버 목록을 페이지 단위로 조회했을 때 돌려주는 응답 스키마예요. 페이지네이션 정보와 함께 org_member 항목들의 배열을 담아요.

출처: 문서

본문

이 응답은 페이지네이션 필드와 함께 조직 멤버 목록을 담는 객체예요. 결과 배열의 각 항목은 org_member 스키마를 따르고, 페이지네이션으로 count·next·previous 같은 필드를 제공합니다.

  • results: org_member 항목들의 배열
  • count: 전체 멤버 수
  • next/previous: 다음·이전 페이지 링크 (없으면 null)
{
  "properties": {
    "count": {
      "example": 1,
      "type": "integer"
    },
    "next": {
      "example": null,
      "type": [
        "string",
        "null"
      ]
    },
    "previous": {
      "example": null,
      "type": [
        "string",
        "null"
      ]
    },
    "results": {
      "items": {
        "$ref": "#/components/schemas/org_member"
      },
      "type": "array"
    }
  },
  "type": "object"
}

더 알아보기