Hugging Face · JSON Structure

Hugging Face Hub Dataset Summary Structure

Type: object Properties: 13

DatasetSummary is a JSON Structure definition published by Hugging Face, describing 13 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

_id id author sha lastModified private gated disabled tags downloads likes createdAt description

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "DatasetSummary",
  "type": "object",
  "properties": {
    "_id": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "author": {
      "type": "string"
    },
    "sha": {
      "type": "string"
    },
    "lastModified": {
      "type": "string"
    },
    "private": {
      "type": "boolean"
    },
    "gated": {
      "type": "boolean"
    },
    "disabled": {
      "type": "boolean"
    },
    "tags": {
      "type": "array"
    },
    "downloads": {
      "type": "integer"
    },
    "likes": {
      "type": "integer"
    },
    "createdAt": {
      "type": "string"
    },
    "description": {
      "type": "string"
    }
  }
}