Hugging Face · Schema
RowsResponse
Properties
| Name | Type | Description |
|---|---|---|
| features | array | Column definitions and types |
| rows | array | Row data |
| num_rows_total | integer | Total number of rows in the split |
| num_rows_per_page | integer | Number of rows per page |
| partial | boolean | Whether this is a partial result |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RowsResponse",
"type": "object",
"properties": {
"features": {
"type": "array",
"description": "Column definitions and types"
},
"rows": {
"type": "array",
"description": "Row data"
},
"num_rows_total": {
"type": "integer",
"description": "Total number of rows in the split"
},
"num_rows_per_page": {
"type": "integer",
"description": "Number of rows per page"
},
"partial": {
"type": "boolean",
"description": "Whether this is a partial result"
}
}
}