Hugging Face · Schema
ParquetResponse
Properties
| Name | Type | Description |
|---|---|---|
| parquet_files | array | |
| partial | boolean | Whether only partial data was converted |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ParquetResponse",
"title": "ParquetResponse",
"type": "object",
"properties": {
"parquet_files": {
"type": "array",
"items": {
"type": "object",
"properties": {
"dataset": {
"type": "string",
"description": "Dataset ID"
},
"config": {
"type": "string",
"description": "Subset name"
},
"split": {
"type": "string",
"description": "Split name"
},
"url": {
"type": "string",
"format": "uri",
"description": "Direct download URL for the Parquet file"
},
"filename": {
"type": "string",
"description": "Parquet file name"
},
"size": {
"type": "integer",
"description": "File size in bytes"
}
}
},
"example": []
},
"partial": {
"type": "boolean",
"description": "Whether only partial data was converted",
"example": true
}
}
}