KnowledgeDocumentTabularSheetInspectionRead
An inspected worksheet with its columns, row count, and sample rows.
indexIndexrequired
Zero-based sheet index used by tabular ingestion configuration.
Possible values: >= 0
nameNamerequired
Worksheet name, or CSV for a CSV source.
row_countRow Countrequired
Number of non-empty data rows excluding the header row.
Possible values: >= 0
columns object[]
Columns detected from the header and any trailing data cells.
Array [
indexIndexrequired
Zero-based column index used by tabular ingestion configuration.
Possible values: >= 0
nameNamerequired
Header label shown to the user. Blank headers receive a generated label.
]
preview_rowsarray[]
A small sample of normalized data rows excluding the header.
KnowledgeDocumentTabularSheetInspectionRead
{
"index": 0,
"name": "string",
"row_count": 0,
"columns": [
{
"index": 0,
"name": "string"
}
],
"preview_rows": [
"string"
]
}