# repository_list_entry


[API catalog](/reference/api/) · [Docker Hub overview](/reference/api/hub/latest/) · [Product manual](https://docs.docker.com/docker-hub/) · [OpenAPI specification](/reference/api/hub/latest.yaml)

API version: 2-beta



Schema constraints and annotations:

```json
{
  "properties": {
    "affiliation": {
      "description": "User's affiliation with the repository (empty string if no affiliation)",
      "example": "",
      "type": "string"
    },
    "categories": {
      "description": "Categories associated with this repository",
      "example": [],
      "items": {
        "$ref": "#/components/schemas/category"
      },
      "type": "array"
    },
    "content_types": {
      "description": "Content types supported by this repository",
      "example": [
        "plugin"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "date_registered": {
      "description": "ISO 8601 timestamp of when the repository was created",
      "example": "2013-06-19T19:07:54Z",
      "format": "date-time",
      "type": "string"
    },
    "description": {
      "description": "Repository description",
      "example": "Hello World! (an example of minimal Dockerization)",
      "type": [
        "string",
        "null"
      ]
    },
    "is_private": {
      "description": "Whether the repository is private",
      "example": false,
      "type": "boolean"
    },
    "last_modified": {
      "description": "ISO 8601 timestamp of when the repository was last modified",
      "example": "2023-12-01T10:30:00Z",
      "format": "date-time",
      "type": [
        "string",
        "null"
      ]
    },
    "last_updated": {
      "description": "ISO 8601 timestamp of when the repository was last updated",
      "example": "2023-12-01T10:30:00Z",
      "format": "date-time",
      "type": [
        "string",
        "null"
      ]
    },
    "media_types": {
      "description": "Media types supported by this repository",
      "example": [
        "application/vnd.docker.plugin.v1+json"
      ],
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "name": {
      "description": "Name of the repository",
      "example": "hello-world",
      "type": "string"
    },
    "namespace": {
      "description": "Namespace (organization or username) that owns the repository",
      "example": "docker",
      "type": "string"
    },
    "pull_count": {
      "description": "Total number of pulls for this repository",
      "example": 50000000,
      "minimum": 0,
      "type": "integer"
    },
    "repository_type": {
      "description": "Type of repository",
      "enum": [
        "image",
        "plugin",
        null
      ],
      "example": "image",
      "type": [
        "string",
        "null"
      ]
    },
    "star_count": {
      "description": "Number of users who starred this repository",
      "example": 1234,
      "minimum": 0,
      "type": "integer"
    },
    "status": {
      "description": "Repository status code",
      "example": 1,
      "type": "integer"
    },
    "status_description": {
      "description": "Human-readable repository status",
      "enum": [
        "active",
        "inactive"
      ],
      "example": "active",
      "type": "string"
    },
    "storage_size": {
      "description": "Storage size in bytes used by this repository",
      "example": 232719127,
      "minimum": 0,
      "type": "integer"
    }
  },
  "type": "object"
}
```



