Hugging Face · JSON Structure

Hugging Face Hub Model Summary Structure

Type: object Properties: 15

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

Properties

_id id modelId author sha lastModified private disabled gated pipeline_tag tags downloads likes library_name createdAt

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

JSON Structure

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