Hugging Face · Schema

SpaceInfo

View JSON Schema on GitHub

JSON Schema

hugging-face-spaceinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SpaceInfo",
  "title": "SpaceInfo",
  "allOf": [
    {
      "$ref": "#/components/schemas/SpaceSummary"
    },
    {
      "type": "object",
      "properties": {
        "siblings": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "rfilename": {
                "type": "string"
              },
              "size": {
                "type": "integer"
              }
            }
          }
        },
        "cardData": {
          "type": "object",
          "description": "Parsed Space card metadata"
        }
      }
    }
  ]
}