저장소 목록 응답

저장소 목록 응답 (list_repositories_response)

Docker Hub 네임스페이스의 저장소 목록을 조회했을 때 돌려주는 응답 스키마예요. 페이지네이션 정보(page)에 실제 저장소 목록(results)을 더한 형태예요.

출처: 문서

본문

이 스키마는 page 스키마를 기반으로(allOf) results 필드를 더한 형태예요.

{
  "allOf": [
    {
      "$ref": "#/components/schemas/page"
    },
    {
      "properties": {
        "results": {
          "items": {
            "$ref": "#/components/schemas/repository_list_entry"
          },
          "type": "array"
        }
      },
      "type": "object"
    }
  ]
}
  • page가 제공하는 count·next·previous에 더해, results 배열에 repository_list_entry 항목들이 담겨요.

더 알아보기