Hugging Face · Schema

SearchResponse

Properties

Name Type Description
features array
rows array
num_rows_total integer Total number of matching rows
num_rows_per_page integer
partial boolean
View JSON Schema on GitHub

JSON Schema

hugging-face-dataset-viewer-search-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SearchResponse",
  "type": "object",
  "properties": {
    "features": {
      "type": "array"
    },
    "rows": {
      "type": "array"
    },
    "num_rows_total": {
      "type": "integer",
      "description": "Total number of matching rows"
    },
    "num_rows_per_page": {
      "type": "integer"
    },
    "partial": {
      "type": "boolean"
    }
  }
}